@mastra/client-js 0.0.0-extend-clickhouse-20250418135620 → 0.0.0-feat-support-ai-sdk-5-again-20250813225910

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.
Files changed (83) hide show
  1. package/.turbo/turbo-build.log +18 -0
  2. package/CHANGELOG.md +1483 -2
  3. package/LICENSE.md +11 -42
  4. package/README.md +2 -1
  5. package/dist/adapters/agui.d.ts +22 -0
  6. package/dist/adapters/agui.d.ts.map +1 -0
  7. package/dist/client.d.ts +270 -0
  8. package/dist/client.d.ts.map +1 -0
  9. package/dist/example.d.ts +2 -0
  10. package/dist/example.d.ts.map +1 -0
  11. package/dist/index.cjs +1812 -80
  12. package/dist/index.cjs.map +1 -0
  13. package/dist/index.d.ts +3 -585
  14. package/dist/index.d.ts.map +1 -0
  15. package/dist/index.js +1807 -79
  16. package/dist/index.js.map +1 -0
  17. package/dist/resources/a2a.d.ts +41 -0
  18. package/dist/resources/a2a.d.ts.map +1 -0
  19. package/dist/resources/agent.d.ts +123 -0
  20. package/dist/resources/agent.d.ts.map +1 -0
  21. package/dist/resources/base.d.ts +13 -0
  22. package/dist/resources/base.d.ts.map +1 -0
  23. package/dist/resources/index.d.ts +11 -0
  24. package/dist/resources/index.d.ts.map +1 -0
  25. package/dist/resources/legacy-workflow.d.ts +87 -0
  26. package/dist/resources/legacy-workflow.d.ts.map +1 -0
  27. package/dist/resources/mcp-tool.d.ts +27 -0
  28. package/dist/resources/mcp-tool.d.ts.map +1 -0
  29. package/dist/resources/memory-thread.d.ts +53 -0
  30. package/dist/resources/memory-thread.d.ts.map +1 -0
  31. package/dist/resources/network-memory-thread.d.ts +47 -0
  32. package/dist/resources/network-memory-thread.d.ts.map +1 -0
  33. package/dist/resources/network.d.ts +30 -0
  34. package/dist/resources/network.d.ts.map +1 -0
  35. package/dist/resources/tool.d.ts +23 -0
  36. package/dist/resources/tool.d.ts.map +1 -0
  37. package/dist/resources/vNextNetwork.d.ts +42 -0
  38. package/dist/resources/vNextNetwork.d.ts.map +1 -0
  39. package/dist/resources/vector.d.ts +48 -0
  40. package/dist/resources/vector.d.ts.map +1 -0
  41. package/dist/resources/workflow.d.ts +154 -0
  42. package/dist/resources/workflow.d.ts.map +1 -0
  43. package/dist/types.d.ts +427 -0
  44. package/dist/types.d.ts.map +1 -0
  45. package/dist/utils/index.d.ts +3 -0
  46. package/dist/utils/index.d.ts.map +1 -0
  47. package/dist/utils/process-client-tools.d.ts +3 -0
  48. package/dist/utils/process-client-tools.d.ts.map +1 -0
  49. package/dist/utils/zod-to-json-schema.d.ts +105 -0
  50. package/dist/utils/zod-to-json-schema.d.ts.map +1 -0
  51. package/integration-tests/agui-adapter.test.ts +122 -0
  52. package/integration-tests/package.json +17 -0
  53. package/integration-tests/src/mastra/index.ts +38 -0
  54. package/integration-tests/vitest.config.ts +9 -0
  55. package/package.json +33 -18
  56. package/src/adapters/agui.test.ts +322 -0
  57. package/src/adapters/agui.ts +263 -0
  58. package/src/client.ts +422 -14
  59. package/src/example.ts +59 -29
  60. package/src/index.test.ts +526 -10
  61. package/src/resources/a2a.ts +98 -0
  62. package/src/resources/agent.ts +637 -49
  63. package/src/resources/base.ts +9 -2
  64. package/src/resources/index.ts +4 -1
  65. package/src/resources/legacy-workflow.ts +242 -0
  66. package/src/resources/mcp-tool.ts +48 -0
  67. package/src/resources/memory-thread.test.ts +285 -0
  68. package/src/resources/memory-thread.ts +45 -5
  69. package/src/resources/network-memory-thread.test.ts +269 -0
  70. package/src/resources/network-memory-thread.ts +81 -0
  71. package/src/resources/network.ts +11 -17
  72. package/src/resources/tool.ts +16 -3
  73. package/src/resources/vNextNetwork.ts +194 -0
  74. package/src/resources/workflow.ts +289 -94
  75. package/src/types.ts +306 -24
  76. package/src/utils/index.ts +11 -0
  77. package/src/utils/process-client-tools.ts +32 -0
  78. package/src/utils/zod-to-json-schema.ts +10 -0
  79. package/src/v2-messages.test.ts +180 -0
  80. package/tsconfig.build.json +9 -0
  81. package/tsconfig.json +1 -1
  82. package/tsup.config.ts +17 -0
  83. package/dist/index.d.cts +0 -585
package/CHANGELOG.md CHANGED
@@ -1,17 +1,1498 @@
1
1
  # @mastra/client-js
2
2
 
