create-mastra 0.0.0-mssql-store-20250804200341 → 0.0.0-new-button-export-20251219130424

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 ADDED
@@ -0,0 +1,2263 @@
1
+ # create-mastra
2
+
3
+ ## 0.0.0-new-button-export-20251219130424
4
+
5
+ ### Major Changes
6
+
7
+ - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
8
+
9
+ - Removed old tracing code based on OpenTelemetry ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
10
+
11
+ - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
12
+
13
+ ### Patch Changes
14
+
15
+ - Fix select options overflow when list is long by adding maximum height ([#10813](https://github.com/mastra-ai/mastra/pull/10813))
16
+
17
+ - dependencies updates: ([#10111](https://github.com/mastra-ai/mastra/pull/10111))
18
+ - Updated dependency [`pino@^10.1.0` ↗︎](https://www.npmjs.com/package/pino/v/10.1.0) (from `^9.7.0`, in `dependencies`)
19
+
20
+ - dependencies updates: ([#9781](https://github.com/mastra-ai/mastra/pull/9781))
21
+ - Updated dependency [`posthog-node@^5.11.2` ↗︎](https://www.npmjs.com/package/posthog-node/v/5.11.2) (from `^4.18.0`, in `dependencies`)
22
+
23
+ - Update MainSidebar component to fit required changes in Cloud CTA link ([#9318](https://github.com/mastra-ai/mastra/pull/9318))
24
+
25
+ - Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
26
+
27
+ - Auto resume suspended tools if `autoResumeSuspendedTools: true` ([#11157](https://github.com/mastra-ai/mastra/pull/11157))
28
+
29
+ The flag can be added to `defaultAgentOptions` when creating the agent or to options in `agent.stream` or `agent.generate`
30
+
31
+ ```typescript
32
+ const agent = new Agent({
33
+ //...agent information,
34
+ defaultAgentOptions: {
35
+ autoResumeSuspendedTools: true,
36
+ },
37
+ });
38
+ ```
39
+
40
+ - Make MainSidebar toggle button sticky to bottom, always visible ([#9682](https://github.com/mastra-ai/mastra/pull/9682))
41
+
42
+ - Detect bun runtime and cleanup on failure ([#10242](https://github.com/mastra-ai/mastra/pull/10242))
43
+
44
+ - Add `Run` instance to client-js. `workflow.createRun` returns the `Run` instance which can be used for the different run methods. ([#11207](https://github.com/mastra-ai/mastra/pull/11207))
45
+ With this change, run methods cannot be called directly on workflow instance anymore
46
+
47
+ ```diff
48
+ - const result = await workflow.stream({ runId: '123', inputData: { ... } });
49
+ + const run = await workflow.createRun({ runId: '123' });
50
+ + const stream = await run.stream({ inputData: { ... } });
51
+ ```
52
+
53
+ - Add timeTravel APIs and add timeTravel feature to studio ([#10361](https://github.com/mastra-ai/mastra/pull/10361))
54
+
55
+ - Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
56
+
57
+ ```typescript
58
+ await workflow.deleteWorkflowRunById(runId);
59
+ ```
60
+
61
+ - Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
62
+
63
+ - Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
64
+
65
+ - Update Observability Trace Spans list UI, so a user can expand/collapse span children/descendants and can filter the list by span type or name ([#10378](https://github.com/mastra-ai/mastra/pull/10378))
66
+
67
+ - Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
68
+
69
+ - Fix scorer filtering for SpanScoring, add error and info message for user ([#10160](https://github.com/mastra-ai/mastra/pull/10160))
70
+
71
+ - Hide time travel on map steps in Studio ([#10631](https://github.com/mastra-ai/mastra/pull/10631))
72
+
73
+ - Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
74
+
75
+ - fix isTopLevelSpan value definition on SpanScoring to properly recognize lack of span?.parentSpanId value (null or empty string) ([#11083](https://github.com/mastra-ai/mastra/pull/11083))
76
+
77
+ ## 1.0.0-beta.11
78
+
79
+ ## 1.0.0-beta.10
80
+
81
+ ### Patch Changes
82
+
83
+ - Auto resume suspended tools if `autoResumeSuspendedTools: true` ([#11157](https://github.com/mastra-ai/mastra/pull/11157))
84
+
85
+ The flag can be added to `defaultAgentOptions` when creating the agent or to options in `agent.stream` or `agent.generate`
86
+
87
+ ```typescript
88
+ const agent = new Agent({
89
+ //...agent information,
90
+ defaultAgentOptions: {
91
+ autoResumeSuspendedTools: true,
92
+ },
93
+ });
94
+ ```
95
+
96
+ - Add `Run` instance to client-js. `workflow.createRun` returns the `Run` instance which can be used for the different run methods. ([#11207](https://github.com/mastra-ai/mastra/pull/11207))
97
+ With this change, run methods cannot be called directly on workflow instance anymore
98
+
99
+ ```diff
100
+ - const result = await workflow.stream({ runId: '123', inputData: { ... } });
101
+ + const run = await workflow.createRun({ runId: '123' });
102
+ + const stream = await run.stream({ inputData: { ... } });
103
+ ```
104
+
105
+ - fix isTopLevelSpan value definition on SpanScoring to properly recognize lack of span?.parentSpanId value (null or empty string) ([#11083](https://github.com/mastra-ai/mastra/pull/11083))
106
+
107
+ ## 1.0.0-beta.9
108
+
109
+ ## 1.0.0-beta.8
110
+
111
+ ### Patch Changes
112
+
113
+ - Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
114
+
115
+ ```typescript
116
+ await workflow.deleteWorkflowRunById(runId);
117
+ ```
118
+
119
+ ## 1.0.0-beta.7
120
+
121
+ ### Patch Changes
122
+
123
+ - Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
124
+
125
+ - Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
126
+
127
+ - Update Observability Trace Spans list UI, so a user can expand/collapse span children/descendants and can filter the list by span type or name ([#10378](https://github.com/mastra-ai/mastra/pull/10378))
128
+
129
+ - Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
130
+
131
+ ## 1.0.0-beta.6
132
+
133
+ ### Patch Changes
134
+
135
+ - Fix select options overflow when list is long by adding maximum height ([#10813](https://github.com/mastra-ai/mastra/pull/10813))
136
+
137
+ ## 1.0.0-beta.5
138
+
139
+ ### Patch Changes
140
+
141
+ - Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
142
+
143
+ - Hide time travel on map steps in Studio ([#10631](https://github.com/mastra-ai/mastra/pull/10631))
144
+
145
+ ## 1.0.0-beta.4
146
+
147
+ ### Patch Changes
148
+
149
+ - Add timeTravel APIs and add timeTravel feature to studio ([#10361](https://github.com/mastra-ai/mastra/pull/10361))
150
+
151
+ ## 1.0.0-beta.3
152
+
153
+ ### Patch Changes
154
+
155
+ - fix: detect bun runtime and cleanup on failure ([#10242](https://github.com/mastra-ai/mastra/pull/10242))
156
+
157
+ ## 1.0.0-beta.2
158
+
159
+ ### Patch Changes
160
+
161
+ - dependencies updates: ([#10111](https://github.com/mastra-ai/mastra/pull/10111))
162
+ - Updated dependency [`pino@^10.1.0` ↗︎](https://www.npmjs.com/package/pino/v/10.1.0) (from `^9.7.0`, in `dependencies`)
163
+
164
+ - dependencies updates: ([#9781](https://github.com/mastra-ai/mastra/pull/9781))
165
+ - Updated dependency [`posthog-node@^5.11.2` ↗︎](https://www.npmjs.com/package/posthog-node/v/5.11.2) (from `^4.18.0`, in `dependencies`)
166
+
167
+ - Fix scorer filtering for SpanScoring, add error and info message for user ([#10160](https://github.com/mastra-ai/mastra/pull/10160))
168
+
169
+ - Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
170
+
171
+ ## 1.0.0-beta.1
172
+
173
+ ### Patch Changes
174
+
175
+ - Make MainSidebar toggle button sticky to bottom, always visible ([#9682](https://github.com/mastra-ai/mastra/pull/9682))
176
+
177
+ ## 1.0.0-beta.0
178
+
179
+ ### Major Changes
180
+
181
+ - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
182
+
183
+ - Removed old tracing code based on OpenTelemetry ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
184
+
185
+ - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
186
+
187
+ ### Patch Changes
188
+
189
+ - Update MainSidebar component to fit required changes in Cloud CTA link ([#9318](https://github.com/mastra-ai/mastra/pull/9318))
190
+
191
+ ## 0.17.3
192
+
193
+ ## 0.17.3-alpha.0
194
+
195
+ ## 0.17.2
196
+
197
+ ## 0.17.2-alpha.0
198
+
199
+ ## 0.17.1
200
+
201
+ ### Patch Changes
202
+
203
+ - Add scorers to the default weather agent in the create command. ([#9042](https://github.com/mastra-ai/mastra/pull/9042))
204
+
205
+ - Fix tool result in playground ([#9087](https://github.com/mastra-ai/mastra/pull/9087))
206
+
207
+ ## 0.17.1-alpha.1
208
+
209
+ ### Patch Changes
210
+
211
+ - Add scorers to the default weather agent in the create command. ([#9042](https://github.com/mastra-ai/mastra/pull/9042))
212
+
213
+ - Fix tool result in playground ([#9087](https://github.com/mastra-ai/mastra/pull/9087))
214
+
215
+ ## 0.17.1-alpha.0
216
+
217
+ ## 0.17.0
218
+
219
+ ### Patch Changes
220
+
221
+ - Pin `@rollup/*` dependencies to fixed versions (instead of using `^`) to: ([#8900](https://github.com/mastra-ai/mastra/pull/8900))
222
+ - Hotfix a bug inside `@rollup/plugin-commonjs`
223
+ - Have more control over the versions in the future to not have breakages over night
224
+
225
+ ## 0.17.0-alpha.0
226
+
227
+ ### Patch Changes
228
+
229
+ - Pin `@rollup/*` dependencies to fixed versions (instead of using `^`) to: ([#8900](https://github.com/mastra-ai/mastra/pull/8900))
230
+ - Hotfix a bug inside `@rollup/plugin-commonjs`
231
+ - Have more control over the versions in the future to not have breakages over night
232
+
233
+ ## 0.16.0
234
+
235
+ ### Patch Changes
236
+
237
+ - Use model-router in create-mastra starter template ([#8631](https://github.com/mastra-ai/mastra/pull/8631))
238
+
239
+ - Fix auto tab for model picker in playground-ui, the UI no longer auto tabs to the next selector when selecting a model/provider. ([#8680](https://github.com/mastra-ai/mastra/pull/8680))
240
+
241
+ - Create unified Sidebar component to use on Playground and Cloud ([#8655](https://github.com/mastra-ai/mastra/pull/8655))
242
+
243
+ - Adds reset button to model picker to reset to original model set on the agent. ([#8633](https://github.com/mastra-ai/mastra/pull/8633))
244
+
245
+ - Use only zod validation in dynamic form ([#8802](https://github.com/mastra-ai/mastra/pull/8802))
246
+
247
+ - Add div wrapper around entity tables to fix table vertical position ([#8758](https://github.com/mastra-ai/mastra/pull/8758))
248
+
249
+ - Customize AITraces type to seamlessly work on Cloud too ([#8759](https://github.com/mastra-ai/mastra/pull/8759))
250
+
251
+ - Refactor EntryList component and Scorer and Observability pages ([#8652](https://github.com/mastra-ai/mastra/pull/8652))
252
+
253
+ - Stream finalResult from network loop ([#8795](https://github.com/mastra-ai/mastra/pull/8795))
254
+
255
+ - Improve README ([#8819](https://github.com/mastra-ai/mastra/pull/8819))
256
+
257
+ ## 0.16.0-alpha.1
258
+
259
+ ### Patch Changes
260
+
261
+ - Fix auto tab for model picker in playground-ui, the UI no longer auto tabs to the next selector when selecting a model/provider. ([#8680](https://github.com/mastra-ai/mastra/pull/8680))
262
+
263
+ - Create unified Sidebar component to use on Playground and Cloud ([#8655](https://github.com/mastra-ai/mastra/pull/8655))
264
+
265
+ - Use only zod validation in dynamic form ([#8802](https://github.com/mastra-ai/mastra/pull/8802))
266
+
267
+ - Add div wrapper around entity tables to fix table vertical position ([#8758](https://github.com/mastra-ai/mastra/pull/8758))
268
+
269
+ - Customize AITraces type to seamlessly work on Cloud too ([#8759](https://github.com/mastra-ai/mastra/pull/8759))
270
+
271
+ - Stream finalResult from network loop ([#8795](https://github.com/mastra-ai/mastra/pull/8795))
272
+
273
+ - Improve README ([#8819](https://github.com/mastra-ai/mastra/pull/8819))
274
+
275
+ ## 0.15.2-alpha.0
276
+
277
+ ### Patch Changes
278
+
279
+ - Use model-router in create-mastra starter template ([#8631](https://github.com/mastra-ai/mastra/pull/8631))
280
+
281
+ - Adds reset button to model picker to reset to original model set on the agent. ([#8633](https://github.com/mastra-ai/mastra/pull/8633))
282
+
283
+ - Refactor EntryList component and Scorer and Observability pages ([#8652](https://github.com/mastra-ai/mastra/pull/8652))
284
+
285
+ ## 0.15.1
286
+
287
+ ### Patch Changes
288
+
289
+ - Improve the overall flow of the `create-mastra` CLI by first asking all questions and then creating the project structure. If you skip entering an API key during the wizard, the `your-api-key` placeholder will now be added to an `.env.example` file instead of `.env`. ([#8603](https://github.com/mastra-ai/mastra/pull/8603))
290
+
291
+ ## 0.15.1-alpha.1
292
+
293
+ ## 0.15.1-alpha.0
294
+
295
+ ### Patch Changes
296
+
297
+ - Improve the overall flow of the `create-mastra` CLI by first asking all questions and then creating the project structure. If you skip entering an API key during the wizard, the `your-api-key` placeholder will now be added to an `.env.example` file instead of `.env`. ([#8603](https://github.com/mastra-ai/mastra/pull/8603))
298
+
299
+ ## 0.15.0
300
+
301
+ ### Patch Changes
302
+
303
+ - Mutable shared workflow run state ([#8545](https://github.com/mastra-ai/mastra/pull/8545))
304
+
305
+ - streamLegacy/generateLegacy clarification in playground ([#8468](https://github.com/mastra-ai/mastra/pull/8468))
306
+
307
+ - avoid refetching memory threads and messages on window focus ([#8519](https://github.com/mastra-ai/mastra/pull/8519))
308
+
309
+ - add tripwire reason in playground ([#8568](https://github.com/mastra-ai/mastra/pull/8568))
310
+
311
+ - Save waiting step status in snapshot ([#8576](https://github.com/mastra-ai/mastra/pull/8576))
312
+
313
+ - Added AI SDK provider packages to model router for anthropic/google/openai/openrouter/xai ([#8559](https://github.com/mastra-ai/mastra/pull/8559))
314
+
315
+ - Convert WorkflowWatchResult to WorkflowResult in workflow graph ([#8541](https://github.com/mastra-ai/mastra/pull/8541))
316
+
317
+ - Fixed an issue where model router was adding /chat/completions to API urls when it shouldn't. ([#8589](https://github.com/mastra-ai/mastra/pull/8589))
318
+ fixed an issue with provider ID rendering in playground UI
319
+
320
+ - Fix useStreamWorkflow unmounting breaking stream call ([#8449](https://github.com/mastra-ai/mastra/pull/8449))
321
+
322
+ ## 0.15.0-alpha.3
323
+
324
+ ### Patch Changes
325
+
326
+ - Fixed an issue where model router was adding /chat/completions to API urls when it shouldn't. ([#8589](https://github.com/mastra-ai/mastra/pull/8589))
327
+ fixed an issue with provider ID rendering in playground UI
328
+
329
+ ## 0.14.2-alpha.2
330
+
331
+ ### Patch Changes
332
+
333
+ - Added AI SDK provider packages to model router for anthropic/google/openai/openrouter/xai ([#8559](https://github.com/mastra-ai/mastra/pull/8559))
334
+
335
+ ## 0.14.2-alpha.1
336
+
337
+ ### Patch Changes
338
+
339
+ - Mutable shared workflow run state ([#8545](https://github.com/mastra-ai/mastra/pull/8545))
340
+
341
+ - avoid refetching memory threads and messages on window focus ([#8519](https://github.com/mastra-ai/mastra/pull/8519))
342
+
343
+ - add tripwire reason in playground ([#8568](https://github.com/mastra-ai/mastra/pull/8568))
344
+
345
+ - Save waiting step status in snapshot ([#8576](https://github.com/mastra-ai/mastra/pull/8576))
346
+
347
+ - Convert WorkflowWatchResult to WorkflowResult in workflow graph ([#8541](https://github.com/mastra-ai/mastra/pull/8541))
348
+
349
+ ## 0.14.2-alpha.0
350
+
351
+ ### Patch Changes
352
+
353
+ - streamLegacy/generateLegacy clarification in playground ([#8468](https://github.com/mastra-ai/mastra/pull/8468))
354
+
355
+ - Fix useStreamWorkflow unmounting breaking stream call ([#8449](https://github.com/mastra-ai/mastra/pull/8449))
356
+
357
+ ## 0.14.1
358
+
359
+ ### Patch Changes
360
+
361
+ - Make init versions latest pkgs ([#8434](https://github.com/mastra-ai/mastra/pull/8434))
362
+
363
+ ## 0.14.1-alpha.0
364
+
365
+ ### Patch Changes
366
+
367
+ - Make init versions latest pkgs ([#8434](https://github.com/mastra-ai/mastra/pull/8434))
368
+
369
+ ## 0.14.0
370
+
371
+ ### Minor Changes
372
+
373
+ - Breaking change to move the agent.streamVNext/generateVNext implementation to the default stream/generate. The old stream/generate have now been moved to streamLegacy and generateLegacy ([#8097](https://github.com/mastra-ai/mastra/pull/8097))
374
+
375
+ ### Patch Changes
376
+
377
+ - Remove log drains UI from the playground ([#8379](https://github.com/mastra-ai/mastra/pull/8379))
378
+
379
+ - add refetch interval to traces to make it feel "instant" ([#8386](https://github.com/mastra-ai/mastra/pull/8386))
380
+
381
+ - better memory message ([#8382](https://github.com/mastra-ai/mastra/pull/8382))
382
+
383
+ - fix codeblock line number color contrast for legacy traces ([#8385](https://github.com/mastra-ai/mastra/pull/8385))
384
+
385
+ - Model router documentation and playground UI improvements ([#8372](https://github.com/mastra-ai/mastra/pull/8372))
386
+
387
+ **Documentation generation (`@mastra/core`):**
388
+ - Fixed inverted dynamic model selection logic in provider examples
389
+ - Improved copy: replaced marketing language with action-oriented descriptions
390
+ - Added generated file comments with timestamps to all MDX outputs so maintainers know not to directly edit generated files
391
+
392
+ **Playground UI model picker (`@mastra/playground-ui`):**
393
+ - Fixed provider field clearing when typing in model input
394
+ - Added responsive layout (stacks on mobile, side-by-side on desktop)
395
+ - Improved general styling of provider/model pickers
396
+
397
+ **Environment variables (`@mastra/deployer`):**
398
+ - Properly handle array of env vars (e.g., NETLIFY_TOKEN, NETLIFY_SITE_ID)
399
+ - Added correct singular/plural handling for "environment variable(s)"
400
+
401
+ - show thread list in desc order ([#8381](https://github.com/mastra-ai/mastra/pull/8381))
402
+
403
+ - Fix an issue preventing showing working memory and semantic recall in the playground ([#8358](https://github.com/mastra-ai/mastra/pull/8358))
404
+
405
+ - Add observe strean to get streans after workflow has been interrupted ([#8318](https://github.com/mastra-ai/mastra/pull/8318))
406
+
407
+ ## 0.14.0-alpha.0
408
+
409
+ ### Minor Changes
410
+
411
+ - Breaking change to move the agent.streamVNext/generateVNext implementation to the default stream/generate. The old stream/generate have now been moved to streamLegacy and generateLegacy ([#8097](https://github.com/mastra-ai/mastra/pull/8097))
412
+
413
+ ### Patch Changes
414
+
415
+ - Remove log drains UI from the playground ([#8379](https://github.com/mastra-ai/mastra/pull/8379))
416
+
417
+ - add refetch interval to traces to make it feel "instant" ([#8386](https://github.com/mastra-ai/mastra/pull/8386))
418
+
419
+ - better memory message ([#8382](https://github.com/mastra-ai/mastra/pull/8382))
420
+
421
+ - fix codeblock line number color contrast for legacy traces ([#8385](https://github.com/mastra-ai/mastra/pull/8385))
422
+
423
+ - Model router documentation and playground UI improvements ([#8372](https://github.com/mastra-ai/mastra/pull/8372))
424
+
425
+ **Documentation generation (`@mastra/core`):**
426
+ - Fixed inverted dynamic model selection logic in provider examples
427
+ - Improved copy: replaced marketing language with action-oriented descriptions
428
+ - Added generated file comments with timestamps to all MDX outputs so maintainers know not to directly edit generated files
429
+
430
+ **Playground UI model picker (`@mastra/playground-ui`):**
431
+ - Fixed provider field clearing when typing in model input
432
+ - Added responsive layout (stacks on mobile, side-by-side on desktop)
433
+ - Improved general styling of provider/model pickers
434
+
435
+ **Environment variables (`@mastra/deployer`):**
436
+ - Properly handle array of env vars (e.g., NETLIFY_TOKEN, NETLIFY_SITE_ID)
437
+ - Added correct singular/plural handling for "environment variable(s)"
438
+
439
+ - show thread list in desc order ([#8381](https://github.com/mastra-ai/mastra/pull/8381))
440
+
441
+ - Fix an issue preventing showing working memory and semantic recall in the playground ([#8358](https://github.com/mastra-ai/mastra/pull/8358))
442
+
443
+ - Add observe strean to get streans after workflow has been interrupted ([#8318](https://github.com/mastra-ai/mastra/pull/8318))
444
+
445
+ ## 0.13.4
446
+
447
+ ### Patch Changes
448
+
449
+ - disable network label when memory is not enabled OR the agent has no subagents ([#8341](https://github.com/mastra-ai/mastra/pull/8341))
450
+
451
+ - Added Mastra model router to Playground UI ([#8332](https://github.com/mastra-ai/mastra/pull/8332))
452
+
453
+ ## 0.13.4-alpha.1
454
+
455
+ ### Patch Changes
456
+
457
+ - disable network label when memory is not enabled OR the agent has no subagents ([#8341](https://github.com/mastra-ai/mastra/pull/8341))
458
+
459
+ ## 0.13.4-alpha.0
460
+
461
+ ### Patch Changes
462
+
463
+ - Added Mastra model router to Playground UI ([#8332](https://github.com/mastra-ai/mastra/pull/8332))
464
+
465
+ ## 0.13.3
466
+
467
+ ### Patch Changes
468
+
469
+ - Fixed an issue in playground where text-start/end parts were ignored in handleStreamChunk and tool ordering vs text wasn't retained ([#8234](https://github.com/mastra-ai/mastra/pull/8234))
470
+
471
+ - Add conditional chaining to scorer.agentNames return ([#8199](https://github.com/mastra-ai/mastra/pull/8199))
472
+
473
+ - Show model that worked when there are model fallbacks ([#8167](https://github.com/mastra-ai/mastra/pull/8167))
474
+
475
+ - Add types in the streamVNext codepath, fixes for various issues across multiple packages surfaced from type issues, align return types. ([#8010](https://github.com/mastra-ai/mastra/pull/8010))
476
+
477
+ - Add model fallbacks to playground ([#7427](https://github.com/mastra-ai/mastra/pull/7427))
478
+
479
+ ## 0.13.3-alpha.1
480
+
481
+ ### Patch Changes
482
+
483
+ - Fixed an issue in playground where text-start/end parts were ignored in handleStreamChunk and tool ordering vs text wasn't retained ([#8234](https://github.com/mastra-ai/mastra/pull/8234))
484
+
485
+ - Add conditional chaining to scorer.agentNames return ([#8199](https://github.com/mastra-ai/mastra/pull/8199))
486
+
487
+ - Show model that worked when there are model fallbacks ([#8167](https://github.com/mastra-ai/mastra/pull/8167))
488
+
489
+ ## 0.13.3-alpha.0
490
+
491
+ ### Patch Changes
492
+
493
+ - Add types in the streamVNext codepath, fixes for various issues across multiple packages surfaced from type issues, align return types. ([#8010](https://github.com/mastra-ai/mastra/pull/8010))
494
+
495
+ - Add model fallbacks to playground ([#7427](https://github.com/mastra-ai/mastra/pull/7427))
496
+
497
+ ## 0.13.2
498
+
499
+ ### Patch Changes
500
+
501
+ - dependencies updates: ([#8007](https://github.com/mastra-ai/mastra/pull/8007))
502
+ - Updated dependency [`fs-extra@^11.3.2` ↗︎](https://www.npmjs.com/package/fs-extra/v/11.3.2) (from `^11.3.1`, in `dependencies`)
503
+
504
+ - Add model fallback handlers and apis ([#7378](https://github.com/mastra-ai/mastra/pull/7378))
505
+
506
+ - Fix DateTimePicker style issue ([#8106](https://github.com/mastra-ai/mastra/pull/8106))
507
+
508
+ - Fix getting tool link path from agent in playground ui tools page ([#8135](https://github.com/mastra-ai/mastra/pull/8135))
509
+
510
+ ## 0.13.2-alpha.4
511
+
512
+ ### Patch Changes
513
+
514
+ - Fix getting tool link path from agent in playground ui tools page ([#8135](https://github.com/mastra-ai/mastra/pull/8135))
515
+
516
+ ## 0.13.2-alpha.3
517
+
518
+ ### Patch Changes
519
+
520
+ - Add model fallback handlers and apis ([#7378](https://github.com/mastra-ai/mastra/pull/7378))
521
+
522
+ - Fix DateTimePicker style issue ([#8106](https://github.com/mastra-ai/mastra/pull/8106))
523
+
524
+ ## 0.13.2-alpha.2
525
+
526
+ ## 0.13.2-alpha.1
527
+
528
+ ### Patch Changes
529
+
530
+ - dependencies updates: ([#8007](https://github.com/mastra-ai/mastra/pull/8007))
531
+ - Updated dependency [`fs-extra@^11.3.2` ↗︎](https://www.npmjs.com/package/fs-extra/v/11.3.2) (from `^11.3.1`, in `dependencies`)
532
+
533
+ ## 0.13.2-alpha.0
534
+
535
+ ## 0.13.1
536
+
537
+ ## 0.13.1-alpha.0
538
+
539
+ ## 0.13.0
540
+
541
+ ### Patch Changes
542
+
543
+ - clean up console logs in monorepo ([#7926](https://github.com/mastra-ai/mastra/pull/7926))
544
+
545
+ - Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
546
+
547
+ - fix minor playground stuff for observability ([#7765](https://github.com/mastra-ai/mastra/pull/7765))
548
+
549
+ - Handle zod intersections in dynamic form ([#7768](https://github.com/mastra-ai/mastra/pull/7768))
550
+
551
+ - Playground ui -pass runtimeContext to client SDK get methods ([#7767](https://github.com/mastra-ai/mastra/pull/7767))
552
+
553
+ ## 0.13.0-alpha.5
554
+
555
+ ## 0.13.0-alpha.4
556
+
557
+ ### Patch Changes
558
+
559
+ - clean up console logs in monorepo ([#7926](https://github.com/mastra-ai/mastra/pull/7926))
560
+
561
+ ## 0.13.0-alpha.3
562
+
563
+ ## 0.13.0-alpha.2
564
+
565
+ ## 0.13.0-alpha.1
566
+
567
+ ### Patch Changes
568
+
569
+ - Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
570
+
571
+ ## 0.12.4-alpha.0
572
+
573
+ ### Patch Changes
574
+
575
+ - fix minor playground stuff for observability ([#7765](https://github.com/mastra-ai/mastra/pull/7765))
576
+
577
+ - Handle zod intersections in dynamic form ([#7768](https://github.com/mastra-ai/mastra/pull/7768))
578
+
579
+ - Playground ui -pass runtimeContext to client SDK get methods ([#7767](https://github.com/mastra-ai/mastra/pull/7767))
580
+
581
+ ## 0.12.3
582
+
583
+ ### Patch Changes
584
+
585
+ - Client SDK Agents, Mastra server - support runtimeContext with GET requests ([#7734](https://github.com/mastra-ai/mastra/pull/7734))
586
+
587
+ ## 0.12.3-alpha.1
588
+
589
+ ### Patch Changes
590
+
591
+ - Client SDK Agents, Mastra server - support runtimeContext with GET requests ([#7734](https://github.com/mastra-ai/mastra/pull/7734))
592
+
593
+ ## 0.12.3-alpha.0
594
+
595
+ ## 0.12.2
596
+
597
+ ## 0.12.2-alpha.0
598
+
599
+ ## 0.12.1
600
+
601
+ ### Patch Changes
602
+
603
+ - dependencies updates: ([#7544](https://github.com/mastra-ai/mastra/pull/7544))
604
+ - Updated dependency [`fs-extra@^11.3.1` ↗︎](https://www.npmjs.com/package/fs-extra/v/11.3.1) (from `^11.3.0`, in `dependencies`)
605
+
606
+ - add workflow streaming in agent thread ([#7506](https://github.com/mastra-ai/mastra/pull/7506))
607
+
608
+ - Fix template slug when getting template environment variables ([#7650](https://github.com/mastra-ai/mastra/pull/7650))
609
+
610
+ - Update cli dev copy from "Local" - ([#7579](https://github.com/mastra-ai/mastra/pull/7579))
611
+
612
+ ## 0.12.1-alpha.2
613
+
614
+ ### Patch Changes
615
+
616
+ - Fix template slug when getting template environment variables ([#7650](https://github.com/mastra-ai/mastra/pull/7650))
617
+
618
+ ## 0.12.1-alpha.1
619
+
620
+ ### Patch Changes
621
+
622
+ - add workflow streaming in agent thread ([#7506](https://github.com/mastra-ai/mastra/pull/7506))
623
+
624
+ ## 0.12.1-alpha.0
625
+
626
+ ### Patch Changes
627
+
628
+ - dependencies updates: ([#7544](https://github.com/mastra-ai/mastra/pull/7544))
629
+ - Updated dependency [`fs-extra@^11.3.1` ↗︎](https://www.npmjs.com/package/fs-extra/v/11.3.1) (from `^11.3.0`, in `dependencies`)
630
+
631
+ - Update cli dev copy from "Local" - ([#7579](https://github.com/mastra-ai/mastra/pull/7579))
632
+
633
+ ## 0.12.0
634
+
635
+ ### Minor Changes
636
+
637
+ - a01cf14: Add workflow graph in agent (workflow as tool in agent)
638
+
639
+ ### Patch Changes
640
+
641
+ - 788e612: Fix playground workflow graph is broken when workflow starts with a branch
642
+ - 5397eb4: Add public URL support when adding files in Multi Modal
643
+
644
+ ## 0.12.0-alpha.1
645
+
646
+ ## 0.12.0-alpha.0
647
+
648
+ ### Minor Changes
649
+
650
+ - a01cf14: Add workflow graph in agent (workflow as tool in agent)
651
+
652
+ ### Patch Changes
653
+
654
+ - 788e612: Fix playground workflow graph is broken when workflow starts with a branch
655
+ - 5397eb4: Add public URL support when adding files in Multi Modal
656
+
657
+ ## 0.11.3
658
+
659
+ ### Patch Changes
660
+
661
+ - 64152fd: Improve output of Cli Dev command
662
+ - de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
663
+ - 8e4fe90: Unify focus outlines
664
+ - f539199: mastra start - load env files, custom env. Deperecate --env flag for mastra build
665
+ - 87de958: fix chat outline
666
+ - 6f715fe: Fix plyground baseUrl, default api baseUrl to playground baseUrl
667
+ - 01264f1: Mastra dev- load env vars before watch
668
+ - 3308c9f: fix dev:playground command
669
+ - d99baf6: change outline
670
+
671
+ ## 0.11.3-alpha.4
672
+
673
+ ### Patch Changes
674
+
675
+ - [#7357](https://github.com/mastra-ai/mastra/pull/7357) [`01264f1`](https://github.com/mastra-ai/mastra/commit/01264f1280db040d1bd1ac9b8d29cfcaac3d6cbc) Thanks [@TheIsrael1](https://github.com/TheIsrael1)! - Mastra dev- load env vars before watch
676
+
677
+ ## 0.11.3-alpha.3
678
+
679
+ ### Patch Changes
680
+
681
+ - [#7343](https://github.com/mastra-ai/mastra/pull/7343) [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e) Thanks [@LekoArts](https://github.com/LekoArts)! - Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
682
+
683
+ ## 0.11.3-alpha.2
684
+
685
+ ### Patch Changes
686
+
687
+ - [#7218](https://github.com/mastra-ai/mastra/pull/7218) [`f539199`](https://github.com/mastra-ai/mastra/commit/f53919950a9320b292732e0cfcdf61cdae6c8742) Thanks [@TheIsrael1](https://github.com/TheIsrael1)! - mastra start - load env files, custom env. Deperecate --env flag for mastra build
688
+
689
+ ## 0.11.3-alpha.1
690
+
691
+ ### Patch Changes
692
+
693
+ - [#7210](https://github.com/mastra-ai/mastra/pull/7210) [`87de958`](https://github.com/mastra-ai/mastra/commit/87de95832a7bdfa9ecb14473c84dc874331f1a7d) Thanks [@mfrachet](https://github.com/mfrachet)! - fix chat outline
694
+
695
+ ## 0.11.3-alpha.0
696
+
697
+ ### Patch Changes
698
+
699
+ - [#7046](https://github.com/mastra-ai/mastra/pull/7046) [`64152fd`](https://github.com/mastra-ai/mastra/commit/64152fd4e8f8c76612b82a2e4981ee09b22674d7) Thanks [@adeleke5140](https://github.com/adeleke5140)! - Improve output of Cli Dev command
700
+
701
+ - [#7076](https://github.com/mastra-ai/mastra/pull/7076) [`8e4fe90`](https://github.com/mastra-ai/mastra/commit/8e4fe90605ee4dfcfd911a7f07e1355fe49205ba) Thanks [@mfrachet](https://github.com/mfrachet)! - Unify focus outlines
702
+
703
+ - [#7115](https://github.com/mastra-ai/mastra/pull/7115) [`6f715fe`](https://github.com/mastra-ai/mastra/commit/6f715fe524296e1138a319e56bcf8e4214bd5dd5) Thanks [@TheIsrael1](https://github.com/TheIsrael1)! - Fix plyground baseUrl, default api baseUrl to playground baseUrl
704
+
705
+ - [#7044](https://github.com/mastra-ai/mastra/pull/7044) [`3308c9f`](https://github.com/mastra-ai/mastra/commit/3308c9ff1da7594925d193a825f33da2880fb9c1) Thanks [@mfrachet](https://github.com/mfrachet)! - fix dev:playground command
706
+
707
+ - [#7101](https://github.com/mastra-ai/mastra/pull/7101) [`d99baf6`](https://github.com/mastra-ai/mastra/commit/d99baf6e69bbf83e9a286fbd18c47543de12cb58) Thanks [@mfrachet](https://github.com/mfrachet)! - change outline
708
+
709
+ ## 0.11.2
710
+
711
+ ### Patch Changes
712
+
713
+ - [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
714
+
715
+ ## 0.11.1
716
+
717
+ ### Patch Changes
718
+
719
+ - [#6948](https://github.com/mastra-ai/mastra/pull/6948) [`a8070e6`](https://github.com/mastra-ai/mastra/commit/a8070e63ab384ae14a214faaf8634c53b7064bc3) Thanks [@taofeeq-deru](https://github.com/taofeeq-deru)! - Preserve run state in workflows after viewing traces
720
+
721
+ ## 0.11.0-alpha.3
722
+
723
+ ## 0.10.24-alpha.2
724
+
725
+ ## 0.10.24-alpha.1
726
+
727
+ ## 0.10.24-alpha.0
728
+
729
+ ### Patch Changes
730
+
731
+ - [#6948](https://github.com/mastra-ai/mastra/pull/6948) [`a8070e6`](https://github.com/mastra-ai/mastra/commit/a8070e63ab384ae14a214faaf8634c53b7064bc3) Thanks [@taofeeq-deru](https://github.com/taofeeq-deru)! - Preserve run state in workflows after viewing traces
732
+
733
+ ## 0.10.23
734
+
735
+ ## 0.10.23-alpha.0
736
+
737
+ ## 0.10.22
738
+
739
+ ### Patch Changes
740
+
741
+ - 8f8409a: Inject analytics instance into create cmd
742
+ - 97c1d5e: Add new `scorers` subcommand for managing scorers.
743
+ Refactor cli to be more modular.
744
+ - 6313063: Implement model switcher in playground
745
+ - 36928f0: Use right icon for anthropic in model switcher
746
+
747
+ ## 0.10.22-alpha.6
748
+
749
+ ## 0.10.22-alpha.5
750
+
751
+ ## 0.10.22-alpha.4
752
+
753
+ ## 0.10.22-alpha.3
754
+
755
+ ## 0.10.22-alpha.2
756
+
757
+ ### Patch Changes
758
+
759
+ - 36928f0: Use right icon for anthropic in model switcher
760
+
761
+ ## 0.10.22-alpha.1
762
+
763
+ ### Patch Changes
764
+
765
+ - 8f8409a: Inject analytics instance into create cmd
766
+ - 6313063: Implement model switcher in playground
767
+
768
+ ## 0.10.22-alpha.0
769
+
770
+ ### Patch Changes
771
+
772
+ - 97c1d5e: Add new `scorers` subcommand for managing scorers.
773
+ Refactor cli to be more modular.
774
+
775
+ ## 0.10.21
776
+
777
+ ### Patch Changes
778
+
779
+ - 77b6cfe: Use just modelId for gpt-5 check
780
+ - 96169cc: Create handler that returns providers user has keys for in their env
781
+ - 33da97c: Set temperature to 1 for gpt-5 model in playground
782
+ - c6d2603: Properly set baseUrl in playground when user sets the host or port in Mastra instance.
783
+ - 7aad750: Fix tool ui showing after message when chat is refreshed
784
+ - ce04175: Add update agent model handler
785
+
786
+ ## 0.10.21-alpha.2
787
+
788
+ ### Patch Changes
789
+
790
+ - 77b6cfe: Use just modelId for gpt-5 check
791
+ - 96169cc: Create handler that returns providers user has keys for in their env
792
+ - 33da97c: Set temperature to 1 for gpt-5 model in playground
793
+ - c6d2603: Properly set baseUrl in playground when user sets the host or port in Mastra instance.
794
+ - ce04175: Add update agent model handler
795
+
796
+ ## 0.10.21-alpha.1
797
+
798
+ ## 0.10.21-alpha.0
799
+
800
+ ### Patch Changes
801
+
802
+ - 7aad750: Fix tool ui showing after message when chat is refreshed
803
+
804
+ ## 0.10.20
805
+
806
+ ## 0.10.20-alpha.0
807
+
808
+ ## 0.10.19
809
+
810
+ ## 0.10.19-alpha.2
811
+
812
+ ## 0.10.19-alpha.1
813
+
814
+ ## 0.10.19-alpha.0
815
+
816
+ ## 0.10.15
817
+
818
+ ### Patch Changes
819
+
820
+ - ad04455: Missed changeset in last release, needed to include create-mastra
821
+
822
+ ## 0.10.15-alpha.0
823
+
824
+ ### Patch Changes
825
+
826
+ - ad04455: Missed changeset in last release, needed to include create-mastra
827
+
828
+ ## 0.10.14
829
+
830
+ ### Patch Changes
831
+
832
+ - f442224: speech to text using voice config
833
+ - d8dec5e: add a cta to invite to deploy to cloud
834
+ - 6336993: Fix workflow input form overflow
835
+ - 89d2f4e: add TTS to the playground
836
+
837
+ ## 0.10.14-alpha.1
838
+
839
+ ### Patch Changes
840
+
841
+ - 6336993: Fix workflow input form overflow
842
+
843
+ ## 0.10.14-alpha.0
844
+
845
+ ### Patch Changes
846
+
847
+ - f442224: speech to text using voice config
848
+ - d8dec5e: add a cta to invite to deploy to cloud
849
+ - 89d2f4e: add TTS to the playground
850
+
851
+ ## 0.10.13
852
+
853
+ ### Patch Changes
854
+
855
+ - dd2a4c9: change the way we start the dev process of playground
856
+ - af1f902: share thread list between agent, network and cloud
857
+ - 8f89bcd: fix traces pagination + sharing trace view with cloud
858
+ - 0bf0bc8: fix link in shared components + add e2e tests
859
+ - 2affc57: Fix output type of network loop
860
+ - f6c4d75: fix date picker on change
861
+ - 59f0dcd: Add light background color for step statuses
862
+ - 698518b: Allow external templates from github
863
+ - cf8d497: factorize tabs component between cloud and core
864
+ - 7827943: Handle streaming large data
865
+ - 808b493: wrap runtime context with tooltip provider for usage in cloud
866
+ - 09464dd: Share AgentMetadata component with cloud
867
+ - 80692d5: refactor: sharing only the UI and not data fetching for traces
868
+
869
+ ## 0.10.13-alpha.2
870
+
871
+ ### Patch Changes
872
+
873
+ - dd2a4c9: change the way we start the dev process of playground
874
+ - af1f902: share thread list between agent, network and cloud
875
+ - 2affc57: Fix output type of network loop
876
+ - f6c4d75: fix date picker on change
877
+ - 698518b: Allow external templates from github
878
+ - 09464dd: Share AgentMetadata component with cloud
879
+
880
+ ## 0.10.13-alpha.1
881
+
882
+ ### Patch Changes
883
+
884
+ - 8f89bcd: fix traces pagination + sharing trace view with cloud
885
+ - 59f0dcd: Add light background color for step statuses
886
+ - cf8d497: factorize tabs component between cloud and core
887
+ - 80692d5: refactor: sharing only the UI and not data fetching for traces
888
+
889
+ ## 0.10.13-alpha.0
890
+
891
+ ### Patch Changes
892
+
893
+ - 0bf0bc8: fix link in shared components + add e2e tests
894
+ - 7827943: Handle streaming large data
895
+ - 808b493: wrap runtime context with tooltip provider for usage in cloud
896
+
897
+ ## 0.10.12
898
+
899
+ ### Patch Changes
900
+
901
+ - 984887a: dependencies updates:
902
+ - Updated dependency [`prettier@^3.6.2` ↗︎](https://www.npmjs.com/package/prettier/v/3.6.2) (from `^3.5.3`, in `dependencies`)
903
+ - 593631d: allow to pass ref to the link abstraction
904
+ - 5237998: Fix foreach output
905
+ - 1aa60b1: Pipe runtimeContext to vNext network agent stream and generate steps, wire up runtimeContext for vNext Networks in cliet SDK & playground
906
+ - d49334d: export tool list for usage in cloud
907
+ - 9cdfcb5: fix infinite rerenders on agents table + share runtime context for cloud
908
+ - 794d9f3: Fix thread creation in playground
909
+ - aa9528a: Display reasoning in playground
910
+ - 45174f3: share network list between core and cloud
911
+ - 48f5532: export workflow list for usage in cloud
912
+ - e1d0080: abstract Link component between cloud and core
913
+ - f9b1508: add the same agent table as in cloud and export it from the playground
914
+ - dfbeec6: Fix navigation to vnext AgentNetwork agents
915
+
916
+ ## 0.10.12-alpha.2
917
+
918
+ ### Patch Changes
919
+
920
+ - 794d9f3: Fix thread creation in playground
921
+ - dfbeec6: Fix navigation to vnext AgentNetwork agents
922
+
923
+ ## 0.10.12-alpha.1
924
+
925
+ ### Patch Changes
926
+
927
+ - d49334d: export tool list for usage in cloud
928
+ - 9cdfcb5: fix infinite rerenders on agents table + share runtime context for cloud
929
+ - 45174f3: share network list between core and cloud
930
+ - 48f5532: export workflow list for usage in cloud
931
+
932
+ ## 0.10.12-alpha.0
933
+
934
+ ### Patch Changes
935
+
936
+ - 984887a: dependencies updates:
937
+ - Updated dependency [`prettier@^3.6.2` ↗︎](https://www.npmjs.com/package/prettier/v/3.6.2) (from `^3.5.3`, in `dependencies`)
938
+ - 593631d: allow to pass ref to the link abstraction
939
+ - 5237998: Fix foreach output
940
+ - 1aa60b1: Pipe runtimeContext to vNext network agent stream and generate steps, wire up runtimeContext for vNext Networks in cliet SDK & playground
941
+ - aa9528a: Display reasoning in playground
942
+ - e1d0080: abstract Link component between cloud and core
943
+ - f9b1508: add the same agent table as in cloud and export it from the playground
944
+
945
+ ## 0.10.11
946
+
947
+ ### Patch Changes
948
+
949
+ - 640f47e: move agent model settings into agent settings
950
+
951
+ ## 0.10.11-alpha.0
952
+
953
+ ### Patch Changes
954
+
955
+ - 640f47e: move agent model settings into agent settings
956
+
957
+ ## 0.10.10
958
+
959
+ ### Patch Changes
960
+
961
+ - af9e40e: Map log level number to string value
962
+ - f457d86: reset localstorage when resetting model settings
963
+ - 8722d53: Fix multi modal remaining steps
964
+ - 4219597: add JSON input close to form input
965
+ - b790fd1: Use SerializedStepFlowEntry in playground
966
+ - a7a836a: Highlight send event button
967
+ - 18ca936: Update rollup config for create-mastra
968
+
969
+ ## 0.10.10-alpha.3
970
+
971
+ ### Patch Changes
972
+
973
+ - f457d86: reset localstorage when resetting model settings
974
+ - 8722d53: Fix multi modal remaining steps
975
+
976
+ ## 0.10.10-alpha.2
977
+
978
+ ### Patch Changes
979
+
980
+ - 4219597: add JSON input close to form input
981
+ - 18ca936: Update rollup config for create-mastra
982
+
983
+ ## 0.10.10-alpha.1
984
+
985
+ ### Patch Changes
986
+
987
+ - a7a836a: Highlight send event button
988
+
989
+ ## 0.10.10-alpha.0
990
+
991
+ ### Patch Changes
992
+
993
+ - af9e40e: Map log level number to string value
994
+ - b790fd1: Use SerializedStepFlowEntry in playground
995
+
996
+ ## 0.10.9
997
+
998
+ ### Patch Changes
999
+
1000
+ - 6997af1: add send event to server, deployer, client-js and playground-ui
1001
+
1002
+ ## 0.10.9-alpha.0
1003
+
1004
+ ### Patch Changes
1005
+
1006
+ - 6997af1: add send event to server, deployer, client-js and playground-ui
1007
+
1008
+ ## 0.10.8
1009
+
1010
+ ### Patch Changes
1011
+
1012
+ - 4e06e3f: timing not displayed correctly in traces
1013
+ - 7e801dd: [MASTRA-4118] fixes issue with agent network loopStream where subsequent messages aren't present in playground on refresh
1014
+ - a606c75: show right suspend schema for nested workflow on playground
1015
+ - 1760a1c: Use workflow stream in playground instead of watch
1016
+ - 038e5ae: Add cancel workflow run
1017
+ - ac369c6: Show resume data on workflow graph
1018
+ - 976a62b: remove persistence capabilities in model settings components
1019
+ - 4e809ad: Visualizations for .sleep()/.sleepUntil()/.waitForEvent()
1020
+ - f78f399: Make AgentModelSettings shareable between cloud and playground
1021
+ - 57929df: agent network display
1022
+
1023
+ ## 0.10.8-alpha.0
1024
+
1025
+ ### Patch Changes
1026
+
1027
+ - 4e06e3f: timing not displayed correctly in traces
1028
+ - 7e801dd: [MASTRA-4118] fixes issue with agent network loopStream where subsequent messages aren't present in playground on refresh
1029
+ - a606c75: show right suspend schema for nested workflow on playground
1030
+ - 1760a1c: Use workflow stream in playground instead of watch
1031
+ - 038e5ae: Add cancel workflow run
1032
+ - ac369c6: Show resume data on workflow graph
1033
+ - 976a62b: remove persistence capabilities in model settings components
1034
+ - 4e809ad: Visualizations for .sleep()/.sleepUntil()/.waitForEvent()
1035
+ - f78f399: Make AgentModelSettings shareable between cloud and playground
1036
+ - 57929df: agent network display
1037
+
1038
+ ## 0.10.7
1039
+
1040
+ ### Patch Changes
1041
+
1042
+ - a344ac7: Fix tool streaming in agent network
1043
+
1044
+ ## 0.10.7-alpha.0
1045
+
1046
+ ### Patch Changes
1047
+
1048
+ - a344ac7: Fix tool streaming in agent network
1049
+
1050
+ ## 0.10.6
1051
+
1052
+ ### Patch Changes
1053
+
1054
+ - 5d74aab: vNext network in playground
1055
+ - 9102d89: Fix final output not showing on playground for previously suspended steps
1056
+ - 21ffb97: Make dynamic form handle schema better
1057
+ - f9b4350: fix icons not showing on all agents
1058
+
1059
+ ## 0.10.6-alpha.3
1060
+
1061
+ ### Patch Changes
1062
+
1063
+ - f9b4350: fix icons not showing on all agents
1064
+
1065
+ ## 0.10.6-alpha.2
1066
+
1067
+ ### Patch Changes
1068
+
1069
+ - 5d74aab: vNext network in playground
1070
+
1071
+ ## 0.10.6-alpha.1
1072
+
1073
+ ### Patch Changes
1074
+
1075
+ - 21ffb97: Make dynamic form handle schema better
1076
+
1077
+ ## 0.10.6-alpha.0
1078
+
1079
+ ### Patch Changes
1080
+
1081
+ - 9102d89: Fix final output not showing on playground for previously suspended steps
1082
+
1083
+ ## 0.10.5
1084
+
1085
+ ### Patch Changes
1086
+
1087
+ - 02560d4: lift evals fetching to the playground package instead
1088
+ - 63f6b7d: dependencies updates:
1089
+ - Updated dependency [`execa@^9.6.0` ↗︎](https://www.npmjs.com/package/execa/v/9.6.0) (from `^9.5.2`, in `dependencies`)
1090
+ - Updated dependency [`pino@^9.7.0` ↗︎](https://www.npmjs.com/package/pino/v/9.7.0) (from `^9.6.0`, in `dependencies`)
1091
+ - Updated dependency [`posthog-node@^4.18.0` ↗︎](https://www.npmjs.com/package/posthog-node/v/4.18.0) (from `^4.10.1`, in `dependencies`)
1092
+ - 5f2aa3e: Move workflow hooks to playground
1093
+ - 44ba52d: Add proper error message when installation of mastra fails
1094
+ - 311132e: move useWorkflow to playground instead of playground-ui
1095
+ - 3270d9d: Fix runtime context being undefined
1096
+ - 53d3c37: Get workflows from an agent if not found from Mastra instance #5083
1097
+ - fc677d7: For final result for a workflow
1098
+
1099
+ ## 0.10.5-alpha.2
1100
+
1101
+ ### Patch Changes
1102
+
1103
+ - 5f2aa3e: Move workflow hooks to playground
1104
+
1105
+ ## 0.10.5-alpha.1
1106
+
1107
+ ### Patch Changes
1108
+
1109
+ - 44ba52d: Add proper error message when installation of mastra fails
1110
+ - 3270d9d: Fix runtime context being undefined
1111
+ - fc677d7: For final result for a workflow
1112
+
1113
+ ## 0.10.5-alpha.0
1114
+
1115
+ ### Patch Changes
1116
+
1117
+ - 02560d4: lift evals fetching to the playground package instead
1118
+ - 63f6b7d: dependencies updates:
1119
+ - Updated dependency [`execa@^9.6.0` ↗︎](https://www.npmjs.com/package/execa/v/9.6.0) (from `^9.5.2`, in `dependencies`)
1120
+ - Updated dependency [`pino@^9.7.0` ↗︎](https://www.npmjs.com/package/pino/v/9.7.0) (from `^9.6.0`, in `dependencies`)
1121
+ - Updated dependency [`posthog-node@^4.18.0` ↗︎](https://www.npmjs.com/package/posthog-node/v/4.18.0) (from `^4.10.1`, in `dependencies`)
1122
+ - 311132e: move useWorkflow to playground instead of playground-ui
1123
+ - 53d3c37: Get workflows from an agent if not found from Mastra instance #5083
1124
+
1125
+ ## 0.10.4
1126
+
1127
+ ### Patch Changes
1128
+
1129
+ - 1ba421d: fix the tools not showing on workflows attached to agents
1130
+ - 8725d02: Improve cli by reducing the amount of setups during interactive prompt
1131
+ - 13c97f9: Save run status, result and error in storage snapshot
1132
+
1133
+ ## 0.10.3
1134
+
1135
+ ### Patch Changes
1136
+
1137
+ - e719504: don't start posthog when the browser is Brave
1138
+ - 8f60de4: fix workflow output when the schema is a primitive
1139
+
1140
+ ## 0.10.3-alpha.1
1141
+
1142
+ ### Patch Changes
1143
+
1144
+ - e719504: don't start posthog when the browser is Brave
1145
+
1146
+ ## 0.10.3-alpha.0
1147
+
1148
+ ### Patch Changes
1149
+
1150
+ - 8f60de4: fix workflow output when the schema is a primitive
1151
+
1152
+ ## 0.10.2
1153
+
1154
+ ### Patch Changes
1155
+
1156
+ - 73fec0b: Mastra start cli command"
1157
+ - 401bbae: Show workflow graph from stepGraph of previous runs when viewing a previous run
1158
+ - f73e11b: fix telemetry disabled not working on playground
1159
+ - 9666468: move the fetch traces call to the playground instead of playground-ui
1160
+ - 90e96de: Fix: prevent default flag from triggering interactive prompt
1161
+ - 89a69d0: add a way to go to the given trace of a workflow step
1162
+ - 6fd77b5: add docs and txt support for multi modal
1163
+ - 9faee5b: small fixes in the workflows graph
1164
+ - 631683f: move workflow runs list in playground-ui instead of playground
1165
+ - f6ddf55: fix traces not showing and reduce API surface from playground ui
1166
+ - 9a31c09: Highlight steps in nested workflows on workflow graph
1167
+
1168
+ ## 0.10.2-alpha.6
1169
+
1170
+ ### Patch Changes
1171
+
1172
+ - 90e96de: Fix: prevent default flag from triggering interactive prompt
1173
+
1174
+ ## 0.10.2-alpha.5
1175
+
1176
+ ### Patch Changes
1177
+
1178
+ - 6fd77b5: add docs and txt support for multi modal
1179
+ - 631683f: move workflow runs list in playground-ui instead of playground
1180
+
1181
+ ## 0.10.2-alpha.4
1182
+
1183
+ ### Patch Changes
1184
+
1185
+ - 9666468: move the fetch traces call to the playground instead of playground-ui
1186
+
1187
+ ## 0.10.2-alpha.3
1188
+
1189
+ ### Patch Changes
1190
+
1191
+ - 401bbae: Show workflow graph from stepGraph of previous runs when viewing a previous run
1192
+
1193
+ ## 0.10.2-alpha.2
1194
+
1195
+ ### Patch Changes
1196
+
1197
+ - f73e11b: fix telemetry disabled not working on playground
1198
+
1199
+ ## 0.10.2-alpha.1
1200
+
1201
+ ### Patch Changes
1202
+
1203
+ - 73fec0b: Mastra start cli command"
1204
+ - f6ddf55: fix traces not showing and reduce API surface from playground ui
1205
+
1206
+ ## 0.10.2-alpha.0
1207
+
1208
+ ### Patch Changes
1209
+
1210
+ - 89a69d0: add a way to go to the given trace of a workflow step
1211
+ - 9faee5b: small fixes in the workflows graph
1212
+ - 9a31c09: Highlight steps in nested workflows on workflow graph
1213
+
1214
+ ## 0.10.1
1215
+
1216
+ ### Patch Changes
1217
+
1218
+ - b4365f6: add empty states for agents network and tools
1219
+ - d0932ac: add multi modal input behind feature flag
1220
+ - bed0916: Update default tools path in mastra dev,build
1221
+ - 3c2dba5: add workflow run list
1222
+ - 23d56b1: Handle dev server errors, restart, exit
1223
+ - 267773e: Show map config on workflow graph
1224
+ Highlight borders for conditions too on workflow graph
1225
+ Fix watch stream
1226
+ - 35bb6a3: Allow undefined temprature, topP model setting from playground
1227
+ - 33f1c64: revamp the experience for workflows
1228
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
1229
+ - 7a32205: add empty states for workflows, agents and mcp servers
1230
+
1231
+ ## 0.10.1-alpha.5
1232
+
1233
+ ### Patch Changes
1234
+
1235
+ - 267773e: Show map config on workflow graph
1236
+ Highlight borders for conditions too on workflow graph
1237
+ Fix watch stream
1238
+
1239
+ ## 0.10.1-alpha.4
1240
+
1241
+ ### Patch Changes
1242
+
1243
+ - 3c2dba5: add workflow run list
1244
+ - 33f1c64: revamp the experience for workflows
1245
+
1246
+ ## 0.10.1-alpha.3
1247
+
1248
+ ### Patch Changes
1249
+
1250
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
1251
+
1252
+ ## 0.10.1-alpha.2
1253
+
1254
+ ### Patch Changes
1255
+
1256
+ - b4365f6: add empty states for agents network and tools
1257
+ - d0932ac: add multi modal input behind feature flag
1258
+ - bed0916: Update default tools path in mastra dev,build
1259
+ - 23d56b1: Handle dev server errors, restart, exit
1260
+
1261
+ ## 0.10.1-alpha.1
1262
+
1263
+ ### Patch Changes
1264
+
1265
+ - 7a32205: add empty states for workflows, agents and mcp servers
1266
+
1267
+ ## 0.10.1-alpha.0
1268
+
1269
+ ### Patch Changes
1270
+
1271
+ - 35bb6a3: Allow undefined temprature, topP model setting from playground
1272
+
1273
+ ## 0.10.0
1274
+
1275
+ ### Patch Changes
1276
+
1277
+ - bdb7934: fix tools not showing (discoverability)
1278
+ - b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
1279
+ - ae122cc: show the entities ID close to the copy button
1280
+ - 99552bc: revamp the UI of the tools page
1281
+ - f2d3352: fix overflow scroll in runtime context
1282
+ - 95911be: Fixed an issue where if @mastra/core was not released at the same time as create-mastra, create-mastra would match the alpha tag instead of latest tag when running npm create mastra@latest
1283
+ - db4211d: improve the UI/UX of the runtime context with formatting, copying, docs and syntax highlighting
1284
+ - 9b7294a: Revamp the UI for the right sidebar of the agents page
1285
+ - e2c2cf1: Persist playground agent settings across refresh
1286
+ - 47776b4: update the mcp pages
1287
+ - fd69cc3: revamp UI of workflow "Run" pane
1288
+ - 1270183: Add waterfull traces instead of stacked progressbar (UI improvement mostly)
1289
+ - 392a14d: changing the empty state for threads in agent chat
1290
+ - cbf153f: Handle broken images on the playground
1291
+ - 0cae9b1: sidebar adjustments (storing status + showing the action of collapsing / expanding)
1292
+ - d2b595a: a better tools playground page
1293
+ - 1f6886f: bring back the memory not activated warning in agent chat
1294
+ - 8a68886: revamp the UI of the workflow form input
1295
+
1296
+ ## 0.3.4-alpha.2
1297
+
1298
+ ### Patch Changes
1299
+
1300
+ - 47776b4: update the mcp pages
1301
+
1302
+ ## 0.3.4-alpha.1
1303
+
1304
+ ### Patch Changes
1305
+
1306
+ - bdb7934: fix tools not showing (discoverability)
1307
+ - b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
1308
+ - ae122cc: show the entities ID close to the copy button
1309
+ - f2d3352: fix overflow scroll in runtime context
1310
+ - 95911be: Fixed an issue where if @mastra/core was not released at the same time as create-mastra, create-mastra would match the alpha tag instead of latest tag when running npm create mastra@latest
1311
+ - fd69cc3: revamp UI of workflow "Run" pane
1312
+ - cbf153f: Handle broken images on the playground
1313
+ - 0cae9b1: sidebar adjustments (storing status + showing the action of collapsing / expanding)
1314
+ - d2b595a: a better tools playground page
1315
+ - 1f6886f: bring back the memory not activated warning in agent chat
1316
+ - 8a68886: revamp the UI of the workflow form input
1317
+
1318
+ ## 0.3.4-alpha.0
1319
+
1320
+ ### Patch Changes
1321
+
1322
+ - 99552bc: revamp the UI of the tools page
1323
+ - db4211d: improve the UI/UX of the runtime context with formatting, copying, docs and syntax highlighting
1324
+ - 9b7294a: Revamp the UI for the right sidebar of the agents page
1325
+ - e2c2cf1: Persist playground agent settings across refresh
1326
+ - 1270183: Add waterfull traces instead of stacked progressbar (UI improvement mostly)
1327
+ - 392a14d: changing the empty state for threads in agent chat
1328
+
1329
+ ## 0.3.3
1330
+
1331
+ ### Patch Changes
1332
+
1333
+ - a3435f8: Add node engine to create-mastra project package.json
1334
+
1335
+ ## 0.3.3-alpha.0
1336
+
1337
+ ### Patch Changes
1338
+
1339
+ - a3435f8: Add node engine to create-mastra project package.json
1340
+
1341
+ ## 0.3.2
1342
+
1343
+ ### Patch Changes
1344
+
1345
+ - 0db0992: - add new --mcp option to cli
1346
+ - add support for mcp in vscode
1347
+ - include examples with --default flag
1348
+ - b5d2de0: In vNext workflow serializedStepGraph, return only serializedStepFlow for steps created from a workflow
1349
+ allow viewing inner nested workflows in a multi-layered nested vnext workflow on the playground
1350
+ - 62c9e7d: Fix disappearing tool calls in streaming
1351
+
1352
+ ## 0.3.2-alpha.1
1353
+
1354
+ ### Patch Changes
1355
+
1356
+ - 62c9e7d: Fix disappearing tool calls in streaming
1357
+
1358
+ ## 0.3.2-alpha.0
1359
+
1360
+ ### Patch Changes
1361
+
1362
+ - b5d2de0: In vNext workflow serializedStepGraph, return only serializedStepFlow for steps created from a workflow
1363
+ allow viewing inner nested workflows in a multi-layered nested vnext workflow on the playground
1364
+
1365
+ ## 0.3.1
1366
+
1367
+ ### Patch Changes
1368
+
1369
+ - 144fa1b: lift up the traces fetching and allow to pass them down in the TracesTable. It allows passing down mastra client traces OR clickhouse traces
1370
+ - 33b84fd: fix showing sig digits in trace / span duration
1371
+ - 4155f47: Add parameters to filter workflow runs
1372
+ Add fromDate and toDate to telemetry parameters
1373
+ - 8607972: Introduce Mastra lint cli command
1374
+ - 0097d50: Add serializedStepGraph to vNext workflow
1375
+ Return serializedStepGraph from vNext workflow
1376
+ Use serializedStepGraph in vNext workflow graph
1377
+ - 5b43dd0: revamp ui for threads
1378
+ - 2429c74: Add get workflow runs api to client-js
1379
+ - fba031f: Show traces for vNext workflow
1380
+
1381
+ ## 0.3.1-alpha.5
1382
+
1383
+ ### Patch Changes
1384
+
1385
+ - 144fa1b: lift up the traces fetching and allow to pass them down in the TracesTable. It allows passing down mastra client traces OR clickhouse traces
1386
+
1387
+ ## 0.3.1-alpha.4
1388
+
1389
+ ### Patch Changes
1390
+
1391
+ - 8607972: Introduce Mastra lint cli command
1392
+ - fba031f: Show traces for vNext workflow
1393
+
1394
+ ## 0.3.1-alpha.3
1395
+
1396
+ ### Patch Changes
1397
+
1398
+ - 5b43dd0: revamp ui for threads
1399
+
1400
+ ## 0.3.1-alpha.2
1401
+
1402
+ ### Patch Changes
1403
+
1404
+ - 33b84fd: fix showing sig digits in trace / span duration
1405
+ - 4155f47: Add parameters to filter workflow runs
1406
+ Add fromDate and toDate to telemetry parameters
1407
+
1408
+ ## 0.3.1-alpha.1
1409
+
1410
+ ### Patch Changes
1411
+
1412
+ - 2429c74: Add get workflow runs api to client-js
1413
+
1414
+ ## 0.3.1-alpha.0
1415
+
1416
+ ### Patch Changes
1417
+
1418
+ - 0097d50: Add serializedStepGraph to vNext workflow
1419
+ Return serializedStepGraph from vNext workflow
1420
+ Use serializedStepGraph in vNext workflow graph
1421
+
1422
+ ## 0.3.0
1423
+
1424
+ ### Minor Changes
1425
+
1426
+ - e126a44: improve non-interactive mode of the mastra cli and create-mastra by adding --no-example and --dir flags
1427
+
1428
+ ### Patch Changes
1429
+
1430
+ - 34a76ca: Call workflow cleanup function when closing watch stream controller
1431
+ - 25d3c39: build logs for how to load instrumentation for build output
1432
+ - 70124e1: revamp the ui for traces
1433
+ - 3b74a74: add badge for failure / successful traces
1434
+ - 05806e3: revamp the UI of the chat in playground
1435
+ - 926821d: Fix triggerSchema default not showing in workflow ui
1436
+ - 0c3c4f4: Playground routing model settings for AgentNetworks
1437
+ - 1700eca: fixing overflow on agent traces
1438
+ - b50b9b7: Add vNext workflow to client-js
1439
+ - 11d4485: Show VNext workflows on the playground
1440
+ Show running status for step in vNext workflowState
1441
+ - ca665d3: fix the ui for smaller screen regarding traces
1442
+ - 57b25ed: Use resumeSchema to show inputs on the playground for suspended workflows
1443
+ - f1d4b7a: Add x-mastra-dev-playground header to all playground requests
1444
+ - 5a66ced: add click on trace row
1445
+ - 8863033: Fix tools api in local dev api
1446
+ - 2d4001d: Add new @msstra/libsql package and use it in create-mastra
1447
+
1448
+ ## 0.3.0-alpha.5
1449
+
1450
+ ### Patch Changes
1451
+
1452
+ - ca665d3: fix the ui for smaller screen regarding traces
1453
+
1454
+ ## 0.3.0-alpha.4
1455
+
1456
+ ### Patch Changes
1457
+
1458
+ - 25d3c39: build logs for how to load instrumentation for build output
1459
+
1460
+ ## 0.3.0-alpha.3
1461
+
1462
+ ### Patch Changes
1463
+
1464
+ - 3b74a74: add badge for failure / successful traces
1465
+ - 5a66ced: add click on trace row
1466
+
1467
+ ## 0.3.0-alpha.2
1468
+
1469
+ ### Patch Changes
1470
+
1471
+ - 34a76ca: Call workflow cleanup function when closing watch stream controller
1472
+ - 0c3c4f4: Playground routing model settings for AgentNetworks
1473
+ - 1700eca: fixing overflow on agent traces
1474
+
1475
+ ## 0.3.0-alpha.1
1476
+
1477
+ ### Patch Changes
1478
+
1479
+ - 70124e1: revamp the ui for traces
1480
+ - 926821d: Fix triggerSchema default not showing in workflow ui
1481
+ - 57b25ed: Use resumeSchema to show inputs on the playground for suspended workflows
1482
+ - f1d4b7a: Add x-mastra-dev-playground header to all playground requests
1483
+
1484
+ ## 0.3.0-alpha.0
1485
+
1486
+ ### Minor Changes
1487
+
1488
+ - e126a44: improve non-interactive mode of the mastra cli and create-mastra by adding --no-example and --dir flags
1489
+
1490
+ ### Patch Changes
1491
+
1492
+ - 05806e3: revamp the UI of the chat in playground
1493
+ - b50b9b7: Add vNext workflow to client-js
1494
+ - 11d4485: Show VNext workflows on the playground
1495
+ Show running status for step in vNext workflowState
1496
+ - 8863033: Fix tools api in local dev api
1497
+ - 2d4001d: Add new @msstra/libsql package and use it in create-mastra
1498
+
1499
+ ## 0.2.9
1500
+
1501
+ ### Patch Changes
1502
+
1503
+ - 7e92011: Include tools with deployment builds
1504
+ - 7184dc5: Add support to pass project path directly to create-mastra and improve tag handling
1505
+ - 16a8648: Disable swaggerUI, playground for production builds, mastra instance server build config to enable swaggerUI, apiReqLogs, openAPI documentation for prod builds
1506
+ - bdbde72: Sync DS components with Cloud
1507
+
1508
+ ## 0.2.9-alpha.2
1509
+
1510
+ ### Patch Changes
1511
+
1512
+ - 16a8648: Disable swaggerUI, playground for production builds, mastra instance server build config to enable swaggerUI, apiReqLogs, openAPI documentation for prod builds
1513
+ - bdbde72: Sync DS components with Cloud
1514
+
1515
+ ## 0.2.9-alpha.1
1516
+
1517
+ ### Patch Changes
1518
+
1519
+ - 7e92011: Include tools with deployment builds
1520
+
1521
+ ## 0.2.9-alpha.0
1522
+
1523
+ ### Patch Changes
1524
+
1525
+ - 7184dc5: Add support to pass project path directly to create-mastra and improve tag handling
1526
+
1527
+ ## 0.2.8
1528
+
1529
+ ### Patch Changes
1530
+
1531
+ - 1ebbfbf: Ability to toggle stream vs generate in playground
1532
+ - a2318cd: Revamp mastra deply dx, Make mastra build command output deployment ready build
1533
+ - 37bb612: Add Elastic-2.0 licensing for packages
1534
+ - c8fe5f0: change the header of all pages with the one from the DS
1535
+
1536
+ ## 0.2.8-alpha.1
1537
+
1538
+ ### Patch Changes
1539
+
1540
+ - 1ebbfbf: Ability to toggle stream vs generate in playground
1541
+
1542
+ ## 0.2.8-alpha.0
1543
+
1544
+ ### Patch Changes
1545
+
1546
+ - a2318cd: Revamp mastra deply dx, Make mastra build command output deployment ready build
1547
+ - 37bb612: Add Elastic-2.0 licensing for packages
1548
+ - c8fe5f0: change the header of all pages with the one from the DS
1549
+
1550
+ ## 0.2.7
1551
+
1552
+ ### Patch Changes
1553
+
1554
+ - d3c372c: Show status UI of steps on playground workflow when workflow has no triggerSchema
1555
+ Show number of steps on workflows table
1556
+ - df5989d: Correct playground model setting maxSteps reset value
1557
+
1558
+ ## 0.2.7-alpha.1
1559
+
1560
+ ### Patch Changes
1561
+
1562
+ - df5989d: Correct playground model setting maxSteps reset value
1563
+
1564
+ ## 0.2.7-alpha.0
1565
+
1566
+ ### Patch Changes
1567
+
1568
+ - d3c372c: Show status UI of steps on playground workflow when workflow has no triggerSchema
1569
+ Show number of steps on workflows table
1570
+
1571
+ ## 0.2.6
1572
+
1573
+ ### Patch Changes
1574
+
1575
+ - 99e2998: Set default max steps to 5
1576
+ - 8fdb414: Custom mastra server cors config
1577
+
1578
+ ## 0.2.6-alpha.0
1579
+
1580
+ ### Patch Changes
1581
+
1582
+ - 99e2998: Set default max steps to 5
1583
+ - 8fdb414: Custom mastra server cors config
1584
+
1585
+ ## 0.2.5
1586
+
1587
+ ### Patch Changes
1588
+
1589
+ - 87b96d7: set playground agent maxSteps default to 3
1590
+
1591
+ ## 0.2.5-alpha.0
1592
+
1593
+ ### Patch Changes
1594
+
1595
+ - 87b96d7: set playground agent maxSteps default to 3
1596
+
1597
+ ## 0.2.4
1598
+
1599
+ ### Patch Changes
1600
+
1601
+ - a4a1151: Fix playground freezing when buffer is passed between steps
1602
+ - 9d13790: update playground-ui dynamic form, cleanups
1603
+ - 13ade6a: update favicon shape
1604
+ - 055c4ea: Fix traces page showing e.reduce error
1605
+ - 124ce08: Ability to set maxTokens, temperature, and other common features in playground
1606
+ - 789bef3: Make runId optional for workflow startAsync api
1607
+ - 40dca45: Fix expanding workflow sidebar not expanding the output section
1608
+ - 8393832: Handle nested workflow view on workflow graph
1609
+ - 23999d4: Add Design System tokens and components into playground ui
1610
+ - 8076ecf: Unify workflow watch/start response
1611
+ - 9e7d46a: Fix scroll issue on playground tools page
1612
+ - d16ed18: Make playground-ui dynamic forms better
1613
+
1614
+ ## 0.2.4-alpha.4
1615
+
1616
+ ### Patch Changes
1617
+
1618
+ - a4a1151: Fix playground freezing when buffer is passed between steps
1619
+ - 13ade6a: update favicon shape
1620
+ - 124ce08: Ability to set maxTokens, temperature, and other common features in playground
1621
+ - 23999d4: Add Design System tokens and components into playground ui
1622
+ - 9e7d46a: Fix scroll issue on playground tools page
1623
+
1624
+ ## 0.2.4-alpha.3
1625
+
1626
+ ### Patch Changes
1627
+
1628
+ - 055c4ea: Fix traces page showing e.reduce error
1629
+
1630
+ ## 0.2.4-alpha.2
1631
+
1632
+ ### Patch Changes
1633
+
1634
+ - 9d13790: update playground-ui dynamic form, cleanups
1635
+ - 40dca45: Fix expanding workflow sidebar not expanding the output section
1636
+ - d16ed18: Make playground-ui dynamic forms better
1637
+
1638
+ ## 0.2.4-alpha.1
1639
+
1640
+ ### Patch Changes
1641
+
1642
+ - 789bef3: Make runId optional for workflow startAsync api
1643
+ - 8393832: Handle nested workflow view on workflow graph
1644
+
1645
+ ## 0.2.4-alpha.0
1646
+
1647
+ ### Patch Changes
1648
+
1649
+ - 8076ecf: Unify workflow watch/start response
1650
+
1651
+ ## 0.2.3
1652
+
1653
+ ### Patch Changes
1654
+
1655
+ - 6d5d9c6: Show tool calls in playground chat
1656
+ - 2447900: Show No input for steps without input on traces UI
1657
+ - c30787b: Stop automatically scrolling to bottom in agent chat if user has scrolled up
1658
+ - 214e7ce: Only mark required fields as required on the playground
1659
+ - 0b496ff: Load env vars on mastra deploy
1660
+ - 2134786: Fix traces navigation not working in playground
1661
+
1662
+ ## 0.2.3-alpha.2
1663
+
1664
+ ### Patch Changes
1665
+
1666
+ - 6d5d9c6: Show tool calls in playground chat
1667
+
1668
+ ## 0.2.3-alpha.1
1669
+
1670
+ ### Patch Changes
1671
+
1672
+ - 2134786: Fix traces navigation not working in playground
1673
+
1674
+ ## 0.2.3-alpha.0
1675
+
1676
+ ### Patch Changes
1677
+
1678
+ - 2447900: Show No input for steps without input on traces UI
1679
+ - c30787b: Stop automatically scrolling to bottom in agent chat if user has scrolled up
1680
+ - 214e7ce: Only mark required fields as required on the playground
1681
+ - 0b496ff: Load env vars on mastra deploy
1682
+
1683
+ ## 0.2.2
1684
+
1685
+ ### Patch Changes
1686
+
1687
+ - 933ea4d: Fix messages in thread not showing latest when switching between threads
1688
+ - 9cba774: Fix new thread title not reflecting until refresh or new message is sent
1689
+ - 77e4c35: Pop a dialog showing the functional condition when a functional condition is clicked on workflow graph
1690
+ - 248cb07: Allow ai-sdk Message type for messages in agent generate and stream
1691
+ Fix sidebar horizontal overflow in playground
1692
+
1693
+ ## 0.2.2-alpha.1
1694
+
1695
+ ### Patch Changes
1696
+
1697
+ - 77e4c35: Pop a dialog showing the functional condition when a functional condition is clicked on workflow graph
1698
+
1699
+ ## 0.2.2-alpha.0
1700
+
1701
+ ### Patch Changes
1702
+
1703
+ - 933ea4d: Fix messages in thread not showing latest when switching between threads
1704
+ - 9cba774: Fix new thread title not reflecting until refresh or new message is sent
1705
+ - 248cb07: Allow ai-sdk Message type for messages in agent generate and stream
1706
+ Fix sidebar horizontal overflow in playground
1707
+
1708
+ ## 0.2.1
1709
+
1710
+ ### Patch Changes
1711
+
1712
+ - 404640e: AgentNetwork changeset
1713
+
1714
+ ## 0.2.1-alpha.0
1715
+
1716
+ ### Patch Changes
1717
+
1718
+ - 404640e: AgentNetwork changeset
1719
+
1720
+ ## 0.2.0
1721
+
1722
+ ### Minor Changes
1723
+
1724
+ - f9b6ab5: add Cerebras as a llm provider to create-mastra@latest
1725
+
1726
+ ### Patch Changes
1727
+
1728
+ - 0f24546: Add google as a new LLM provider option in project creation
1729
+ - 1291e89: Add resizable-panel to playground-ui and use in agent and workflow sidebars
1730
+ - 9ba1e97: update playground ui for mastra and create-mastra
1731
+ - 5baf1ec: animate new traces
1732
+ - 9116d70: Handle the different workflow methods in workflow graph
1733
+ - 0709d99: add prop for dynamic empty text
1734
+
1735
+ ## 0.2.0-alpha.2
1736
+
1737
+ ### Patch Changes
1738
+
1739
+ - 5baf1ec: animate new traces
1740
+ - 9116d70: Handle the different workflow methods in workflow graph
1741
+ - 0709d99: add prop for dynamic empty text
1742
+
1743
+ ## 0.2.0-alpha.1
1744
+
1745
+ ### Minor Changes
1746
+
1747
+ - f9b6ab5: add Cerebras as a llm provider to create-mastra@latest
1748
+
1749
+ ### Patch Changes
1750
+
1751
+ - 1291e89: Add resizable-panel to playground-ui and use in agent and workflow sidebars
1752
+ - 9ba1e97: update playground ui for mastra and create-mastra
1753
+
1754
+ ## 0.1.10-alpha.0
1755
+
1756
+ ### Patch Changes
1757
+
1758
+ - 0f24546: Add google as a new LLM provider option in project creation
1759
+
1760
+ ## 0.1.9
1761
+
1762
+ ### Patch Changes
1763
+
1764
+ - c49f798: remove hardcoded localhost url in playground
1765
+ - d3d6fae: Deprecate mastra dev --env flag
1766
+
1767
+ ## 0.1.9-alpha.1
1768
+
1769
+ ### Patch Changes
1770
+
1771
+ - c49f798: remove hardcoded localhost url in playground
1772
+
1773
+ ## 0.1.9-alpha.0
1774
+
1775
+ ### Patch Changes
1776
+
1777
+ - d3d6fae: Deprecate mastra dev --env flag
1778
+
1779
+ ## 0.1.8
1780
+
1781
+ ### Patch Changes
1782
+
1783
+ - 5fae49e: Configurable timeout on npm create mastra
1784
+ - 91d2e30: Fix init in non npm project
1785
+ - 960690d: Improve client-js workflow watch dx
1786
+ - dbd9f2d: Handle different condition types on workflow graph
1787
+ - 07a7470: Move WorkflowTrigger to playground-ui package and use in dev playground
1788
+ - a80bdaf: persist data in run tab in dev
1789
+ - e5149bb: Fix playground-ui agent-evals tab-content
1790
+ - 8deb34c: Better workflow watch api + watch workflow by runId
1791
+ - 36d970e: Make tools discovery work in mastra dev
1792
+ - 144b3d5: Update traces table UI, agent Chat UI
1793
+ Fix get workflows breaking
1794
+ - 62565c1: --no-timeout npm create mastra flag
1795
+ - 9035565: Update tools dev playground inputs for different fieldtypes
1796
+ - af7466e: fix playground issues
1797
+ - fd4a1d7: Update cjs bundling to make sure files are split
1798
+
1799
+ ## 0.1.8-alpha.5
1800
+
1801
+ ### Patch Changes
1802
+
1803
+ - 07a7470: Move WorkflowTrigger to playground-ui package and use in dev playground
1804
+
1805
+ ## 0.1.8-alpha.4
1806
+
1807
+ ### Patch Changes
1808
+
1809
+ - dbd9f2d: Handle different condition types on workflow graph
1810
+ - 8deb34c: Better workflow watch api + watch workflow by runId
1811
+ - 36d970e: Make tools discovery work in mastra dev
1812
+ - fd4a1d7: Update cjs bundling to make sure files are split
1813
+
1814
+ ## 0.1.8-alpha.3
1815
+
1816
+ ### Patch Changes
1817
+
1818
+ - 91d2e30: Fix init in non npm project
1819
+ - a80bdaf: persist data in run tab in dev
1820
+ - 9035565: Update tools dev playground inputs for different fieldtypes
1821
+ - af7466e: fix playground issues
1822
+
1823
+ ## 0.1.8-alpha.2
1824
+
1825
+ ### Patch Changes
1826
+
1827
+ - 144b3d5: Update traces table UI, agent Chat UI
1828
+ Fix get workflows breaking
1829
+
1830
+ ## 0.1.8-alpha.1
1831
+
1832
+ ### Patch Changes
1833
+
1834
+ - e5149bb: Fix playground-ui agent-evals tab-content
1835
+
1836
+ ## 0.1.8-alpha.0
1837
+
1838
+ ### Patch Changes
1839
+
1840
+ - 5fae49e: Configurable timeout on npm create mastra
1841
+ - 960690d: Improve client-js workflow watch dx
1842
+ - 62565c1: --no-timeout npm create mastra flag
1843
+
1844
+ ## 0.1.7
1845
+
1846
+ ### Patch Changes
1847
+
1848
+ - 7a64aff: playground-ui lib package to enhance dev/cloud ui unification
1849
+ - bb4f447: Add support for commonjs
1850
+
1851
+ ## 0.1.7-alpha.0
1852
+
1853
+ ### Patch Changes
1854
+
1855
+ - 7a64aff: playground-ui lib package to enhance dev/cloud ui unification
1856
+ - bb4f447: Add support for commonjs
1857
+
1858
+ ## 0.1.6
1859
+
1860
+ ### Patch Changes
1861
+
1862
+ - 2d68431: Fix mastra server error processing
1863
+
1864
+ ## 0.1.6-alpha.0
1865
+
1866
+ ### Patch Changes
1867
+
1868
+ - 2d68431: Fix mastra server error processing
1869
+
1870
+ ## 0.1.5
1871
+
1872
+ ### Patch Changes
1873
+
1874
+ - 967da43: Logger, transport fixes
1875
+
1876
+ ## 0.1.4
1877
+
1878
+ ### Patch Changes
1879
+
1880
+ - 13ba53a: Remove cli postinstall script
1881
+ - bd98fb6: Fix yarn create mastra, use correct install commnad for deps install
1882
+ - 5c7b8db: create-mastra version tag discovery
1883
+ - cd80117: pnpm create mastra versionTag discovery
1884
+ - dd3a52b: pass createVersionTag to create mastra deps
1885
+
1886
+ ## 0.1.4-alpha.3
1887
+
1888
+ ### Patch Changes
1889
+
1890
+ - bd98fb6: Fix yarn create mastra, use correct install commnad for deps install
1891
+
1892
+ ## 0.1.4-alpha.2
1893
+
1894
+ ### Patch Changes
1895
+
1896
+ - cd80117: pnpm create mastra versionTag discovery
1897
+
1898
+ ## 0.1.4-alpha.1
1899
+
1900
+ ### Patch Changes
1901
+
1902
+ - 5c7b8db: create-mastra version tag discovery
1903
+
1904
+ ## 0.1.4-alpha.0
1905
+
1906
+ ### Patch Changes
1907
+
1908
+ - 13ba53a: Remove cli postinstall script
1909
+ - dd3a52b: pass createVersionTag to create mastra deps
1910
+
1911
+ ## 0.1.3
1912
+
1913
+ ### Patch Changes
1914
+
1915
+ - dfe2df9: Fix mastra create workflow starter
1916
+
1917
+ ## 0.1.3-alpha.0
1918
+
1919
+ ### Patch Changes
1920
+
1921
+ - dfe2df9: Fix mastra create workflow starter
1922
+
1923
+ ## 0.1.2
1924
+
1925
+ ### Patch Changes
1926
+
1927
+ - c5a68f9: Optimize create mastra deps install
1928
+ - a9e8d7c: Fix create mastra deps install
1929
+
1930
+ ## 0.1.2-alpha.0
1931
+
1932
+ ### Patch Changes
1933
+
1934
+ - c5a68f9: Optimize create mastra deps install
1935
+ - a9e8d7c: Fix create mastra deps install
1936
+
1937
+ ## 0.1.1
1938
+
1939
+ ### Patch Changes
1940
+
1941
+ - 936dc26: Add mastra server endpoints for watch/resume + plug watch and resume functionality to dev playground
1942
+ - b0b975d: Update package installation to latest instead of alpha
1943
+
1944
+ ## 0.1.1-alpha.0
1945
+
1946
+ ### Patch Changes
1947
+
1948
+ - 936dc26: Add mastra server endpoints for watch/resume + plug watch and resume functionality to dev playground
1949
+ - b0b975d: Update package installation to latest instead of alpha
1950
+
1951
+ ## 0.1.0
1952
+
1953
+ ### Minor Changes
1954
+
1955
+ - 5916f9d: Update deps from fixed to ^
1956
+ - 8b416d9: Breaking changes
1957
+ - 3e9f0ca: Improve package size
1958
+
1959
+ ### Patch Changes
1960
+
1961
+ - abdd42d: polish mastra create, fix create-mastra publishing
1962
+ - 7344dd7: Fix tool executor ui bugs
1963
+ - b97ca96: Tracing into default storage
1964
+ - 9c10484: new create-mastra version
1965
+ - 1d68b0c: update dane publishing
1966
+ - 255fc56: create mastra bundle correctly
1967
+ - edd70b5: changeset
1968
+ - cefd906: cli interactive api key configuration
1969
+ - 0b74006: Workflow updates
1970
+ - 9c10484: update all packages
1971
+ - 70dabd9: Fix broken publish
1972
+ - 21fe536: add keyword tags for packages and update readmes
1973
+ - aacfff6: publish new mastra, create-mastra
1974
+ - a18e96c: Array schemas for dev tool playground
1975
+ - b425845: Logger and execa logs
1976
+ - 7db55f6: Install aisdk model provider for in create-mastra init
1977
+ - 188ffa8: Fix cli create not parsing components flag
1978
+ - 932d86c: Fix build
1979
+ - de60682: Fix playground thread navigation
1980
+ - fee6d63: Republish
1981
+ - c18a0c0: Fix creation of new threads in dev playground
1982
+ - 32cd966: new mastra create command, publish create-mastra a way to quickly spin up mastra apps
1983
+ - 04434b6: Create separate logger file
1984
+ - 215a1c2: Fix bad cli create starter files copying
1985
+ - 9fb59d6: changeset
1986
+ - 2667e66: fix create mastra publishing
1987
+ - 4f1d1a1: Enforce types ann cleanup package.json
1988
+
1989
+ ## 0.1.0-alpha.40
1990
+
1991
+ ### Patch Changes
1992
+
1993
+ - de60682: Fix playground thread navigation
1994
+
1995
+ ## 0.1.0-alpha.39
1996
+
1997
+ ### Patch Changes
1998
+
1999
+ - b97ca96: Tracing into default storage
2000
+ - fee6d63: Republish
2001
+
2002
+ ## 0.1.0-alpha.38
2003
+
2004
+ ### Patch Changes
2005
+
2006
+ - 4f1d1a1: Enforce types ann cleanup package.json
2007
+
2008
+ ## 0.1.0-alpha.37
2009
+
2010
+ ### Patch Changes
2011
+
2012
+ - 70dabd9: Fix broken publish
2013
+
2014
+ ## 0.1.0-alpha.36
2015
+
2016
+ ### Patch Changes
2017
+
2018
+ - a18e96c: Array schemas for dev tool playground
2019
+
2020
+ ## 0.1.0-alpha.35
2021
+
2022
+ ### Patch Changes
2023
+
2024
+ - 7db55f6: Install aisdk model provider for in create-mastra init
2025
+ - c18a0c0: Fix creation of new threads in dev playground
2026
+
2027
+ ## 0.1.0-alpha.34
2028
+
2029
+ ### Patch Changes
2030
+
2031
+ - 9fb59d6: changeset
2032
+
2033
+ ## 0.1.0-alpha.33
2034
+
2035
+ ### Minor Changes
2036
+
2037
+ - 8b416d9: Breaking changes
2038
+
2039
+ ### Patch Changes
2040
+
2041
+ - 9c10484: new create-mastra version
2042
+ - 9c10484: update all packages
2043
+
2044
+ ## 0.1.0-alpha.32
2045
+
2046
+ ### Minor Changes
2047
+
2048
+ - 5916f9d: Update deps from fixed to ^
2049
+
2050
+ ## 0.1.0-alpha.31
2051
+
2052
+ ### Patch Changes
2053
+
2054
+ - 188ffa8: Fix cli create not parsing components flag
2055
+
2056
+ ## 0.1.0-alpha.30
2057
+
2058
+ ### Patch Changes
2059
+
2060
+ - 21fe536: add keyword tags for packages and update readmes
2061
+
2062
+ ## 0.1.0-alpha.29
2063
+
2064
+ ### Patch Changes
2065
+
2066
+ - 255fc56: create mastra bundle correctly
2067
+
2068
+ ## 0.1.0-alpha.28
2069
+
2070
+ ### Patch Changes
2071
+
2072
+ - 215a1c2: Fix bad cli create starter files copying
2073
+
2074
+ ## 0.1.0-alpha.27
2075
+
2076
+ ### Patch Changes
2077
+
2078
+ - 932d86c: Fix build
2079
+
2080
+ ## 0.1.0-alpha.26
2081
+
2082
+ ### Patch Changes
2083
+
2084
+ - 04434b6: Create separate logger file
2085
+
2086
+ ## 0.1.0-alpha.25
2087
+
2088
+ ### Patch Changes
2089
+
2090
+ - b425845: Logger and execa logs
2091
+
2092
+ ## 0.1.0-alpha.24
2093
+
2094
+ ### Minor Changes
2095
+
2096
+ - 3e9f0ca: Improve package size
2097
+
2098
+ ## 0.1.0-alpha.23
2099
+
2100
+ ### Patch Changes
2101
+
2102
+ - Updated dependencies [c4cd3ff]
2103
+ - Updated dependencies [dde845f]
2104
+ - Updated dependencies [2b4d224]
2105
+ - mastra@0.1.57-alpha.90
2106
+
2107
+ ## 0.1.0-alpha.22
2108
+
2109
+ ### Patch Changes
2110
+
2111
+ - Updated dependencies [c4cd3ff]
2112
+ - Updated dependencies [dde845f]
2113
+ - mastra@0.1.57-alpha.89
2114
+
2115
+ ## 0.1.0-alpha.21
2116
+
2117
+ ### Patch Changes
2118
+
2119
+ - Updated dependencies [dc90663]
2120
+ - mastra@0.1.57-alpha.88
2121
+
2122
+ ## 0.1.0-alpha.20
2123
+
2124
+ ### Patch Changes
2125
+
2126
+ - mastra@0.1.57-alpha.87
2127
+
2128
+ ## 0.1.0-alpha.19
2129
+
2130
+ ### Patch Changes
2131
+
2132
+ - Updated dependencies [606bbbe]
2133
+ - mastra@0.1.57-alpha.86
2134
+
2135
+ ## 0.1.0-alpha.18
2136
+
2137
+ ### Patch Changes
2138
+
2139
+ - mastra@0.1.57-alpha.85
2140
+
2141
+ ## 0.1.0-alpha.17
2142
+
2143
+ ### Patch Changes
2144
+
2145
+ - mastra@0.1.57-alpha.84
2146
+
2147
+ ## 0.1.0-alpha.16
2148
+
2149
+ ### Patch Changes
2150
+
2151
+ - mastra@0.1.57-alpha.83
2152
+
2153
+ ## 0.1.0-alpha.15
2154
+
2155
+ ### Patch Changes
2156
+
2157
+ - Updated dependencies [6cc479d]
2158
+ - mastra@0.1.57-alpha.82
2159
+
2160
+ ## 0.1.0-alpha.14
2161
+
2162
+ ### Patch Changes
2163
+
2164
+ - 0b74006: Workflow updates
2165
+ - Updated dependencies [837a288]
2166
+ - Updated dependencies [0b74006]
2167
+ - mastra@0.1.57-alpha.81
2168
+
2169
+ ## 0.1.0-alpha.13
2170
+
2171
+ ### Patch Changes
2172
+
2173
+ - mastra@0.1.57-alpha.80
2174
+
2175
+ ## 0.1.0-alpha.12
2176
+
2177
+ ### Patch Changes
2178
+
2179
+ - mastra@0.1.57-alpha.79
2180
+
2181
+ ## 0.1.0-alpha.11
2182
+
2183
+ ### Patch Changes
2184
+
2185
+ - Updated dependencies [f79a9ff]
2186
+ - mastra@0.1.57-alpha.78
2187
+
2188
+ ## 0.1.0-alpha.10
2189
+
2190
+ ### Patch Changes
2191
+
2192
+ - Updated dependencies [538a136]
2193
+ - mastra@0.1.57-alpha.77
2194
+
2195
+ ## 0.1.0-alpha.9
2196
+
2197
+ ### Patch Changes
2198
+
2199
+ - cefd906: cli interactive api key configuration
2200
+ - Updated dependencies [b6f9860]
2201
+ - Updated dependencies [cefd906]
2202
+ - mastra@0.1.57-alpha.76
2203
+
2204
+ ## 0.1.0-alpha.8
2205
+
2206
+ ### Patch Changes
2207
+
2208
+ - mastra@0.1.57-alpha.75
2209
+
2210
+ ## 0.1.0-alpha.7
2211
+
2212
+ ### Patch Changes
2213
+
2214
+ - edd70b5: changeset
2215
+ - Updated dependencies [edd70b5]
2216
+ - mastra@0.1.57-alpha.74
2217
+
2218
+ ## 0.1.0-alpha.6
2219
+
2220
+ ### Patch Changes
2221
+
2222
+ - aacfff6: publish new mastra, create-mastra
2223
+ - Updated dependencies [aacfff6]
2224
+ - mastra@0.1.57-alpha.73
2225
+
2226
+ ## 0.1.0-alpha.5
2227
+
2228
+ ### Patch Changes
2229
+
2230
+ - 2667e66: fix create mastra publishing
2231
+ - Updated dependencies [2667e66]
2232
+ - mastra@0.1.57-alpha.72
2233
+
2234
+ ## 0.1.0-alpha.4
2235
+
2236
+ ### Patch Changes
2237
+
2238
+ - 1d68b0c: update dane publishing
2239
+ - Updated dependencies [1d68b0c]
2240
+ - mastra@0.1.57-alpha.71
2241
+
2242
+ ## 0.1.0-alpha.3
2243
+
2244
+ ### Patch Changes
2245
+
2246
+ - abdd42d: polish mastra create, fix create-mastra publishing
2247
+ - Updated dependencies [abdd42d]
2248
+ - mastra@0.1.57-alpha.70
2249
+
2250
+ ## 0.1.0-alpha.2
2251
+
2252
+ ### Patch Changes
2253
+
2254
+ - 32cd966: new mastra create command, publish create-mastra a way to quickly spin up mastra apps
2255
+ - Updated dependencies [32cd966]
2256
+ - mastra@0.1.57-alpha.69
2257
+
2258
+ ## 0.1.1-alpha.0
2259
+
2260
+ ### Patch Changes
2261
+
2262
+ - Updated dependencies [c156b63]
2263
+ - mastra@0.1.57-alpha.68