create-mastra 0.0.0-tsconfig-compile-20250703214351 → 0.0.0-type-testing-20260120105120

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