3
- ## 0.0.0-extend-clickhouse-20250418135620
3
+ ## 0.0.0-feat-support-ai-sdk-5-again-20250813225910
4
+
5
+ ### Minor Changes
6
+
7
+ - 66858d4: AI SDK v5 beta
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [66858d4]
12
+ - Updated dependencies [c30bca8]
13
+ - @mastra/core@0.0.0-feat-support-ai-sdk-5-again-20250813225910
14
+
15
+ ## 0.10.22-alpha.0
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [c30bca8]
20
+ - @mastra/core@0.13.3-alpha.0
21
+
22
+ ## 0.10.21
23
+
24
+ ### Patch Changes
25
+
26
+ - a239d41: Updated A2A syntax to v0.3.0
27
+ - 96169cc: Create handler that returns providers user has keys for in their env
28
+ - ce04175: Add update agent model handler
29
+ - Updated dependencies [d5330bf]
30
+ - Updated dependencies [2e74797]
31
+ - Updated dependencies [8388649]
32
+ - Updated dependencies [a239d41]
33
+ - Updated dependencies [dd94a26]
34
+ - Updated dependencies [3ba6772]
35
+ - Updated dependencies [b5cf2a3]
36
+ - Updated dependencies [2fff911]
37
+ - Updated dependencies [b32c50d]
38
+ - Updated dependencies [63449d0]
39
+ - Updated dependencies [121a3f8]
40
+ - Updated dependencies [ec510e7]
41
+ - @mastra/core@0.13.2
42
+
43
+ ## 0.10.21-alpha.3
44
+
45
+ ### Patch Changes
46
+
47
+ - Updated dependencies [b5cf2a3]
48
+ - @mastra/core@0.13.2-alpha.3
49
+
50
+ ## 0.10.21-alpha.2
51
+
52
+ ### Patch Changes
53
+
54
+ - a239d41: Updated A2A syntax to v0.3.0
55
+ - 96169cc: Create handler that returns providers user has keys for in their env
56
+ - ce04175: Add update agent model handler
57
+ - Updated dependencies [d5330bf]
58
+ - Updated dependencies [a239d41]
59
+ - Updated dependencies [b32c50d]
60
+ - Updated dependencies [121a3f8]
61
+ - Updated dependencies [ec510e7]
62
+ - @mastra/core@0.13.2-alpha.2
63
+
64
+ ## 0.10.21-alpha.1
65
+
66
+ ### Patch Changes
67
+
68
+ - Updated dependencies [2e74797]
69
+ - Updated dependencies [63449d0]
70
+ - @mastra/core@0.13.2-alpha.1
71
+
72
+ ## 0.10.21-alpha.0
73
+
74
+ ### Patch Changes
75
+
76
+ - Updated dependencies [8388649]
77
+ - Updated dependencies [dd94a26]
78
+ - Updated dependencies [3ba6772]
79
+ - Updated dependencies [2fff911]
80
+ - @mastra/core@0.13.2-alpha.0
81
+
82
+ ## 0.10.20
83
+
84
+ ### Patch Changes
85
+
86
+ - Updated dependencies [cd0042e]
87
+ - @mastra/core@0.13.1
88
+
89
+ ## 0.10.20-alpha.0
90
+
91
+ ### Patch Changes
92
+
93
+ - Updated dependencies [cd0042e]
94
+ - @mastra/core@0.13.1-alpha.0
95
+
96
+ ## 0.10.19
97
+
98
+ ### Patch Changes
99
+
100
+ - 42dfc48: Fix tool messages structure in agui adapter
101
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
102
+ - Updated dependencies [cb36de0]
103
+ - Updated dependencies [d0496e6]
104
+ - Updated dependencies [a82b851]
105
+ - Updated dependencies [ea0c5f2]
106
+ - Updated dependencies [41a0a0e]
107
+ - Updated dependencies [2871020]
108
+ - Updated dependencies [94f4812]
109
+ - Updated dependencies [e202b82]
110
+ - Updated dependencies [e00f6a0]
111
+ - Updated dependencies [4a406ec]
112
+ - Updated dependencies [b0e43c1]
113
+ - Updated dependencies [5d377e5]
114
+ - Updated dependencies [1fb812e]
115
+ - Updated dependencies [35c5798]
116
+ - @mastra/core@0.13.0
117
+
118
+ ## 0.10.19-alpha.3
119
+
120
+ ### Patch Changes
121
+
122
+ - Updated dependencies [d0496e6]
123
+ - @mastra/core@0.13.0-alpha.3
124
+
125
+ ## 0.10.19-alpha.2
126
+
127
+ ### Patch Changes
128
+
129
+ - 42dfc48: Fix tool messages structure in agui adapter
130
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
131
+ - Updated dependencies [cb36de0]
132
+ - Updated dependencies [a82b851]
133
+ - Updated dependencies [41a0a0e]
134
+ - Updated dependencies [2871020]
135
+ - Updated dependencies [4a406ec]
136
+ - Updated dependencies [5d377e5]
137
+ - @mastra/core@0.13.0-alpha.2
138
+
139
+ ## 0.10.19-alpha.1
140
+
141
+ ### Patch Changes
142
+
143
+ - Updated dependencies [ea0c5f2]
144
+ - Updated dependencies [b0e43c1]
145
+ - Updated dependencies [1fb812e]
146
+ - Updated dependencies [35c5798]
147
+ - @mastra/core@0.13.0-alpha.1
148
+
149
+ ## 0.10.19-alpha.0
150
+
151
+ ### Patch Changes
152
+
153
+ - Updated dependencies [94f4812]
154
+ - Updated dependencies [e202b82]
155
+ - Updated dependencies [e00f6a0]
156
+ - @mastra/core@0.12.2-alpha.0
157
+
158
+ ## 0.10.18
159
+
160
+ ### Patch Changes
161
+
162
+ - 6690a16: dependencies updates:
163
+ - Updated dependency [`@ag-ui/client@^0.0.35` ↗︎](https://www.npmjs.com/package/@ag-ui/client/v/0.0.35) (from `^0.0.27`, in `dependencies`)
164
+ - Updated dependencies [33dcb07]
165
+ - Updated dependencies [d0d9500]
166
+ - Updated dependencies [d30b1a0]
167
+ - Updated dependencies [bff87f7]
168
+ - Updated dependencies [b4a8df0]
169
+ - @mastra/core@0.12.1
170
+
171
+ ## 0.10.18-alpha.1
172
+
173
+ ### Patch Changes
174
+
175
+ - Updated dependencies [d0d9500]
176
+ - @mastra/core@0.12.1-alpha.1
177
+
178
+ ## 0.10.18-alpha.0
179
+
180
+ ### Patch Changes
181
+
182
+ - 6690a16: dependencies updates:
183
+ - Updated dependency [`@ag-ui/client@^0.0.35` ↗︎](https://www.npmjs.com/package/@ag-ui/client/v/0.0.35) (from `^0.0.27`, in `dependencies`)
184
+ - Updated dependencies [33dcb07]
185
+ - Updated dependencies [d30b1a0]
186
+ - Updated dependencies [bff87f7]
187
+ - Updated dependencies [b4a8df0]
188
+ - @mastra/core@0.12.1-alpha.0
189
+
190
+ ## 0.10.17
191
+
192
+ ### Patch Changes
193
+
194
+ - aa2715b: process stream response error handling
195
+ - 6bd354c: Should not send content type if body instance of FormData
196
+ - cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
197
+ - b641ba3: fix: save score params
198
+ - 9802f42: Added types and tests to ensure client-js and hono endpoints can save memory messages where the input is either a v1 or v2 mastra message
199
+ - 1ac8f6b: deduplicate message
200
+ - b8efbb9: feat: add flexible deleteMessages method to memory API
201
+ - Added `memory.deleteMessages(input)` method that accepts multiple input types:
202
+ - Single message ID as string: `deleteMessages('msg-123')`
203
+ - Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
204
+ - Message object with id property: `deleteMessages({ id: 'msg-123' })`
205
+ - Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
206
+ - Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
207
+ - Added REST API endpoint: `POST /api/memory/messages/delete`
208
+ - Updated client SDK: `thread.deleteMessages()` accepts all input types
209
+ - Updates thread timestamps when messages are deleted
210
+ - Added comprehensive test coverage and documentation
211
+
212
+ - Updated dependencies [510e2c8]
213
+ - Updated dependencies [2f72fb2]
214
+ - Updated dependencies [27cc97a]
215
+ - Updated dependencies [3f89307]
216
+ - Updated dependencies [9eda7d4]
217
+ - Updated dependencies [9d49408]
218
+ - Updated dependencies [41daa63]
219
+ - Updated dependencies [ad0a58b]
220
+ - Updated dependencies [254a36b]
221
+ - Updated dependencies [2ecf658]
222
+ - Updated dependencies [7a7754f]
223
+ - Updated dependencies [fc92d80]
224
+ - Updated dependencies [e0f73c6]
225
+ - Updated dependencies [0b89602]
226
+ - Updated dependencies [4d37822]
227
+ - Updated dependencies [23a6a7c]
228
+ - Updated dependencies [cda801d]
229
+ - Updated dependencies [a77c823]
230
+ - Updated dependencies [ff9c125]
231
+ - Updated dependencies [09bca64]
232
+ - Updated dependencies [b8efbb9]
233
+ - Updated dependencies [71466e7]
234
+ - Updated dependencies [0c99fbe]
235
+ - @mastra/core@0.12.0
236
+
237
+ ## 0.10.17-alpha.5
238
+
239
+ ### Patch Changes
240
+
241
+ - @mastra/core@0.12.0-alpha.5
242
+
243
+ ## 0.10.17-alpha.4
244
+
245
+ ### Patch Changes
246
+
247
+ - Updated dependencies [ad0a58b]
248
+ - @mastra/core@0.12.0-alpha.4
249
+
250
+ ## 0.10.17-alpha.3
251
+
252
+ ### Patch Changes
253
+
254
+ - 9802f42: Added types and tests to ensure client-js and hono endpoints can save memory messages where the input is either a v1 or v2 mastra message
255
+ - 1ac8f6b: deduplicate message
256
+ - @mastra/core@0.12.0-alpha.3
257
+
258
+ ## 0.10.17-alpha.2
259
+
260
+ ### Patch Changes
261
+
262
+ - aa2715b: process stream response error handling
263
+ - b8efbb9: feat: add flexible deleteMessages method to memory API
264
+ - Added `memory.deleteMessages(input)` method that accepts multiple input types:
265
+ - Single message ID as string: `deleteMessages('msg-123')`
266
+ - Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
267
+ - Message object with id property: `deleteMessages({ id: 'msg-123' })`
268
+ - Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
269
+ - Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
270
+ - Added REST API endpoint: `POST /api/memory/messages/delete`
271
+ - Updated client SDK: `thread.deleteMessages()` accepts all input types
272
+ - Updates thread timestamps when messages are deleted
273
+ - Added comprehensive test coverage and documentation
274
+
275
+ - Updated dependencies [27cc97a]
276
+ - Updated dependencies [41daa63]
277
+ - Updated dependencies [254a36b]
278
+ - Updated dependencies [0b89602]
279
+ - Updated dependencies [4d37822]
280
+ - Updated dependencies [ff9c125]
281
+ - Updated dependencies [b8efbb9]
282
+ - Updated dependencies [71466e7]
283
+ - Updated dependencies [0c99fbe]
284
+ - @mastra/core@0.12.0-alpha.2
285
+
286
+ ## 0.10.17-alpha.1
287
+
288
+ ### Patch Changes
289
+
290
+ - cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
291
+ - Updated dependencies [e0f73c6]
292
+ - Updated dependencies [cda801d]
293
+ - Updated dependencies [a77c823]
294
+ - @mastra/core@0.12.0-alpha.1
295
+
296
+ ## 0.10.17-alpha.0
297
+
298
+ ### Patch Changes
299
+
300
+ - 6bd354c: Should not send content type if body instance of FormData
301
+ - b641ba3: fix: save score params
302
+ - Updated dependencies [510e2c8]
303
+ - Updated dependencies [2f72fb2]
304
+ - Updated dependencies [3f89307]
305
+ - Updated dependencies [9eda7d4]
306
+ - Updated dependencies [9d49408]
307
+ - Updated dependencies [2ecf658]
308
+ - Updated dependencies [7a7754f]
309
+ - Updated dependencies [fc92d80]
310
+ - Updated dependencies [23a6a7c]
311
+ - Updated dependencies [09bca64]
312
+ - @mastra/core@0.12.0-alpha.0
313
+
314
+ ## 0.10.16
315
+
316
+ ### Patch Changes
317
+
318
+ - @mastra/core@0.11.1
319
+
320
+ ## 0.10.15
321
+
322
+ ### Patch Changes
323
+
324
+ - 4832752: Do not set content-type header when making POST/PUT requests without a body
325
+ - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
326
+ - 2affc57: Fix output type of network loop
327
+ - 032cb66: ClientJS
328
+ - 7827943: Handle streaming large data
329
+ - 65e3395: Add Scores playground-ui and add scorer hooks
330
+ - 80c2b06: Fix agent chat stop button to cancel stream/generate reqs in the playground
331
+ - 6f6e651: Alias createRun -> createRunAsync to match Mastra Workflow class
332
+ - Updated dependencies [f248d53]
333
+ - Updated dependencies [2affc57]
334
+ - Updated dependencies [66e13e3]
335
+ - Updated dependencies [edd9482]
336
+ - Updated dependencies [18344d7]
337
+ - Updated dependencies [9d372c2]
338
+ - Updated dependencies [40c2525]
339
+ - Updated dependencies [e473f27]
340
+ - Updated dependencies [032cb66]
341
+ - Updated dependencies [703ac71]
342
+ - Updated dependencies [a723d69]
343
+ - Updated dependencies [7827943]
344
+ - Updated dependencies [5889a31]
345
+ - Updated dependencies [bf1e7e7]
346
+ - Updated dependencies [65e3395]
347
+ - Updated dependencies [4933192]
348
+ - Updated dependencies [d1c77a4]
349
+ - Updated dependencies [bea9dd1]
350
+ - Updated dependencies [dcd4802]
351
+ - Updated dependencies [cbddd18]
352
+ - Updated dependencies [7ba91fa]
353
+ - @mastra/core@0.11.0
354
+
355
+ ## 0.10.15-alpha.3
356
+
357
+ ### Patch Changes
358
+
359
+ - @mastra/core@0.11.0-alpha.3
360
+
361
+ ## 0.10.15-alpha.2
362
+
363
+ ### Patch Changes
364
+
365
+ - 4832752: Do not set content-type header when making POST/PUT requests without a body
366
+ - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
367
+ - 2affc57: Fix output type of network loop
368
+ - 032cb66: ClientJS
369
+ - 65e3395: Add Scores playground-ui and add scorer hooks
370
+ - 80c2b06: Fix agent chat stop button to cancel stream/generate reqs in the playground
371
+ - 6f6e651: Alias createRun -> createRunAsync to match Mastra Workflow class
372
+ - Updated dependencies [f248d53]
373
+ - Updated dependencies [2affc57]
374
+ - Updated dependencies [66e13e3]
375
+ - Updated dependencies [edd9482]
376
+ - Updated dependencies [18344d7]
377
+ - Updated dependencies [9d372c2]
378
+ - Updated dependencies [40c2525]
379
+ - Updated dependencies [e473f27]
380
+ - Updated dependencies [032cb66]
381
+ - Updated dependencies [703ac71]
382
+ - Updated dependencies [a723d69]
383
+ - Updated dependencies [5889a31]
384
+ - Updated dependencies [65e3395]
385
+ - Updated dependencies [4933192]
386
+ - Updated dependencies [d1c77a4]
387
+ - Updated dependencies [bea9dd1]
388
+ - Updated dependencies [dcd4802]
389
+ - Updated dependencies [7ba91fa]
390
+ - @mastra/core@0.11.0-alpha.2
391
+
392
+ ## 0.10.15-alpha.1
393
+
394
+ ### Patch Changes
395
+
396
+ - @mastra/core@0.11.0-alpha.1
397
+
398
+ ## 0.10.15-alpha.0
399
+
400
+ ### Patch Changes
401
+
402
+ - 7827943: Handle streaming large data
403
+ - Updated dependencies [7827943]
404
+ - Updated dependencies [bf1e7e7]
405
+ - Updated dependencies [cbddd18]
406
+ - @mastra/core@0.11.0-alpha.0
407
+
408
+ ## 0.10.14
409
+
410
+ ### Patch Changes
411
+
412
+ - 31f9f6b: Replace crypto randomUUID in client SDK"
413
+ - 1aa60b1: Pipe runtimeContext to vNext network agent stream and generate steps, wire up runtimeContext for vNext Networks in cliet SDK & playground
414
+ - 626b0f4: [Cloud-126] Working Memory Playground - Added working memory to playground to allow users to view/edit working memory
415
+ - Updated dependencies [0b56518]
416
+ - Updated dependencies [db5cc15]
417
+ - Updated dependencies [2ba5b76]
418
+ - Updated dependencies [5237998]
419
+ - Updated dependencies [c3a30de]
420
+ - Updated dependencies [37c1acd]
421
+ - Updated dependencies [1aa60b1]
422
+ - Updated dependencies [89ec9d4]
423
+ - Updated dependencies [cf3a184]
424
+ - Updated dependencies [d6bfd60]
425
+ - Updated dependencies [626b0f4]
426
+ - Updated dependencies [c22a91f]
427
+ - Updated dependencies [f7403ab]
428
+ - Updated dependencies [6c89d7f]
429
+ - @mastra/core@0.10.15
430
+
431
+ ## 0.10.14-alpha.1
432
+
433
+ ### Patch Changes
434
+
435
+ - Updated dependencies [0b56518]
436
+ - Updated dependencies [2ba5b76]
437
+ - Updated dependencies [c3a30de]
438
+ - Updated dependencies [cf3a184]
439
+ - Updated dependencies [d6bfd60]
440
+ - @mastra/core@0.10.15-alpha.1
441
+
442
+ ## 0.10.14-alpha.0
443
+
444
+ ### Patch Changes
445
+
446
+ - 31f9f6b: Replace crypto randomUUID in client SDK"
447
+ - 1aa60b1: Pipe runtimeContext to vNext network agent stream and generate steps, wire up runtimeContext for vNext Networks in cliet SDK & playground
448
+ - 626b0f4: [Cloud-126] Working Memory Playground - Added working memory to playground to allow users to view/edit working memory
449
+ - Updated dependencies [db5cc15]
450
+ - Updated dependencies [5237998]
451
+ - Updated dependencies [37c1acd]
452
+ - Updated dependencies [1aa60b1]
453
+ - Updated dependencies [89ec9d4]
454
+ - Updated dependencies [626b0f4]
455
+ - Updated dependencies [c22a91f]
456
+ - Updated dependencies [f7403ab]
457
+ - Updated dependencies [6c89d7f]
458
+ - @mastra/core@0.10.15-alpha.0
459
+
460
+ ## 0.10.13
461
+
462
+ ### Patch Changes
463
+
464
+ - @mastra/core@0.10.14
465
+
466
+ ## 0.10.11
467
+
468
+ ### Patch Changes
469
+
470
+ - 9468be4: Fix error on agent generate while using antropic
471
+ - 44731a4: Client SDK - Expose processTextStream util for agent textstream with structured output
472
+ - Updated dependencies [b4a9811]
473
+ - Updated dependencies [4d5583d]
474
+ - @mastra/core@0.10.12
475
+
476
+ ## 0.10.11-alpha.1
477
+
478
+ ### Patch Changes
479
+
480
+ - Updated dependencies [4d5583d]
481
+ - @mastra/core@0.10.12-alpha.1
482
+
483
+ ## 0.10.11-alpha.0
484
+
485
+ ### Patch Changes
486
+
487
+ - 9468be4: Fix error on agent generate while using antropic
488
+ - 44731a4: Client SDK - Expose processTextStream util for agent textstream with structured output
489
+ - Updated dependencies [b4a9811]
490
+ - @mastra/core@0.10.12-alpha.0
491
+
492
+ ## 0.10.10
493
+
494
+ ### Patch Changes
495
+
496
+ - 18da791: Add abortSignal to client SDK options
497
+ - Updated dependencies [2873c7f]
498
+ - Updated dependencies [1c1c6a1]
499
+ - Updated dependencies [f8ce2cc]
500
+ - Updated dependencies [8c846b6]
501
+ - Updated dependencies [c7bbf1e]
502
+ - Updated dependencies [8722d53]
503
+ - Updated dependencies [565cc0c]
504
+ - Updated dependencies [b790fd1]
505
+ - Updated dependencies [132027f]
506
+ - Updated dependencies [0c85311]
507
+ - Updated dependencies [d7ed04d]
508
+ - Updated dependencies [cb16baf]
509
+ - Updated dependencies [f36e4f1]
510
+ - Updated dependencies [7f6e403]
511
+ - @mastra/core@0.10.11
512
+
513
+ ## 0.10.10-alpha.4
514
+
515
+ ### Patch Changes
516
+
517
+ - @mastra/core@0.10.11-alpha.4
518
+
519
+ ## 0.10.10-alpha.3
520
+
521
+ ### Patch Changes
522
+
523
+ - Updated dependencies [c7bbf1e]
524
+ - Updated dependencies [8722d53]
525
+ - Updated dependencies [132027f]
526
+ - Updated dependencies [0c85311]
527
+ - Updated dependencies [cb16baf]
528
+ - @mastra/core@0.10.11-alpha.3
529
+
530
+ ## 0.10.10-alpha.2
531
+
532
+ ### Patch Changes
533
+
534
+ - 18da791: Add abortSignal to client SDK options
535
+ - Updated dependencies [2873c7f]
536
+ - Updated dependencies [1c1c6a1]
537
+ - Updated dependencies [565cc0c]
538
+ - @mastra/core@0.10.11-alpha.2
539
+
540
+ ## 0.10.10-alpha.1
541
+
542
+ ### Patch Changes
543
+
544
+ - Updated dependencies [7f6e403]
545
+ - @mastra/core@0.10.11-alpha.1
546
+
547
+ ## 0.10.10-alpha.0
548
+
549
+ ### Patch Changes
550
+
551
+ - Updated dependencies [f8ce2cc]
552
+ - Updated dependencies [8c846b6]
553
+ - Updated dependencies [b790fd1]
554
+ - Updated dependencies [d7ed04d]
555
+ - Updated dependencies [f36e4f1]
556
+ - @mastra/core@0.10.11-alpha.0
557
+
558
+ ## 0.10.9
559
+
560
+ ### Patch Changes
561
+
562
+ - b60f510: Fix getWorkflowRuns by limit and offset
563
+ - 6997af1: add send event to server, deployer, client-js and playground-ui
564
+ - Updated dependencies [4d3fbdf]
565
+ - @mastra/core@0.10.10
566
+
567
+ ## 0.10.9-alpha.1
568
+
569
+ ### Patch Changes
570
+
571
+ - b60f510: Fix getWorkflowRuns by limit and offset
572
+ - 6997af1: add send event to server, deployer, client-js and playground-ui
573
+ - @mastra/core@0.10.10-alpha.1
574
+
575
+ ## 0.10.9-alpha.0
576
+
577
+ ### Patch Changes
578
+
579
+ - Updated dependencies [4d3fbdf]
580
+ - @mastra/core@0.10.10-alpha.0
581
+
582
+ ## 0.10.8
583
+
584
+ ### Patch Changes
585
+
586
+ - 9047bda: clientTools - stream tool-result part
587
+ - a606c75: show right suspend schema for nested workflow on playground
588
+ - 1760a1c: Use workflow stream in playground instead of watch
589
+ - 038e5ae: Add cancel workflow run
590
+ - 7e801dd: Add tools to network api response
591
+ - Updated dependencies [9dda1ac]
592
+ - Updated dependencies [c984582]
593
+ - Updated dependencies [7e801dd]
594
+ - Updated dependencies [a606c75]
595
+ - Updated dependencies [7aa70a4]
596
+ - Updated dependencies [764f86a]
597
+ - Updated dependencies [1760a1c]
598
+ - Updated dependencies [038e5ae]
599
+ - Updated dependencies [7dda16a]
600
+ - Updated dependencies [5ebfcdd]
601
+ - Updated dependencies [b2d0c91]
602
+ - Updated dependencies [4e809ad]
603
+ - Updated dependencies [57929df]
604
+ - Updated dependencies [b7852ed]
605
+ - Updated dependencies [6320a61]
606
+ - @mastra/core@0.10.9
607
+
608
+ ## 0.10.8-alpha.0
609
+
610
+ ### Patch Changes
611
+
612
+ - 9047bda: clientTools - stream tool-result part
613
+ - a606c75: show right suspend schema for nested workflow on playground
614
+ - 1760a1c: Use workflow stream in playground instead of watch
615
+ - 038e5ae: Add cancel workflow run
616
+ - 7e801dd: Add tools to network api response
617
+ - Updated dependencies [9dda1ac]
618
+ - Updated dependencies [c984582]
619
+ - Updated dependencies [7e801dd]
620
+ - Updated dependencies [a606c75]
621
+ - Updated dependencies [7aa70a4]
622
+ - Updated dependencies [764f86a]
623
+ - Updated dependencies [1760a1c]
624
+ - Updated dependencies [038e5ae]
625
+ - Updated dependencies [7dda16a]
626
+ - Updated dependencies [5ebfcdd]
627
+ - Updated dependencies [b2d0c91]
628
+ - Updated dependencies [4e809ad]
629
+ - Updated dependencies [57929df]
630
+ - Updated dependencies [b7852ed]
631
+ - Updated dependencies [6320a61]
632
+ - @mastra/core@0.10.9-alpha.0
633
+
634
+ ## 0.10.7
635
+
636
+ ### Patch Changes
637
+
638
+ - a344ac7: Fix tool streaming in agent network
639
+ - Updated dependencies [b8f16b2]
640
+ - Updated dependencies [3e04487]
641
+ - Updated dependencies [a344ac7]
642
+ - Updated dependencies [dc4ca0a]
643
+ - @mastra/core@0.10.8
644
+
645
+ ## 0.10.7-alpha.1
646
+
647
+ ### Patch Changes
648
+
649
+ - Updated dependencies [b8f16b2]
650
+ - Updated dependencies [3e04487]
651
+ - Updated dependencies [dc4ca0a]
652
+ - @mastra/core@0.10.8-alpha.1
653
+
654
+ ## 0.10.7-alpha.0
655
+
656
+ ### Patch Changes
657
+
658
+ - a344ac7: Fix tool streaming in agent network
659
+ - Updated dependencies [a344ac7]
660
+ - @mastra/core@0.10.8-alpha.0
661
+
662
+ ## 0.10.6
663
+
664
+ ### Patch Changes
665
+
666
+ - 8e1b6e9: dependencies updates:
667
+ - Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
668
+ - 9bf1d55: Fix runtimeContext in mastra server, client SDK
669
+ - 18a5d59: clientTools client side execution
670
+ - 5d74aab: vNext network in playground
671
+ - bee3fe4: Fix client side tool calling
672
+ - c0d41f6: Fix streaming for agent tool calls
673
+ - Updated dependencies [15e9d26]
674
+ - Updated dependencies [d1baedb]
675
+ - Updated dependencies [d8f2d19]
676
+ - Updated dependencies [4d21bf2]
677
+ - Updated dependencies [07d6d88]
678
+ - Updated dependencies [9d52b17]
679
+ - Updated dependencies [2097952]
680
+ - Updated dependencies [792c4c0]
681
+ - Updated dependencies [5d74aab]
682
+ - Updated dependencies [a8b194f]
683
+ - Updated dependencies [4fb0cc2]
684
+ - Updated dependencies [d2a7a31]
685
+ - Updated dependencies [502fe05]
686
+ - Updated dependencies [144eb0b]
687
+ - Updated dependencies [8ba1b51]
688
+ - Updated dependencies [4efcfa0]
689
+ - Updated dependencies [0e17048]
690
+ - @mastra/core@0.10.7
691
+
692
+ ## 0.10.6-alpha.6
693
+
694
+ ### Patch Changes
695
+
696
+ - c0d41f6: Fix streaming for agent tool calls
697
+
698
+ ## 0.10.6-alpha.5
699
+
700
+ ### Patch Changes
701
+
702
+ - bee3fe4: Fix client side tool calling
703
+ - @mastra/core@0.10.7-alpha.5
704
+
705
+ ## 0.10.6-alpha.4
706
+
707
+ ### Patch Changes
708
+
709
+ - Updated dependencies [a8b194f]
710
+ - @mastra/core@0.10.7-alpha.4
711
+
712
+ ## 0.10.6-alpha.3
713
+
714
+ ### Patch Changes
715
+
716
+ - 18a5d59: clientTools client side execution
717
+ - Updated dependencies [792c4c0]
718
+ - Updated dependencies [502fe05]
719
+ - Updated dependencies [4efcfa0]
720
+ - @mastra/core@0.10.7-alpha.3
721
+
722
+ ## 0.10.6-alpha.2
723
+
724
+ ### Patch Changes
725
+
726
+ - 8e1b6e9: dependencies updates:
727
+ - Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
728
+ - 9bf1d55: Fix runtimeContext in mastra server, client SDK
729
+ - 5d74aab: vNext network in playground
730
+ - Updated dependencies [15e9d26]
731
+ - Updated dependencies [07d6d88]
732
+ - Updated dependencies [5d74aab]
733
+ - Updated dependencies [144eb0b]
734
+ - @mastra/core@0.10.7-alpha.2
735
+
736
+ ## 0.10.6-alpha.1
737
+
738
+ ### Patch Changes
739
+
740
+ - Updated dependencies [d1baedb]
741
+ - Updated dependencies [4d21bf2]
742
+ - Updated dependencies [2097952]
743
+ - Updated dependencies [4fb0cc2]
744
+ - Updated dependencies [d2a7a31]
745
+ - Updated dependencies [0e17048]
746
+ - @mastra/core@0.10.7-alpha.1
747
+
748
+ ## 0.10.6-alpha.0
749
+
750
+ ### Patch Changes
751
+
752
+ - Updated dependencies [d8f2d19]
753
+ - Updated dependencies [9d52b17]
754
+ - Updated dependencies [8ba1b51]
755
+ - @mastra/core@0.10.7-alpha.0
756
+
757
+ ## 0.10.5
758
+
759
+ ### Patch Changes
760
+
761
+ - 63f6b7d: dependencies updates:
762
+ - Updated dependency [`@ai-sdk/ui-utils@^1.2.11` ↗︎](https://www.npmjs.com/package/@ai-sdk/ui-utils/v/1.2.11) (from `^1.1.19`, in `dependencies`)
763
+ - Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
764
+ - ee9af57: Add api for polling run execution result and get run by id
765
+ - 3270d9d: Fix runtime context being undefined
766
+ - Updated dependencies [63f6b7d]
767
+ - Updated dependencies [12a95fc]
768
+ - Updated dependencies [4b0f8a6]
769
+ - Updated dependencies [51264a5]
770
+ - Updated dependencies [8e6f677]
771
+ - Updated dependencies [d70c420]
772
+ - Updated dependencies [ee9af57]
773
+ - Updated dependencies [36f1c36]
774
+ - Updated dependencies [2a16996]
775
+ - Updated dependencies [10d352e]
776
+ - Updated dependencies [9589624]
777
+ - Updated dependencies [53d3c37]
778
+ - Updated dependencies [751c894]
779
+ - Updated dependencies [577ce3a]
780
+ - Updated dependencies [9260b3a]
781
+ - @mastra/core@0.10.6
782
+
783
+ ## 0.10.5-alpha.5
784
+
785
+ ### Patch Changes
786
+
787
+ - Updated dependencies [12a95fc]
788
+ - Updated dependencies [51264a5]
789
+ - Updated dependencies [8e6f677]
790
+ - @mastra/core@0.10.6-alpha.5
791
+
792
+ ## 0.10.5-alpha.4
793
+
794
+ ### Patch Changes
795
+
796
+ - Updated dependencies [9589624]
797
+ - @mastra/core@0.10.6-alpha.4
798
+
799
+ ## 0.10.5-alpha.3
800
+
801
+ ### Patch Changes
802
+
803
+ - Updated dependencies [d70c420]
804
+ - Updated dependencies [2a16996]
805
+ - @mastra/core@0.10.6-alpha.3
806
+
807
+ ## 0.10.5-alpha.2
808
+
809
+ ### Patch Changes
810
+
811
+ - Updated dependencies [4b0f8a6]
812
+ - @mastra/core@0.10.6-alpha.2
813
+
814
+ ## 0.10.5-alpha.1
815
+
816
+ ### Patch Changes
817
+
818
+ - ee9af57: Add api for polling run execution result and get run by id
819
+ - 3270d9d: Fix runtime context being undefined
820
+ - Updated dependencies [ee9af57]
821
+ - Updated dependencies [751c894]
822
+ - Updated dependencies [577ce3a]
823
+ - Updated dependencies [9260b3a]
824
+ - @mastra/core@0.10.6-alpha.1
825
+
826
+ ## 0.10.5-alpha.0
827
+
828
+ ### Patch Changes
829
+
830
+ - 63f6b7d: dependencies updates:
831
+ - Updated dependency [`@ai-sdk/ui-utils@^1.2.11` ↗︎](https://www.npmjs.com/package/@ai-sdk/ui-utils/v/1.2.11) (from `^1.1.19`, in `dependencies`)
832
+ - Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
833
+ - Updated dependencies [63f6b7d]
834
+ - Updated dependencies [36f1c36]
835
+ - Updated dependencies [10d352e]
836
+ - Updated dependencies [53d3c37]
837
+ - @mastra/core@0.10.6-alpha.0
838
+
839
+ ## 0.10.4
840
+
841
+ ### Patch Changes
842
+
843
+ - Updated dependencies [13c97f9]
844
+ - @mastra/core@0.10.5
845
+
846
+ ## 0.10.3
847
+
848
+ ### Patch Changes
849
+
850
+ - 1ccccff: dependencies updates:
851
+ - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
852
+ - 1ccccff: dependencies updates:
853
+ - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
854
+ - f1f1f1b: Add basic filtering capabilities to logs
855
+ - b2810ab: Move @mastra/core to deps
856
+ - 82090c1: Add pagination to logs
857
+ - 67d21b5: Added overloading to the generate method of the Agent class to enhance type definition using ZodSchema.
858
+ - Updated dependencies [d1ed912]
859
+ - Updated dependencies [f6fd25f]
860
+ - Updated dependencies [dffb67b]
861
+ - Updated dependencies [f1f1f1b]
862
+ - Updated dependencies [925ab94]
863
+ - Updated dependencies [f9816ae]
864
+ - Updated dependencies [82090c1]
865
+ - Updated dependencies [1b443fd]
866
+ - Updated dependencies [ce97900]
867
+ - Updated dependencies [f1309d3]
868
+ - Updated dependencies [14a2566]
869
+ - Updated dependencies [f7f8293]
870
+ - Updated dependencies [48eddb9]
871
+ - @mastra/core@0.10.4
872
+
873
+ ## 0.10.3-alpha.3
874
+
875
+ ### Patch Changes
876
+
877
+ - Updated dependencies [925ab94]
878
+ - @mastra/core@0.10.4-alpha.3
879
+
880
+ ## 0.10.3-alpha.2
881
+
882
+ ### Patch Changes
883
+
884
+ - Updated dependencies [48eddb9]
885
+ - @mastra/core@0.10.4-alpha.2
886
+
887
+ ## 0.10.3-alpha.1
888
+
889
+ ### Patch Changes
890
+
891
+ - 1ccccff: dependencies updates:
892
+ - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
893
+ - 1ccccff: dependencies updates:
894
+ - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
895
+ - Updated dependencies [f6fd25f]
896
+ - Updated dependencies [dffb67b]
897
+ - Updated dependencies [f1309d3]
898
+ - Updated dependencies [f7f8293]
899
+ - @mastra/core@0.10.4-alpha.1
900
+
901
+ ## 0.10.3-alpha.0
902
+
903
+ ### Patch Changes
904
+
905
+ - f1f1f1b: Add basic filtering capabilities to logs
906
+ - b2810ab: Move @mastra/core to deps
907
+ - 82090c1: Add pagination to logs
908
+ - 67d21b5: Added overloading to the generate method of the Agent class to enhance type definition using ZodSchema.
909
+ - Updated dependencies [d1ed912]
910
+ - Updated dependencies [f1f1f1b]
911
+ - Updated dependencies [f9816ae]
912
+ - Updated dependencies [82090c1]
913
+ - Updated dependencies [1b443fd]
914
+ - Updated dependencies [ce97900]
915
+ - Updated dependencies [14a2566]
916
+ - @mastra/core@0.10.4-alpha.0
917
+
918
+ ## 0.10.2
919
+
920
+ ### Patch Changes
921
+
922
+ - 592a2db: Added different icons for agents and workflows in mcp tools list
923
+ - 37643b8: Fix tool access
924
+ - c5bf1ce: Add backwards compat code for new MessageList in storage
925
+ - b72c768: [Bug fix] Serialize parameters in clientTools
926
+ - f0d559f: Fix peerdeps for alpha channel
927
+ - Updated dependencies [ee77e78]
928
+ - Updated dependencies [592a2db]
929
+ - Updated dependencies [e5dc18d]
930
+ - Updated dependencies [ab5adbe]
931
+ - Updated dependencies [1e8bb40]
932
+ - Updated dependencies [1b5fc55]
933
+ - Updated dependencies [195c428]
934
+ - Updated dependencies [f73e11b]
935
+ - Updated dependencies [37643b8]
936
+ - Updated dependencies [99fd6cf]
937
+ - Updated dependencies [c5bf1ce]
938
+ - Updated dependencies [add596e]
939
+ - Updated dependencies [8dc94d8]
940
+ - Updated dependencies [ecebbeb]
941
+ - Updated dependencies [79d5145]
942
+ - Updated dependencies [12b7002]
943
+ - Updated dependencies [2901125]
944
+ - @mastra/core@0.10.2
945
+
946
+ ## 0.10.2-alpha.3
947
+
948
+ ### Patch Changes
949
+
950
+ - 37643b8: Fix tool access
951
+ - b72c768: [Bug fix] Serialize parameters in clientTools
952
+ - Updated dependencies [37643b8]
953
+ - Updated dependencies [79d5145]
954
+ - @mastra/core@0.10.2-alpha.8
955
+
956
+ ## 0.10.2-alpha.2
957
+
958
+ ### Patch Changes
959
+
960
+ - c5bf1ce: Add backwards compat code for new MessageList in storage
961
+ - Updated dependencies [c5bf1ce]
962
+ - Updated dependencies [12b7002]
963
+ - @mastra/core@0.10.2-alpha.4
964
+
965
+ ## 0.10.2-alpha.1
966
+
967
+ ### Patch Changes
968
+
969
+ - f0d559f: Fix peerdeps for alpha channel
970
+ - Updated dependencies [1e8bb40]
971
+ - @mastra/core@0.10.2-alpha.2
972
+
973
+ ## 0.10.2-alpha.0
974
+
975
+ ### Patch Changes
976
+
977
+ - 592a2db: Added different icons for agents and workflows in mcp tools list
978
+ - Updated dependencies [592a2db]
979
+ - Updated dependencies [e5dc18d]
980
+ - @mastra/core@0.10.2-alpha.0
981
+
982
+ ## 0.10.1
983
+
984
+ ### Patch Changes
985
+
986
+ - 267773e: Show map config on workflow graph
987
+ Highlight borders for conditions too on workflow graph
988
+ Fix watch stream
989
+ - 5343f93: Move emitter to symbol to make private
990
+ - f622cfa: Make some properties of CreateMemoryThreadParams optional
991
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
992
+ - Updated dependencies [d70b807]
993
+ - Updated dependencies [6d16390]
994
+ - Updated dependencies [1e4a421]
995
+ - Updated dependencies [200d0da]
996
+ - Updated dependencies [bf5f17b]
997
+ - Updated dependencies [5343f93]
998
+ - Updated dependencies [38aee50]
999
+ - Updated dependencies [5c41100]
1000
+ - Updated dependencies [d6a759b]
1001
+ - Updated dependencies [6015bdf]
1002
+ - @mastra/core@0.10.1
1003
+
1004
+ ## 0.10.1-alpha.3
1005
+
1006
+ ### Patch Changes
1007
+
1008
+ - 267773e: Show map config on workflow graph
1009
+ Highlight borders for conditions too on workflow graph
1010
+ Fix watch stream
1011
+
1012
+ ## 0.10.1-alpha.2
1013
+
1014
+ ### Patch Changes
1015
+
1016
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
1017
+ - Updated dependencies [6015bdf]
1018
+ - @mastra/core@0.10.1-alpha.2
1019
+
1020
+ ## 0.10.1-alpha.1
1021
+
1022
+ ### Patch Changes
1023
+
1024
+ - 5343f93: Move emitter to symbol to make private
1025
+ - Updated dependencies [200d0da]
1026
+ - Updated dependencies [bf5f17b]
1027
+ - Updated dependencies [5343f93]
1028
+ - Updated dependencies [38aee50]
1029
+ - Updated dependencies [5c41100]
1030
+ - Updated dependencies [d6a759b]
1031
+ - @mastra/core@0.10.1-alpha.1
1032
+
1033
+ ## 0.10.1-alpha.0
1034
+
1035
+ ### Patch Changes
1036
+
1037
+ - f622cfa: Make some properties of CreateMemoryThreadParams optional
1038
+ - Updated dependencies [6d16390]
1039
+ - Updated dependencies [1e4a421]
1040
+ - @mastra/core@0.10.1-alpha.0
1041
+
1042
+ ## 0.10.0
1043
+
1044
+ ### Minor Changes
1045
+
1046
+ - 83da932: Move @mastra/core to peerdeps
1047
+ - 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
1048
+
1049
+ ### Patch Changes
1050
+
1051
+ - b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
1052
+ - 0215b0b: Add description to vnext workflow response
1053
+ - f53a6ac: Add VNextWorkflowRuns type
1054
+ - ccdabdc: Remove trailing / from mastraClient baseUrl
1055
+ - a6e3881: Remove non serializable options from agent stream,generate
1056
+ - fddae56: Add telemetry to cliend SDK streamParams
1057
+ - 23f258c: Add new list and get routes for mcp servers. Changed route make-up for more consistency with existing API routes. Lastly, added in a lot of extra detail that can be optionally passed to the mcp server per the mcp spec.
1058
+ - 5063646: Accept plain obects as runtimeContext
1059
+ - 2672a05: Add MCP servers and tool call execution to playground
1060
+ - Updated dependencies [b3a3d63]
1061
+ - Updated dependencies [344f453]
1062
+ - Updated dependencies [0a3ae6d]
1063
+ - Updated dependencies [95911be]
1064
+ - Updated dependencies [f53a6ac]
1065
+ - Updated dependencies [5eb5a99]
1066
+ - Updated dependencies [7e632c5]
1067
+ - Updated dependencies [1e9fbfa]
1068
+ - Updated dependencies [eabdcd9]
1069
+ - Updated dependencies [90be034]
1070
+ - Updated dependencies [99f050a]
1071
+ - Updated dependencies [d0ee3c6]
1072
+ - Updated dependencies [b2ae5aa]
1073
+ - Updated dependencies [23f258c]
1074
+ - Updated dependencies [a7292b0]
1075
+ - Updated dependencies [0dcb9f0]
1076
+ - Updated dependencies [2672a05]
1077
+ - @mastra/core@0.10.0
1078
+
1079
+ ## 0.2.0-alpha.1
1080
+
1081
+ ### Minor Changes
1082
+
1083
+ - 83da932: Move @mastra/core to peerdeps
1084
+ - 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
1085
+
1086
+ ### Patch Changes
1087
+
1088
+ - b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
1089
+ - 0215b0b: Add description to vnext workflow response
1090
+ - 5063646: Accept plain obects as runtimeContext
1091
+ - Updated dependencies [b3a3d63]
1092
+ - Updated dependencies [344f453]
1093
+ - Updated dependencies [0a3ae6d]
1094
+ - Updated dependencies [95911be]
1095
+ - Updated dependencies [5eb5a99]
1096
+ - Updated dependencies [7e632c5]
1097
+ - Updated dependencies [1e9fbfa]
1098
+ - Updated dependencies [b2ae5aa]
1099
+ - Updated dependencies [a7292b0]
1100
+ - Updated dependencies [0dcb9f0]
1101
+ - @mastra/core@0.10.0-alpha.1
1102
+
1103
+ ## 0.1.23-alpha.0
1104
+
1105
+ ### Patch Changes
1106
+
1107
+ - f53a6ac: Add VNextWorkflowRuns type
1108
+ - ccdabdc: Remove trailing / from mastraClient baseUrl
1109
+ - a6e3881: Remove non serializable options from agent stream,generate
1110
+ - fddae56: Add telemetry to cliend SDK streamParams
1111
+ - 23f258c: Add new list and get routes for mcp servers. Changed route make-up for more consistency with existing API routes. Lastly, added in a lot of extra detail that can be optionally passed to the mcp server per the mcp spec.
1112
+ - 2672a05: Add MCP servers and tool call execution to playground
1113
+ - Updated dependencies [f53a6ac]
1114
+ - Updated dependencies [eabdcd9]
1115
+ - Updated dependencies [90be034]
1116
+ - Updated dependencies [99f050a]
1117
+ - Updated dependencies [d0ee3c6]
1118
+ - Updated dependencies [23f258c]
1119
+ - Updated dependencies [2672a05]
1120
+ - @mastra/core@0.9.5-alpha.0
1121
+
1122
+ ## 0.1.22
1123
+
1124
+ ### Patch Changes
1125
+
1126
+ - c2f9e60: Resolves type issue and listen response string wrapped in text object twice
1127
+ - 5c70b8a: [MASTRA-3234] added limit for client-js getMessages
1128
+ - b4c6c87: fix: Specify $refStrategy: 'none' when calling zodToJsonSchema.
1129
+ - 0c3d117: Add workflows to agent server handlers
1130
+ - a5810ce: Add support for experimental_generateMessageId and remove it from client-js types since it's not serializable
1131
+ - c2b980b: Fix multiple too-calls in AGUI
1132
+ - cb1f698: Set runtimeContext from playground for agents, tools, workflows
1133
+ - 0b8b868: Added A2A support + streaming
1134
+ - Updated dependencies [396be50]
1135
+ - Updated dependencies [ab80e7e]
1136
+ - Updated dependencies [c3bd795]
1137
+ - Updated dependencies [da082f8]
1138
+ - Updated dependencies [a5810ce]
1139
+ - Updated dependencies [3e9c131]
1140
+ - Updated dependencies [3171b5b]
1141
+ - Updated dependencies [973e5ac]
1142
+ - Updated dependencies [daf942f]
1143
+ - Updated dependencies [0b8b868]
1144
+ - Updated dependencies [9e1eff5]
1145
+ - Updated dependencies [6fa1ad1]
1146
+ - Updated dependencies [c28d7a0]
1147
+ - Updated dependencies [edf1e88]
1148
+ - @mastra/core@0.9.4
1149
+
1150
+ ## 0.1.22-alpha.4
1151
+
1152
+ ### Patch Changes
1153
+
1154
+ - 5c70b8a: [MASTRA-3234] added limit for client-js getMessages
1155
+ - Updated dependencies [3e9c131]
1156
+ - @mastra/core@0.9.4-alpha.4
1157
+
1158
+ ## 0.1.22-alpha.3
1159
+
1160
+ ### Patch Changes
1161
+
1162
+ - c2f9e60: Resolves type issue and listen response string wrapped in text object twice
1163
+ - 0c3d117: Add workflows to agent server handlers
1164
+ - a5810ce: Add support for experimental_generateMessageId and remove it from client-js types since it's not serializable
1165
+ - Updated dependencies [396be50]
1166
+ - Updated dependencies [c3bd795]
1167
+ - Updated dependencies [da082f8]
1168
+ - Updated dependencies [a5810ce]
1169
+ - @mastra/core@0.9.4-alpha.3
1170
+
1171
+ ## 0.1.22-alpha.2
1172
+
1173
+ ### Patch Changes
1174
+
1175
+ - b4c6c87: fix: Specify $refStrategy: 'none' when calling zodToJsonSchema.
1176
+ - c2b980b: Fix multiple too-calls in AGUI
1177
+ - Updated dependencies [3171b5b]
1178
+ - Updated dependencies [973e5ac]
1179
+ - Updated dependencies [9e1eff5]
1180
+ - @mastra/core@0.9.4-alpha.2
1181
+
1182
+ ## 0.1.22-alpha.1
1183
+
1184
+ ### Patch Changes
1185
+
1186
+ - Updated dependencies [ab80e7e]
1187
+ - Updated dependencies [6fa1ad1]
1188
+ - Updated dependencies [c28d7a0]
1189
+ - Updated dependencies [edf1e88]
1190
+ - @mastra/core@0.9.4-alpha.1
1191
+
1192
+ ## 0.1.22-alpha.0
1193
+
1194
+ ### Patch Changes
1195
+
1196
+ - cb1f698: Set runtimeContext from playground for agents, tools, workflows
1197
+ - 0b8b868: Added A2A support + streaming
1198
+ - Updated dependencies [daf942f]
1199
+ - Updated dependencies [0b8b868]
1200
+ - @mastra/core@0.9.4-alpha.0
1201
+
1202
+ ## 0.1.21
1203
+
1204
+ ### Patch Changes
1205
+
1206
+ - 526c570: expose agent runtimeContext from clientSDK
1207
+ - 36eb1aa: Fix AGUI text part
1208
+ - 62c9e7d: Fix disappearing tool calls in streaming
1209
+ - Updated dependencies [e450778]
1210
+ - Updated dependencies [8902157]
1211
+ - Updated dependencies [ca0dc88]
1212
+ - Updated dependencies [526c570]
1213
+ - Updated dependencies [d7a6a33]
1214
+ - Updated dependencies [9cd1a46]
1215
+ - Updated dependencies [b5d2de0]
1216
+ - Updated dependencies [644f8ad]
1217
+ - Updated dependencies [70dbf51]
1218
+ - @mastra/core@0.9.3
1219
+
1220
+ ## 0.1.21-alpha.1
1221
+
1222
+ ### Patch Changes
1223
+
1224
+ - 36eb1aa: Fix AGUI text part
1225
+ - 62c9e7d: Fix disappearing tool calls in streaming
1226
+ - Updated dependencies [e450778]
1227
+ - Updated dependencies [8902157]
1228
+ - Updated dependencies [ca0dc88]
1229
+ - Updated dependencies [9cd1a46]
1230
+ - Updated dependencies [70dbf51]
1231
+ - @mastra/core@0.9.3-alpha.1
1232
+
1233
+ ## 0.1.21-alpha.0
1234
+
1235
+ ### Patch Changes
1236
+
1237
+ - 526c570: expose agent runtimeContext from clientSDK
1238
+ - Updated dependencies [526c570]
1239
+ - Updated dependencies [b5d2de0]
1240
+ - Updated dependencies [644f8ad]
1241
+ - @mastra/core@0.9.3-alpha.0
1242
+
1243
+ ## 0.1.20
1244
+
1245
+ ### Patch Changes
1246
+
1247
+ - 2cf3b8f: dependencies updates:
1248
+ - Updated dependency [`zod@^3.24.3` ↗︎](https://www.npmjs.com/package/zod/v/3.24.3) (from `^3.24.2`, in `dependencies`)
1249
+ - Updated dependency [`zod-to-json-schema@^3.24.5` ↗︎](https://www.npmjs.com/package/zod-to-json-schema/v/3.24.5) (from `^3.24.3`, in `dependencies`)
1250
+ - 4155f47: Add parameters to filter workflow runs
1251
+ Add fromDate and toDate to telemetry parameters
1252
+ - 254f5c3: Audit, cleanup MastraClient
1253
+ - 0097d50: Add serializedStepGraph to vNext workflow
1254
+ Return serializedStepGraph from vNext workflow
1255
+ Use serializedStepGraph in vNext workflow graph
1256
+ - 2429c74: Add get workflow runs api to client-js
1257
+ - 2e4f8e9: Agui client integration
1258
+ - Updated dependencies [6052aa6]
1259
+ - Updated dependencies [967b41c]
1260
+ - Updated dependencies [3d2fb5c]
1261
+ - Updated dependencies [26738f4]
1262
+ - Updated dependencies [4155f47]
1263
+ - Updated dependencies [7eeb2bc]
1264
+ - Updated dependencies [b804723]
1265
+ - Updated dependencies [8607972]
1266
+ - Updated dependencies [ccef9f9]
1267
+ - Updated dependencies [0097d50]
1268
+ - Updated dependencies [7eeb2bc]
1269
+ - Updated dependencies [17826a9]
1270
+ - Updated dependencies [7d8b7c7]
1271
+ - Updated dependencies [fba031f]
1272
+ - Updated dependencies [3a5f1e1]
1273
+ - Updated dependencies [51e6923]
1274
+ - Updated dependencies [8398d89]
1275
+ - @mastra/core@0.9.2
1276
+
1277
+ ## 0.1.20-alpha.6
1278
+
1279
+ ### Patch Changes
1280
+
1281
+ - 2e4f8e9: Agui client integration
1282
+ - Updated dependencies [6052aa6]
1283
+ - Updated dependencies [7d8b7c7]
1284
+ - Updated dependencies [3a5f1e1]
1285
+ - Updated dependencies [8398d89]
1286
+ - @mastra/core@0.9.2-alpha.6
1287
+
1288
+ ## 0.1.20-alpha.5
1289
+
1290
+ ### Patch Changes
1291
+
1292
+ - Updated dependencies [3d2fb5c]
1293
+ - Updated dependencies [7eeb2bc]
1294
+ - Updated dependencies [8607972]
1295
+ - Updated dependencies [7eeb2bc]
1296
+ - Updated dependencies [fba031f]
1297
+ - @mastra/core@0.9.2-alpha.5
1298
+
1299
+ ## 0.1.20-alpha.4
1300
+
1301
+ ### Patch Changes
1302
+
1303
+ - Updated dependencies [ccef9f9]
1304
+ - Updated dependencies [51e6923]
1305
+ - @mastra/core@0.9.2-alpha.4
1306
+
1307
+ ## 0.1.20-alpha.3
1308
+
1309
+ ### Patch Changes
1310
+
1311
+ - 4155f47: Add parameters to filter workflow runs
1312
+ Add fromDate and toDate to telemetry parameters
1313
+ - Updated dependencies [967b41c]
1314
+ - Updated dependencies [4155f47]
1315
+ - Updated dependencies [17826a9]
1316
+ - @mastra/core@0.9.2-alpha.3
1317
+
1318
+ ## 0.1.20-alpha.2
1319
+
1320
+ ### Patch Changes
1321
+
1322
+ - Updated dependencies [26738f4]
1323
+ - @mastra/core@0.9.2-alpha.2
1324
+
1325
+ ## 0.1.20-alpha.1
1326
+
1327
+ ### Patch Changes
1328
+
1329
+ - 254f5c3: Audit, cleanup MastraClient
1330
+ - 2429c74: Add get workflow runs api to client-js
1331
+ - Updated dependencies [b804723]
1332
+ - @mastra/core@0.9.2-alpha.1
1333
+
1334
+ ## 0.1.20-alpha.0
4
1335
 
5
1336
  ### Patch Changes
6
1337
 
1338
+ - 0097d50: Add serializedStepGraph to vNext workflow
1339
+ Return serializedStepGraph from vNext workflow
1340
+ Use serializedStepGraph in vNext workflow graph
1341
+ - Updated dependencies [0097d50]
1342
+ - @mastra/core@0.9.2-alpha.0
1343
+
1344
+ ## 0.1.19
1345
+
1346
+ ### Patch Changes
1347
+
1348
+ - b50b9b7: Add vNext workflow to client-js
1349
+ - 11d4485: Show VNext workflows on the playground
1350
+ Show running status for step in vNext workflowState
1351
+ - Updated dependencies [405b63d]
1352
+ - Updated dependencies [81fb7f6]
1353
+ - Updated dependencies [20275d4]
1354
+ - Updated dependencies [7d1892c]
1355
+ - Updated dependencies [a90a082]
1356
+ - Updated dependencies [2d17c73]
1357
+ - Updated dependencies [61e92f5]
1358
+ - Updated dependencies [35955b0]
1359
+ - Updated dependencies [6262bd5]
1360
+ - Updated dependencies [c1409ef]
1361
+ - Updated dependencies [3e7b69d]
1362
+ - Updated dependencies [e4943b8]
1363
+ - Updated dependencies [11d4485]
1364
+ - Updated dependencies [479f490]
1365
+ - Updated dependencies [c23a81c]
1366
+ - Updated dependencies [2d4001d]
1367
+ - Updated dependencies [c71013a]
1368
+ - Updated dependencies [1d3b1cd]
1369
+ - @mastra/core@0.9.1
1370
+
1371
+ ## 0.1.19-alpha.8
1372
+
1373
+ ### Patch Changes
1374
+
1375
+ - Updated dependencies [2d17c73]
1376
+ - @mastra/core@0.9.1-alpha.8
1377
+
1378
+ ## 0.1.19-alpha.7
1379
+
1380
+ ### Patch Changes
1381
+
1382
+ - Updated dependencies [1d3b1cd]
1383
+ - @mastra/core@0.9.1-alpha.7
1384
+
1385
+ ## 0.1.19-alpha.6
1386
+
1387
+ ### Patch Changes
1388
+
1389
+ - Updated dependencies [c23a81c]
1390
+ - @mastra/core@0.9.1-alpha.6
1391
+
1392
+ ## 0.1.19-alpha.5
1393
+
1394
+ ### Patch Changes
1395
+
1396
+ - Updated dependencies [3e7b69d]
1397
+ - @mastra/core@0.9.1-alpha.5
1398
+
1399
+ ## 0.1.19-alpha.4
1400
+
1401
+ ### Patch Changes
1402
+
1403
+ - Updated dependencies [e4943b8]
1404
+ - Updated dependencies [479f490]
1405
+ - @mastra/core@0.9.1-alpha.4
1406
+
1407
+ ## 0.1.19-alpha.3
1408
+
1409
+ ### Patch Changes
1410
+
1411
+ - Updated dependencies [6262bd5]
1412
+ - @mastra/core@0.9.1-alpha.3
1413
+
1414
+ ## 0.1.19-alpha.2
1415
+
1416
+ ### Patch Changes
1417
+
1418
+ - Updated dependencies [405b63d]
1419
+ - Updated dependencies [61e92f5]
1420
+ - Updated dependencies [c71013a]
1421
+ - @mastra/core@0.9.1-alpha.2
1422
+
1423
+ ## 0.1.19-alpha.1
1424
+
1425
+ ### Patch Changes
1426
+
1427
+ - b50b9b7: Add vNext workflow to client-js
1428
+ - 11d4485: Show VNext workflows on the playground
1429
+ Show running status for step in vNext workflowState
1430
+ - Updated dependencies [20275d4]
1431
+ - Updated dependencies [7d1892c]
1432
+ - Updated dependencies [a90a082]
1433
+ - Updated dependencies [35955b0]
1434
+ - Updated dependencies [c1409ef]
1435
+ - Updated dependencies [11d4485]
1436
+ - Updated dependencies [2d4001d]
1437
+ - @mastra/core@0.9.1-alpha.1
1438
+
1439
+ ## 0.1.19-alpha.0
1440
+
1441
+ ### Patch Changes
1442
+
1443
+ - Updated dependencies [81fb7f6]
1444
+ - @mastra/core@0.9.1-alpha.0
1445
+
1446
+ ## 0.1.18
1447
+
1448
+ ### Patch Changes
1449
+
1450
+ - 2538066: Fix memory thread creation from client SDK
1451
+ - Updated dependencies [000a6d4]
7
1452
  - Updated dependencies [08bb78e]
1453
+ - Updated dependencies [ed2f549]
8
1454
  - Updated dependencies [7e92011]
9
1455
  - Updated dependencies [9ee4293]
10
1456
  - Updated dependencies [03f3cd0]
1457
+ - Updated dependencies [c0f22b4]
1458
+ - Updated dependencies [71d9444]
1459
+ - Updated dependencies [157c741]
11
1460
  - Updated dependencies [8a8a73b]
1461
+ - Updated dependencies [0a033fa]
12
1462
  - Updated dependencies [fe3ae4d]
1463
+ - Updated dependencies [9c26508]
1464
+ - Updated dependencies [0f4eae3]
1465
+ - Updated dependencies [16a8648]
13
1466
  - Updated dependencies [6f92295]
14
- - @mastra/core@0.0.0-extend-clickhouse-20250418135620
1467
+ - @mastra/core@0.9.0
1468
+
1469
+ ## 0.1.18-alpha.8
1470
+
1471
+ ### Patch Changes
1472
+
1473
+ - 2538066: Fix memory thread creation from client SDK
1474
+ - Updated dependencies [000a6d4]
1475
+ - Updated dependencies [ed2f549]
1476
+ - Updated dependencies [c0f22b4]
1477
+ - Updated dependencies [0a033fa]
1478
+ - Updated dependencies [9c26508]
1479
+ - Updated dependencies [0f4eae3]
1480
+ - Updated dependencies [16a8648]
1481
+ - @mastra/core@0.9.0-alpha.8
1482
+
1483
+ ## 0.1.18-alpha.7
1484
+
1485
+ ### Patch Changes
1486
+
1487
+ - Updated dependencies [71d9444]
1488
+ - @mastra/core@0.9.0-alpha.7
1489
+
1490
+ ## 0.1.18-alpha.6
1491
+
1492
+ ### Patch Changes
1493
+
1494
+ - Updated dependencies [157c741]
1495
+ - @mastra/core@0.9.0-alpha.6
15
1496
 
16
1497
  ## 0.1.18-alpha.5
17
1498