create-mastra 0.0.0-taofeeqInngest-20250603090617 → 0.0.0-testing-cloud-studios-20260114234039

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