@mastra/react 0.0.0-remove-unused-model-providers-api-20251030210744 → 0.0.0-remove-ai-peer-dep-from-evals-20260105220639

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 CHANGED
@@ -1,19 +1,470 @@
1
1
  # @mastra/react-hooks
2
2
 
3
- ## 0.0.0-remove-unused-model-providers-api-20251030210744
3
+ ## 0.0.0-remove-ai-peer-dep-from-evals-20260105220639
4
4
 
5
- ### Major Changes
5
+ ### Minor Changes
6
+
7
+ - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
8
+
9
+ - Rename RuntimeContext to RequestContext ([#9511](https://github.com/mastra-ai/mastra/pull/9511))
10
+
11
+ - Unified observability schema with entity-based span identification ([#11132](https://github.com/mastra-ai/mastra/pull/11132))
12
+
13
+ ## What changed
14
+
15
+ Spans now use a unified identification model with `entityId`, `entityType`, and `entityName` instead of separate `agentId`, `toolId`, `workflowId` fields.
16
+
17
+ **Before:**
18
+
19
+ ```typescript
20
+ // Old span structure
21
+ span.agentId; // 'my-agent'
22
+ span.toolId; // undefined
23
+ span.workflowId; // undefined
24
+ ```
25
+
26
+ **After:**
27
+
28
+ ```typescript
29
+ // New span structure
30
+ span.entityType; // EntityType.AGENT
31
+ span.entityId; // 'my-agent'
32
+ span.entityName; // 'My Agent'
33
+ ```
34
+
35
+ ## New `listTraces()` API
36
+
37
+ Query traces with filtering, pagination, and sorting:
38
+
39
+ ```typescript
40
+ const { spans, pagination } = await storage.listTraces({
41
+ filters: {
42
+ entityType: EntityType.AGENT,
43
+ entityId: 'my-agent',
44
+ userId: 'user-123',
45
+ environment: 'production',
46
+ status: TraceStatus.SUCCESS,
47
+ startedAt: { start: new Date('2024-01-01'), end: new Date('2024-01-31') },
48
+ },
49
+ pagination: { page: 0, perPage: 50 },
50
+ orderBy: { field: 'startedAt', direction: 'DESC' },
51
+ });
52
+ ```
53
+
54
+ **Available filters:** date ranges (`startedAt`, `endedAt`), entity (`entityType`, `entityId`, `entityName`), identity (`userId`, `organizationId`), correlation IDs (`runId`, `sessionId`, `threadId`), deployment (`environment`, `source`, `serviceName`), `tags`, `metadata`, and `status`.
55
+
56
+ ## New retrieval methods
57
+ - `getSpan({ traceId, spanId })` - Get a single span
58
+ - `getRootSpan({ traceId })` - Get the root span of a trace
59
+ - `getTrace({ traceId })` - Get all spans for a trace
60
+
61
+ ## Backward compatibility
62
+
63
+ The legacy `getTraces()` method continues to work. When you pass `name: "agent run: my-agent"`, it automatically transforms to `entityId: "my-agent", entityType: AGENT`.
64
+
65
+ ## Migration
66
+
67
+ **Automatic:** SQL-based stores (PostgreSQL, LibSQL, MSSQL) automatically add new columns to existing `spans` tables on initialization. Existing data is preserved with new columns set to `NULL`.
68
+
69
+ **No action required:** Your existing code continues to work. Adopt the new fields and `listTraces()` API at your convenience.
70
+
71
+ - Renamed `MastraMessageV2` to `MastraDBMessage` ([#9255](https://github.com/mastra-ai/mastra/pull/9255))
72
+ Made the return format of all methods that return db messages consistent. It's always `{ messages: MastraDBMessage[] }` now, and messages can be converted after that using `@mastra/ai-sdk/ui`'s `toAISdkV4/5Messages()` function
73
+
74
+ - Fix "MessagePartRuntime is not available" error when chatting with agents in Studio playground by replacing deprecated `useMessagePart` hook with `useAssistantState` ([#11039](https://github.com/mastra-ai/mastra/pull/11039))
75
+
76
+ ### Patch Changes
77
+
78
+ - Remove redundant toolCalls from network agent finalResult ([#11189](https://github.com/mastra-ai/mastra/pull/11189))
79
+
80
+ The network agent's `finalResult` was storing `toolCalls` separately even though all tool call information is already present in the `messages` array (as `tool-call` and `tool-result` type messages). This caused significant token waste since the routing agent reads this data from memory on every iteration.
81
+
82
+ **Before:** `finalResult: { text, toolCalls, messages }`
83
+ **After:** `finalResult: { text, messages }`
84
+
85
+ +**Migration:** If you were accessing `finalResult.toolCalls`, retrieve tool calls from `finalResult.messages` by filtering for messages with `type: 'tool-call'`.
86
+
87
+ Updated `@mastra/react` to extract tool calls directly from the `messages` array instead of the removed `toolCalls` field when resolving initial messages from memory.
88
+
89
+ Fixes #11059
90
+
91
+ - Auto resume suspended tools if `autoResumeSuspendedTools: true` ([#11157](https://github.com/mastra-ai/mastra/pull/11157))
92
+
93
+ The flag can be added to `defaultAgentOptions` when creating the agent or to options in `agent.stream` or `agent.generate`
94
+
95
+ ```typescript
96
+ const agent = new Agent({
97
+ //...agent information,
98
+ defaultAgentOptions: {
99
+ autoResumeSuspendedTools: true,
100
+ },
101
+ });
102
+ ```
103
+
104
+ - Adjust the types to accept tracingOptions ([#10742](https://github.com/mastra-ai/mastra/pull/10742))
105
+
106
+ - Configurable resourceId in react useChat ([#10461](https://github.com/mastra-ai/mastra/pull/10461))
107
+
108
+ - Add tool call approval ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
109
+
110
+ - Fixes issues where thread and messages were not saved before suspension when tools require approval or call suspend() during execution. This caused conversation history to be lost if users refreshed during tool approval or suspension. ([#10369](https://github.com/mastra-ai/mastra/pull/10369))
111
+
112
+ **Backend changes (@mastra/core):**
113
+ - Add assistant messages to messageList immediately after LLM execution
114
+ - Flush messages synchronously before suspension to persist state
115
+ - Create thread if it doesn't exist before flushing
116
+ - Add metadata helpers to persist and remove tool approval state
117
+ - Pass saveQueueManager and memory context through workflow for immediate persistence
118
+
119
+ **Frontend changes (@mastra/react):**
120
+ - Extract runId from pending approvals to enable resumption after refresh
121
+ - Convert `pendingToolApprovals` (DB format) to `requireApprovalMetadata` (runtime format)
122
+ - Handle both `dynamic-tool` and `tool-{NAME}` part types for approval state
123
+ - Change runId from hardcoded `agentId` to unique `uuid()`
124
+
125
+ **UI changes (@mastra/playground-ui):**
126
+ - Handle tool calls awaiting approval in message initialization
127
+ - Convert approval metadata format when loading initial messages
128
+
129
+ Fixes #9745, #9906
130
+
131
+ - Fixed agent network not returning text response when routing agent handles requests without delegation. ([#11497](https://github.com/mastra-ai/mastra/pull/11497))
132
+
133
+ **What changed:**
134
+ - Agent networks now correctly stream text responses when the routing agent decides to handle a request itself instead of delegating to sub-agents, workflows, or tools
135
+ - Added fallback in transformers to ensure text is always returned even if core events are missing
136
+
137
+ **Why this matters:**
138
+ Previously, when using `toAISdkV5Stream` or `networkRoute()` outside of the Mastra Studio UI, no text content was returned when the routing agent handled requests directly. This fix ensures consistent behavior across all API routes.
139
+
140
+ Fixes #11219
141
+
142
+ - Fix multi modal in react sdk ([#9373](https://github.com/mastra-ai/mastra/pull/9373))
143
+
144
+ - Support new Workflow tripwire run status. Tripwires that are thrown from within a workflow will now bubble up and return a graceful state with information about tripwires. ([#10947](https://github.com/mastra-ai/mastra/pull/10947))
145
+
146
+ When a workflow contains an agent step that triggers a tripwire, the workflow returns with `status: 'tripwire'` and includes tripwire details:
147
+
148
+ ```typescript
149
+ const run = await workflow.createRun();
150
+ const result = await run.start({ inputData: { message: 'Hello' } });
151
+
152
+ if (result.status === 'tripwire') {
153
+ console.log('Workflow terminated by tripwire:', result.tripwire?.reason);
154
+ console.log('Processor ID:', result.tripwire?.processorId);
155
+ console.log('Retry requested:', result.tripwire?.retry);
156
+ }
157
+ ```
158
+
159
+ Adds new UI state for tripwire in agent chat and workflow UI.
160
+
161
+ This is distinct from `status: 'failed'` which indicates an unexpected error. A tripwire status means a processor intentionally stopped execution (e.g., for content moderation).
162
+
163
+ - - Add persistence for custom data chunks (`data-*` parts) emitted via `writer.custom()` in tools ([#10884](https://github.com/mastra-ai/mastra/pull/10884))
164
+ - Data chunks are now saved to message storage so they survive page refreshes
165
+ - Update `@assistant-ui/react` to v0.11.47 with native `DataMessagePart` support
166
+ - Convert `data-*` parts to `DataMessagePart` format (`{ type: 'data', name: string, data: T }`)
167
+ - Update related `@assistant-ui/*` packages for compatibility
168
+ - Updated dependencies [[`6edf340`](https://github.com/mastra-ai/mastra/commit/6edf3402f6a46ee8def2f42a2287785251fbffd6), [`bc72b52`](https://github.com/mastra-ai/mastra/commit/bc72b529ee4478fe89ecd85a8be47ce0127b82a0), [`c042bd0`](https://github.com/mastra-ai/mastra/commit/c042bd0b743e0e86199d0cb83344ca7690e34a9c), [`3852192`](https://github.com/mastra-ai/mastra/commit/3852192c81b2a4f1f883f17d80ce50e0c60dba55), [`fec5129`](https://github.com/mastra-ai/mastra/commit/fec5129de7fc64423ea03661a56cef31dc747a0d), [`9650cce`](https://github.com/mastra-ai/mastra/commit/9650cce52a1d917ff9114653398e2a0f5c3ba808), [`3443770`](https://github.com/mastra-ai/mastra/commit/3443770662df8eb24c9df3589b2792d78cfcb811), [`f0a07e0`](https://github.com/mastra-ai/mastra/commit/f0a07e0111b3307c5fabfa4094c5c2cfb734fbe6), [`aaa40e7`](https://github.com/mastra-ai/mastra/commit/aaa40e788628b319baa8e889407d11ad626547fa), [`695a621`](https://github.com/mastra-ai/mastra/commit/695a621528bdabeb87f83c2277cf2bb084c7f2b4), [`dd1c38d`](https://github.com/mastra-ai/mastra/commit/dd1c38d1b75f1b695c27b40d8d9d6ed00d5e0f6f), [`5948e6a`](https://github.com/mastra-ai/mastra/commit/5948e6a5146c83666ba3f294b2be576c82a513fb), [`ad7e8f1`](https://github.com/mastra-ai/mastra/commit/ad7e8f16ac843cbd16687ad47b66ba96bcffe111), [`dff01d8`](https://github.com/mastra-ai/mastra/commit/dff01d81ce1f4e4087cfac20fa868e6db138dd14), [`e1b7118`](https://github.com/mastra-ai/mastra/commit/e1b7118f42ca0a97247afc75e57dcd5fdf987752), [`441c7b6`](https://github.com/mastra-ai/mastra/commit/441c7b6665915cfa7fd625fded8c0f518530bf10), [`b7de533`](https://github.com/mastra-ai/mastra/commit/b7de53361667eb51fefd89fcaed924f3c57cee8d), [`1b85674`](https://github.com/mastra-ai/mastra/commit/1b85674123708d9b85834dccc9eae601a9d0891c), [`5a1ede1`](https://github.com/mastra-ai/mastra/commit/5a1ede1f7ab527b9ead11f7eee2f73e67aeca9e4), [`7051bf3`](https://github.com/mastra-ai/mastra/commit/7051bf38b3b122a069008f861f7bfc004a6d9f6e), [`1ee3411`](https://github.com/mastra-ai/mastra/commit/1ee34113192b11aa8bcdd8d9d5830ae13254b345), [`dbd9db0`](https://github.com/mastra-ai/mastra/commit/dbd9db0d5c2797a210b9098e7e3e613718e5442f), [`6a86fe5`](https://github.com/mastra-ai/mastra/commit/6a86fe56b8ff53ca2eb3ed87ffc0748749ebadce), [`898a972`](https://github.com/mastra-ai/mastra/commit/898a9727d286c2510d6b702dfd367e6aaf5c6b0f), [`0793497`](https://github.com/mastra-ai/mastra/commit/079349753620c40246ffd673e3f9d7d9820beff3), [`66741d1`](https://github.com/mastra-ai/mastra/commit/66741d1a99c4f42cf23a16109939e8348ac6852e), [`5df9cce`](https://github.com/mastra-ai/mastra/commit/5df9cce1a753438413f64c11eeef8f845745c2a8), [`f93d992`](https://github.com/mastra-ai/mastra/commit/f93d992a37d5431ab4a71246835d403ef7c4ce85), [`c576fc0`](https://github.com/mastra-ai/mastra/commit/c576fc0b100b2085afded91a37c97a0ea0ec09c7), [`9f4a683`](https://github.com/mastra-ai/mastra/commit/9f4a6833e88b52574665c028fd5508ad5c2f6004), [`595a3b8`](https://github.com/mastra-ai/mastra/commit/595a3b8727c901f44e333909c09843c711224440), [`ea0b8de`](https://github.com/mastra-ai/mastra/commit/ea0b8dec0d4bc86a72a7e75b2f56c6017c58786d), [`d90ea65`](https://github.com/mastra-ai/mastra/commit/d90ea6536f7aa51c6545a4e9215b55858e98e16d), [`261473a`](https://github.com/mastra-ai/mastra/commit/261473ac637e633064a22076671e2e02b002214d), [`eb09742`](https://github.com/mastra-ai/mastra/commit/eb09742197f66c4c38154c3beec78313e69760b2), [`e4d366a`](https://github.com/mastra-ai/mastra/commit/e4d366aeb500371dd4210d6aa8361a4c21d87034), [`486352b`](https://github.com/mastra-ai/mastra/commit/486352b66c746602b68a95839f830de14c7fb8c0), [`d171e55`](https://github.com/mastra-ai/mastra/commit/d171e559ead9f52ec728d424844c8f7b164c4510), [`632fdb8`](https://github.com/mastra-ai/mastra/commit/632fdb8b3cd9ff6f90399256d526db439fc1758b), [`a1bd7b8`](https://github.com/mastra-ai/mastra/commit/a1bd7b8571db16b94eb01588f451a74758c96d65), [`0633100`](https://github.com/mastra-ai/mastra/commit/0633100a911ad22f5256471bdf753da21c104742), [`354ad0b`](https://github.com/mastra-ai/mastra/commit/354ad0b7b1b8183ac567f236a884fc7ede6d7138), [`519d9e6`](https://github.com/mastra-ai/mastra/commit/519d9e6d31910457c54bdae8b7b7cb3a69f41831), [`844ea5d`](https://github.com/mastra-ai/mastra/commit/844ea5dc0c248961e7bf73629ae7dcff503e853c), [`5fe71bc`](https://github.com/mastra-ai/mastra/commit/5fe71bc925dfce597df69c89241f33b378028c63), [`dfe3f8c`](https://github.com/mastra-ai/mastra/commit/dfe3f8c7376ffe159236819e19ca522143c1f972), [`f0f8f12`](https://github.com/mastra-ai/mastra/commit/f0f8f125c308f2d0fd36942ef652fd852df7522f), [`e8dcd71`](https://github.com/mastra-ai/mastra/commit/e8dcd71fa5e473c8ba1d6dad99eef182d20a0491), [`e849603`](https://github.com/mastra-ai/mastra/commit/e849603a596269069f58a438b98449ea2770493d), [`63f2f18`](https://github.com/mastra-ai/mastra/commit/63f2f1863dffe3ad23221d0660ed4e4f2b81789d), [`c23200d`](https://github.com/mastra-ai/mastra/commit/c23200ddfd60830effb39329674ba4ca93be6aac), [`184f01d`](https://github.com/mastra-ai/mastra/commit/184f01d1f534ec0be9703d3996f2e088b4a560eb), [`363284b`](https://github.com/mastra-ai/mastra/commit/363284bb974e850f06f40f89a28c79d9f432d7e4), [`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc), [`58e3931`](https://github.com/mastra-ai/mastra/commit/58e3931af9baa5921688566210f00fb0c10479fa), [`439eaf7`](https://github.com/mastra-ai/mastra/commit/439eaf75447809b05e326666675a4dcbf9c334ce), [`b7959e6`](https://github.com/mastra-ai/mastra/commit/b7959e6e25a46b480f9ea2217c4c6c588c423791), [`a7ce182`](https://github.com/mastra-ai/mastra/commit/a7ce1822a8785ce45d62dd5c911af465e144f7d7), [`0bddc6d`](https://github.com/mastra-ai/mastra/commit/0bddc6d8dbd6f6008c0cba2e4960a2da75a55af1), [`21735a7`](https://github.com/mastra-ai/mastra/commit/21735a7ef306963554a69a89b44f06c3bcd85141), [`3bf6c5f`](https://github.com/mastra-ai/mastra/commit/3bf6c5f104c25226cd84e0c77f9dec15f2cac2db), [`a0c8c1b`](https://github.com/mastra-ai/mastra/commit/a0c8c1b87d4fee252aebda73e8637fbe01d761c9), [`6cbb549`](https://github.com/mastra-ai/mastra/commit/6cbb549475201a2fbf158f0fd7323f6495f46d08), [`c218bd3`](https://github.com/mastra-ai/mastra/commit/c218bd3759e32423735b04843a09404572631014), [`e1bb9c9`](https://github.com/mastra-ai/mastra/commit/e1bb9c94b4eb68b019ae275981be3feb769b5365), [`106c960`](https://github.com/mastra-ai/mastra/commit/106c960df5d110ec15ac8f45de8858597fb90ad5)]:
169
+ - @mastra/client-js@0.0.0-remove-ai-peer-dep-from-evals-20260105220639
170
+
171
+ ## 0.1.0-beta.19
172
+
173
+ ### Patch Changes
174
+
175
+ - Updated dependencies:
176
+ - @mastra/client-js@1.0.0-beta.19
177
+
178
+ ## 0.1.0-beta.18
179
+
180
+ ### Patch Changes
181
+
182
+ - Updated dependencies:
183
+ - @mastra/client-js@1.0.0-beta.18
184
+
185
+ ## 0.1.0-beta.17
186
+
187
+ ### Patch Changes
188
+
189
+ - Updated dependencies:
190
+ - @mastra/client-js@1.0.0-beta.17
191
+
192
+ ## 0.1.0-beta.16
193
+
194
+ ### Patch Changes
195
+
196
+ - Updated dependencies [[`6cbb549`](https://github.com/mastra-ai/mastra/commit/6cbb549475201a2fbf158f0fd7323f6495f46d08)]:
197
+ - @mastra/client-js@1.0.0-beta.16
198
+
199
+ ## 0.1.0-beta.15
200
+
201
+ ### Minor Changes
202
+
203
+ - Unified observability schema with entity-based span identification ([#11132](https://github.com/mastra-ai/mastra/pull/11132))
204
+
205
+ ## What changed
206
+
207
+ Spans now use a unified identification model with `entityId`, `entityType`, and `entityName` instead of separate `agentId`, `toolId`, `workflowId` fields.
208
+
209
+ **Before:**
210
+
211
+ ```typescript
212
+ // Old span structure
213
+ span.agentId; // 'my-agent'
214
+ span.toolId; // undefined
215
+ span.workflowId; // undefined
216
+ ```
217
+
218
+ **After:**
219
+
220
+ ```typescript
221
+ // New span structure
222
+ span.entityType; // EntityType.AGENT
223
+ span.entityId; // 'my-agent'
224
+ span.entityName; // 'My Agent'
225
+ ```
226
+
227
+ ## New `listTraces()` API
228
+
229
+ Query traces with filtering, pagination, and sorting:
230
+
231
+ ```typescript
232
+ const { spans, pagination } = await storage.listTraces({
233
+ filters: {
234
+ entityType: EntityType.AGENT,
235
+ entityId: 'my-agent',
236
+ userId: 'user-123',
237
+ environment: 'production',
238
+ status: TraceStatus.SUCCESS,
239
+ startedAt: { start: new Date('2024-01-01'), end: new Date('2024-01-31') },
240
+ },
241
+ pagination: { page: 0, perPage: 50 },
242
+ orderBy: { field: 'startedAt', direction: 'DESC' },
243
+ });
244
+ ```
245
+
246
+ **Available filters:** date ranges (`startedAt`, `endedAt`), entity (`entityType`, `entityId`, `entityName`), identity (`userId`, `organizationId`), correlation IDs (`runId`, `sessionId`, `threadId`), deployment (`environment`, `source`, `serviceName`), `tags`, `metadata`, and `status`.
247
+
248
+ ## New retrieval methods
249
+ - `getSpan({ traceId, spanId })` - Get a single span
250
+ - `getRootSpan({ traceId })` - Get the root span of a trace
251
+ - `getTrace({ traceId })` - Get all spans for a trace
252
+
253
+ ## Backward compatibility
254
+
255
+ The legacy `getTraces()` method continues to work. When you pass `name: "agent run: my-agent"`, it automatically transforms to `entityId: "my-agent", entityType: AGENT`.
256
+
257
+ ## Migration
258
+
259
+ **Automatic:** SQL-based stores (PostgreSQL, LibSQL, MSSQL) automatically add new columns to existing `spans` tables on initialization. Existing data is preserved with new columns set to `NULL`.
260
+
261
+ **No action required:** Your existing code continues to work. Adopt the new fields and `listTraces()` API at your convenience.
262
+
263
+ ### Patch Changes
264
+
265
+ - Updated dependencies [[`d90ea65`](https://github.com/mastra-ai/mastra/commit/d90ea6536f7aa51c6545a4e9215b55858e98e16d), [`d171e55`](https://github.com/mastra-ai/mastra/commit/d171e559ead9f52ec728d424844c8f7b164c4510), [`632fdb8`](https://github.com/mastra-ai/mastra/commit/632fdb8b3cd9ff6f90399256d526db439fc1758b), [`184f01d`](https://github.com/mastra-ai/mastra/commit/184f01d1f534ec0be9703d3996f2e088b4a560eb)]:
266
+ - @mastra/client-js@1.0.0-beta.15
267
+
268
+ ## 0.1.0-beta.14
269
+
270
+ ### Patch Changes
271
+
272
+ - Updated dependencies [[`66741d1`](https://github.com/mastra-ai/mastra/commit/66741d1a99c4f42cf23a16109939e8348ac6852e), [`a7ce182`](https://github.com/mastra-ai/mastra/commit/a7ce1822a8785ce45d62dd5c911af465e144f7d7)]:
273
+ - @mastra/client-js@1.0.0-beta.14
274
+
275
+ ## 0.1.0-beta.13
276
+
277
+ ### Patch Changes
278
+
279
+ - Updated dependencies:
280
+ - @mastra/client-js@1.0.0-beta.13
281
+
282
+ ## 0.1.0-beta.12
283
+
284
+ ### Patch Changes
285
+
286
+ - Remove redundant toolCalls from network agent finalResult ([#11189](https://github.com/mastra-ai/mastra/pull/11189))
287
+
288
+ The network agent's `finalResult` was storing `toolCalls` separately even though all tool call information is already present in the `messages` array (as `tool-call` and `tool-result` type messages). This caused significant token waste since the routing agent reads this data from memory on every iteration.
289
+
290
+ **Before:** `finalResult: { text, toolCalls, messages }`
291
+ **After:** `finalResult: { text, messages }`
292
+
293
+ +**Migration:** If you were accessing `finalResult.toolCalls`, retrieve tool calls from `finalResult.messages` by filtering for messages with `type: 'tool-call'`.
294
+
295
+ Updated `@mastra/react` to extract tool calls directly from the `messages` array instead of the removed `toolCalls` field when resolving initial messages from memory.
296
+
297
+ Fixes #11059
298
+
299
+ - Auto resume suspended tools if `autoResumeSuspendedTools: true` ([#11157](https://github.com/mastra-ai/mastra/pull/11157))
300
+
301
+ The flag can be added to `defaultAgentOptions` when creating the agent or to options in `agent.stream` or `agent.generate`
302
+
303
+ ```typescript
304
+ const agent = new Agent({
305
+ //...agent information,
306
+ defaultAgentOptions: {
307
+ autoResumeSuspendedTools: true,
308
+ },
309
+ });
310
+ ```
311
+
312
+ - Updated dependencies [[`9650cce`](https://github.com/mastra-ai/mastra/commit/9650cce52a1d917ff9114653398e2a0f5c3ba808), [`695a621`](https://github.com/mastra-ai/mastra/commit/695a621528bdabeb87f83c2277cf2bb084c7f2b4), [`1b85674`](https://github.com/mastra-ai/mastra/commit/1b85674123708d9b85834dccc9eae601a9d0891c), [`486352b`](https://github.com/mastra-ai/mastra/commit/486352b66c746602b68a95839f830de14c7fb8c0), [`439eaf7`](https://github.com/mastra-ai/mastra/commit/439eaf75447809b05e326666675a4dcbf9c334ce)]:
313
+ - @mastra/client-js@1.0.0-beta.12
314
+
315
+ ## 0.1.0-beta.11
316
+
317
+ ### Patch Changes
318
+
319
+ - Support new Workflow tripwire run status. Tripwires that are thrown from within a workflow will now bubble up and return a graceful state with information about tripwires. ([#10947](https://github.com/mastra-ai/mastra/pull/10947))
320
+
321
+ When a workflow contains an agent step that triggers a tripwire, the workflow returns with `status: 'tripwire'` and includes tripwire details:
322
+
323
+ ```typescript showLineNumbers copy
324
+ const run = await workflow.createRun();
325
+ const result = await run.start({ inputData: { message: 'Hello' } });
326
+
327
+ if (result.status === 'tripwire') {
328
+ console.log('Workflow terminated by tripwire:', result.tripwire?.reason);
329
+ console.log('Processor ID:', result.tripwire?.processorId);
330
+ console.log('Retry requested:', result.tripwire?.retry);
331
+ }
332
+ ```
333
+
334
+ Adds new UI state for tripwire in agent chat and workflow UI.
335
+
336
+ This is distinct from `status: 'failed'` which indicates an unexpected error. A tripwire status means a processor intentionally stopped execution (e.g., for content moderation).
337
+
338
+ - Updated dependencies [[`3bf6c5f`](https://github.com/mastra-ai/mastra/commit/3bf6c5f104c25226cd84e0c77f9dec15f2cac2db)]:
339
+ - @mastra/client-js@1.0.0-beta.11
340
+
341
+ ## 0.1.0-beta.10
342
+
343
+ ### Minor Changes
344
+
345
+ - Fix "MessagePartRuntime is not available" error when chatting with agents in Studio playground by replacing deprecated `useMessagePart` hook with `useAssistantState` ([#11039](https://github.com/mastra-ai/mastra/pull/11039))
346
+
347
+ ### Patch Changes
348
+
349
+ - fix: persist data-\* chunks from writer.custom() to memory storage ([#10884](https://github.com/mastra-ai/mastra/pull/10884))
350
+ - Add persistence for custom data chunks (`data-*` parts) emitted via `writer.custom()` in tools
351
+ - Data chunks are now saved to message storage so they survive page refreshes
352
+ - Update `@assistant-ui/react` to v0.11.47 with native `DataMessagePart` support
353
+ - Convert `data-*` parts to `DataMessagePart` format (`{ type: 'data', name: string, data: T }`)
354
+ - Update related `@assistant-ui/*` packages for compatibility
355
+
356
+ - Updated dependencies [[`261473a`](https://github.com/mastra-ai/mastra/commit/261473ac637e633064a22076671e2e02b002214d)]:
357
+ - @mastra/client-js@1.0.0-beta.10
358
+
359
+ ## 0.1.0-beta.9
360
+
361
+ ### Patch Changes
362
+
363
+ - Updated dependencies [[`5a1ede1`](https://github.com/mastra-ai/mastra/commit/5a1ede1f7ab527b9ead11f7eee2f73e67aeca9e4)]:
364
+ - @mastra/client-js@1.0.0-beta.9
365
+
366
+ ## 0.1.0-beta.8
367
+
368
+ ### Patch Changes
369
+
370
+ - Updated dependencies:
371
+ - @mastra/client-js@1.0.0-beta.8
372
+
373
+ ## 0.1.0-beta.7
374
+
375
+ ### Patch Changes
376
+
377
+ - Updated dependencies [[`5fe71bc`](https://github.com/mastra-ai/mastra/commit/5fe71bc925dfce597df69c89241f33b378028c63), [`21735a7`](https://github.com/mastra-ai/mastra/commit/21735a7ef306963554a69a89b44f06c3bcd85141)]:
378
+ - @mastra/client-js@1.0.0-beta.7
379
+
380
+ ## 0.1.0-beta.6
381
+
382
+ ### Patch Changes
383
+
384
+ - Adjust the types to accept tracingOptions ([#10742](https://github.com/mastra-ai/mastra/pull/10742))
385
+
386
+ - Updated dependencies [[`6edf340`](https://github.com/mastra-ai/mastra/commit/6edf3402f6a46ee8def2f42a2287785251fbffd6), [`ad7e8f1`](https://github.com/mastra-ai/mastra/commit/ad7e8f16ac843cbd16687ad47b66ba96bcffe111), [`e1b7118`](https://github.com/mastra-ai/mastra/commit/e1b7118f42ca0a97247afc75e57dcd5fdf987752), [`441c7b6`](https://github.com/mastra-ai/mastra/commit/441c7b6665915cfa7fd625fded8c0f518530bf10), [`e849603`](https://github.com/mastra-ai/mastra/commit/e849603a596269069f58a438b98449ea2770493d)]:
387
+ - @mastra/client-js@1.0.0-beta.6
388
+
389
+ ## 0.1.0-beta.5
390
+
391
+ ### Patch Changes
392
+
393
+ - Configurable resourceId in react useChat ([#10461](https://github.com/mastra-ai/mastra/pull/10461))
394
+
395
+ - fix(agent): persist messages before tool suspension ([#10369](https://github.com/mastra-ai/mastra/pull/10369))
396
+
397
+ Fixes issues where thread and messages were not saved before suspension when tools require approval or call suspend() during execution. This caused conversation history to be lost if users refreshed during tool approval or suspension.
398
+
399
+ **Backend changes (@mastra/core):**
400
+ - Add assistant messages to messageList immediately after LLM execution
401
+ - Flush messages synchronously before suspension to persist state
402
+ - Create thread if it doesn't exist before flushing
403
+ - Add metadata helpers to persist and remove tool approval state
404
+ - Pass saveQueueManager and memory context through workflow for immediate persistence
405
+
406
+ **Frontend changes (@mastra/react):**
407
+ - Extract runId from pending approvals to enable resumption after refresh
408
+ - Convert `pendingToolApprovals` (DB format) to `requireApprovalMetadata` (runtime format)
409
+ - Handle both `dynamic-tool` and `tool-{NAME}` part types for approval state
410
+ - Change runId from hardcoded `agentId` to unique `uuid()`
411
+
412
+ **UI changes (@mastra/playground-ui):**
413
+ - Handle tool calls awaiting approval in message initialization
414
+ - Convert approval metadata format when loading initial messages
415
+
416
+ Fixes #9745, #9906
417
+
418
+ - Updated dependencies [[`898a972`](https://github.com/mastra-ai/mastra/commit/898a9727d286c2510d6b702dfd367e6aaf5c6b0f)]:
419
+ - @mastra/client-js@1.0.0-beta.5
420
+
421
+ ## 0.1.0-beta.4
422
+
423
+ ### Patch Changes
424
+
425
+ - Updated dependencies [[`6a86fe5`](https://github.com/mastra-ai/mastra/commit/6a86fe56b8ff53ca2eb3ed87ffc0748749ebadce), [`595a3b8`](https://github.com/mastra-ai/mastra/commit/595a3b8727c901f44e333909c09843c711224440)]:
426
+ - @mastra/client-js@1.0.0-beta.4
427
+
428
+ ## 0.1.0-beta.3
429
+
430
+ ### Patch Changes
431
+
432
+ - Updated dependencies [[`e1bb9c9`](https://github.com/mastra-ai/mastra/commit/e1bb9c94b4eb68b019ae275981be3feb769b5365)]:
433
+ - @mastra/client-js@1.0.0-beta.3
434
+
435
+ ## 0.1.0-beta.2
436
+
437
+ ### Patch Changes
438
+
439
+ - Updated dependencies []:
440
+ - @mastra/client-js@1.0.0-beta.2
441
+
442
+ ## 0.1.0-beta.1
443
+
444
+ ### Patch Changes
445
+
446
+ - Updated dependencies [[`dbd9db0`](https://github.com/mastra-ai/mastra/commit/dbd9db0d5c2797a210b9098e7e3e613718e5442f)]:
447
+ - @mastra/client-js@1.0.0-beta.1
448
+
449
+ ## 0.1.0-beta.0
450
+
451
+ ### Minor Changes
452
+
453
+ - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
6
454
 
7
455
  - Rename RuntimeContext to RequestContext ([#9511](https://github.com/mastra-ai/mastra/pull/9511))
8
456
 
457
+ - Renamed `MastraMessageV2` to `MastraDBMessage` ([#9255](https://github.com/mastra-ai/mastra/pull/9255))
458
+ Made the return format of all methods that return db messages consistent. It's always `{ messages: MastraDBMessage[] }` now, and messages can be converted after that using `@mastra/ai-sdk/ui`'s `toAISdkV4/5Messages()` function
459
+
9
460
  ### Patch Changes
10
461
 
11
462
  - Add tool call approval ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
12
463
 
13
464
  - Fix multi modal in react sdk ([#9373](https://github.com/mastra-ai/mastra/pull/9373))
14
465
 
15
- - Updated dependencies [[`3852192`](https://github.com/mastra-ai/mastra/commit/3852192c81b2a4f1f883f17d80ce50e0c60dba55), [`3443770`](https://github.com/mastra-ai/mastra/commit/3443770662df8eb24c9df3589b2792d78cfcb811), [`5948e6a`](https://github.com/mastra-ai/mastra/commit/5948e6a5146c83666ba3f294b2be576c82a513fb), [`b7de533`](https://github.com/mastra-ai/mastra/commit/b7de53361667eb51fefd89fcaed924f3c57cee8d), [`7051bf3`](https://github.com/mastra-ai/mastra/commit/7051bf38b3b122a069008f861f7bfc004a6d9f6e), [`1ee3411`](https://github.com/mastra-ai/mastra/commit/1ee34113192b11aa8bcdd8d9d5830ae13254b345), [`5df9cce`](https://github.com/mastra-ai/mastra/commit/5df9cce1a753438413f64c11eeef8f845745c2a8), [`f93d992`](https://github.com/mastra-ai/mastra/commit/f93d992a37d5431ab4a71246835d403ef7c4ce85), [`c576fc0`](https://github.com/mastra-ai/mastra/commit/c576fc0b100b2085afded91a37c97a0ea0ec09c7), [`9f4a683`](https://github.com/mastra-ai/mastra/commit/9f4a6833e88b52574665c028fd5508ad5c2f6004), [`ea0b8de`](https://github.com/mastra-ai/mastra/commit/ea0b8dec0d4bc86a72a7e75b2f56c6017c58786d), [`844ea5d`](https://github.com/mastra-ai/mastra/commit/844ea5dc0c248961e7bf73629ae7dcff503e853c), [`9f908d7`](https://github.com/mastra-ai/mastra/commit/9f908d77037688e492e01e7f54bf558575834f90), [`f0f8f12`](https://github.com/mastra-ai/mastra/commit/f0f8f125c308f2d0fd36942ef652fd852df7522f), [`63f2f18`](https://github.com/mastra-ai/mastra/commit/63f2f1863dffe3ad23221d0660ed4e4f2b81789d), [`c23200d`](https://github.com/mastra-ai/mastra/commit/c23200ddfd60830effb39329674ba4ca93be6aac), [`363284b`](https://github.com/mastra-ai/mastra/commit/363284bb974e850f06f40f89a28c79d9f432d7e4), [`c218bd3`](https://github.com/mastra-ai/mastra/commit/c218bd3759e32423735b04843a09404572631014)]:
16
- - @mastra/client-js@0.0.0-remove-unused-model-providers-api-20251030210744
466
+ - Updated dependencies [[`3852192`](https://github.com/mastra-ai/mastra/commit/3852192c81b2a4f1f883f17d80ce50e0c60dba55), [`fec5129`](https://github.com/mastra-ai/mastra/commit/fec5129de7fc64423ea03661a56cef31dc747a0d), [`3443770`](https://github.com/mastra-ai/mastra/commit/3443770662df8eb24c9df3589b2792d78cfcb811), [`f0a07e0`](https://github.com/mastra-ai/mastra/commit/f0a07e0111b3307c5fabfa4094c5c2cfb734fbe6), [`aaa40e7`](https://github.com/mastra-ai/mastra/commit/aaa40e788628b319baa8e889407d11ad626547fa), [`dd1c38d`](https://github.com/mastra-ai/mastra/commit/dd1c38d1b75f1b695c27b40d8d9d6ed00d5e0f6f), [`5948e6a`](https://github.com/mastra-ai/mastra/commit/5948e6a5146c83666ba3f294b2be576c82a513fb), [`dff01d8`](https://github.com/mastra-ai/mastra/commit/dff01d81ce1f4e4087cfac20fa868e6db138dd14), [`b7de533`](https://github.com/mastra-ai/mastra/commit/b7de53361667eb51fefd89fcaed924f3c57cee8d), [`7051bf3`](https://github.com/mastra-ai/mastra/commit/7051bf38b3b122a069008f861f7bfc004a6d9f6e), [`1ee3411`](https://github.com/mastra-ai/mastra/commit/1ee34113192b11aa8bcdd8d9d5830ae13254b345), [`0793497`](https://github.com/mastra-ai/mastra/commit/079349753620c40246ffd673e3f9d7d9820beff3), [`5df9cce`](https://github.com/mastra-ai/mastra/commit/5df9cce1a753438413f64c11eeef8f845745c2a8), [`f93d992`](https://github.com/mastra-ai/mastra/commit/f93d992a37d5431ab4a71246835d403ef7c4ce85), [`c576fc0`](https://github.com/mastra-ai/mastra/commit/c576fc0b100b2085afded91a37c97a0ea0ec09c7), [`9f4a683`](https://github.com/mastra-ai/mastra/commit/9f4a6833e88b52574665c028fd5508ad5c2f6004), [`ea0b8de`](https://github.com/mastra-ai/mastra/commit/ea0b8dec0d4bc86a72a7e75b2f56c6017c58786d), [`eb09742`](https://github.com/mastra-ai/mastra/commit/eb09742197f66c4c38154c3beec78313e69760b2), [`a1bd7b8`](https://github.com/mastra-ai/mastra/commit/a1bd7b8571db16b94eb01588f451a74758c96d65), [`0633100`](https://github.com/mastra-ai/mastra/commit/0633100a911ad22f5256471bdf753da21c104742), [`354ad0b`](https://github.com/mastra-ai/mastra/commit/354ad0b7b1b8183ac567f236a884fc7ede6d7138), [`519d9e6`](https://github.com/mastra-ai/mastra/commit/519d9e6d31910457c54bdae8b7b7cb3a69f41831), [`844ea5d`](https://github.com/mastra-ai/mastra/commit/844ea5dc0c248961e7bf73629ae7dcff503e853c), [`dfe3f8c`](https://github.com/mastra-ai/mastra/commit/dfe3f8c7376ffe159236819e19ca522143c1f972), [`f0f8f12`](https://github.com/mastra-ai/mastra/commit/f0f8f125c308f2d0fd36942ef652fd852df7522f), [`e8dcd71`](https://github.com/mastra-ai/mastra/commit/e8dcd71fa5e473c8ba1d6dad99eef182d20a0491), [`63f2f18`](https://github.com/mastra-ai/mastra/commit/63f2f1863dffe3ad23221d0660ed4e4f2b81789d), [`c23200d`](https://github.com/mastra-ai/mastra/commit/c23200ddfd60830effb39329674ba4ca93be6aac), [`363284b`](https://github.com/mastra-ai/mastra/commit/363284bb974e850f06f40f89a28c79d9f432d7e4), [`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc), [`b7959e6`](https://github.com/mastra-ai/mastra/commit/b7959e6e25a46b480f9ea2217c4c6c588c423791), [`0bddc6d`](https://github.com/mastra-ai/mastra/commit/0bddc6d8dbd6f6008c0cba2e4960a2da75a55af1), [`a0c8c1b`](https://github.com/mastra-ai/mastra/commit/a0c8c1b87d4fee252aebda73e8637fbe01d761c9), [`c218bd3`](https://github.com/mastra-ai/mastra/commit/c218bd3759e32423735b04843a09404572631014)]:
467
+ - @mastra/client-js@1.0.0-beta.0
17
468
 
18
469
  ## 0.0.10
19
470