@mastra/playground-ui 7.0.0-beta.1 → 7.0.0-beta.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/CHANGELOG.md +262 -0
  2. package/dist/index.cjs.js +5133 -3551
  3. package/dist/index.cjs.js.map +1 -1
  4. package/dist/index.css +3 -0
  5. package/dist/index.es.js +5232 -3664
  6. package/dist/index.es.js.map +1 -1
  7. package/dist/src/components/assistant-ui/messages/tripwire-notice.d.ts +6 -0
  8. package/dist/src/components/dynamic-form/index.d.ts +2 -1
  9. package/dist/src/components/ui/autoform/CustomAutoForm.d.ts +2 -0
  10. package/dist/src/components/ui/elements/buttons/button.d.ts +1 -0
  11. package/dist/src/components/ui/elements/buttons/combined-buttons.d.ts +6 -0
  12. package/dist/src/components/ui/elements/buttons/index.d.ts +1 -0
  13. package/dist/src/components/ui/elements/form-fields/search-field.d.ts +4 -1
  14. package/dist/src/components/ui/elements/notification/notification.d.ts +3 -1
  15. package/dist/src/components/ui/elements/side-dialog/side-dialog-top.d.ts +1 -2
  16. package/dist/src/components/ui/input.d.ts +1 -1
  17. package/dist/src/domains/agents/components/agent-chat.d.ts +2 -1
  18. package/dist/src/domains/agents/components/agent-entity-header.d.ts +1 -3
  19. package/dist/src/domains/agents/components/agent-information/agent-information.d.ts +25 -0
  20. package/dist/src/domains/agents/components/agent-metadata/agent-metadata.d.ts +2 -11
  21. package/dist/src/domains/agents/components/agent-settings.d.ts +2 -4
  22. package/dist/src/domains/agents/index.d.ts +2 -0
  23. package/dist/src/domains/configuration/components/header-list-form.d.ts +10 -0
  24. package/dist/src/domains/configuration/components/playground-config-guard.d.ts +1 -0
  25. package/dist/src/domains/configuration/components/studio-config-form.d.ts +5 -0
  26. package/dist/src/domains/configuration/context/studio-config-context.d.ts +12 -0
  27. package/dist/src/domains/configuration/hooks/use-mastra-instance-status.d.ts +4 -0
  28. package/dist/src/domains/configuration/index.d.ts +4 -0
  29. package/dist/src/domains/configuration/types.d.ts +4 -0
  30. package/dist/src/domains/observability/components/helpers.d.ts +1 -3
  31. package/dist/src/domains/observability/components/index.d.ts +1 -1
  32. package/dist/src/domains/observability/components/shared.d.ts +2 -5
  33. package/dist/src/domains/observability/components/span-dialog.d.ts +4 -2
  34. package/dist/src/domains/observability/components/span-scoring.d.ts +5 -1
  35. package/dist/src/domains/observability/components/span-tabs.d.ts +4 -2
  36. package/dist/src/domains/observability/components/span-type-icon.d.ts +6 -0
  37. package/dist/src/domains/observability/components/timeline-expand-col.d.ts +13 -0
  38. package/dist/src/domains/observability/components/timeline-name-col.d.ts +16 -0
  39. package/dist/src/domains/observability/components/timeline-structure-sign.d.ts +7 -0
  40. package/dist/src/domains/observability/components/timeline-timing-col.d.ts +12 -0
  41. package/dist/src/domains/observability/components/trace-dialog.d.ts +4 -1
  42. package/dist/src/domains/observability/components/trace-timeline-span.d.ts +6 -1
  43. package/dist/src/domains/observability/components/trace-timeline-tools.d.ts +12 -0
  44. package/dist/src/domains/observability/components/trace-timeline.d.ts +5 -1
  45. package/dist/src/domains/observability/components/tracing-run-options.d.ts +1 -0
  46. package/dist/src/domains/observability/context/tracing-settings-context.d.ts +18 -0
  47. package/dist/src/domains/observability/hooks/use-tracing-settings-state.d.ts +10 -0
  48. package/dist/src/domains/observability/index.d.ts +1 -0
  49. package/dist/src/domains/observability/types.d.ts +13 -0
  50. package/dist/src/domains/observability/utils/__tests__/span-utils.test.d.ts +1 -0
  51. package/dist/src/domains/observability/utils/get-descendant-ids.d.ts +2 -0
  52. package/dist/src/domains/observability/utils/span-utils.d.ts +9 -0
  53. package/dist/src/domains/workflows/context/use-current-run.d.ts +17 -0
  54. package/dist/src/domains/workflows/context/workflow-run-context.d.ts +26 -6
  55. package/dist/src/domains/workflows/hooks/use-workflows-actions.d.ts +5 -0
  56. package/dist/src/domains/workflows/workflow/workflow-input-data.d.ts +2 -1
  57. package/dist/src/domains/workflows/workflow/workflow-status.d.ts +8 -1
  58. package/dist/src/domains/workflows/workflow/workflow-step-action-bar.d.ts +6 -2
  59. package/dist/src/domains/workflows/workflow/workflow-time-travel-form.d.ts +5 -0
  60. package/dist/src/ds/components/Button/Button.d.ts +1 -0
  61. package/dist/src/ds/tokens/sizes.d.ts +1 -0
  62. package/dist/src/hooks/use-agent-messages.d.ts +4 -3
  63. package/dist/src/hooks/use-workflow-runs.d.ts +223 -2
  64. package/dist/src/index.d.ts +1 -0
  65. package/dist/src/lib/tanstack-query.d.ts +5 -2
  66. package/dist/src/types.d.ts +2 -2
  67. package/dist/tokens.cjs.js +2 -1
  68. package/dist/tokens.cjs.js.map +1 -1
  69. package/dist/tokens.es.js +2 -1
  70. package/dist/tokens.es.js.map +1 -1
  71. package/package.json +24 -20
  72. package/dist/src/domains/observability/components/trace-timeline-legend.d.ts +0 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,267 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 7.0.0-beta.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Support new Workflow tripwire run status. Tripwires that are thrown from within a workflow will now bubble up and return a graceful state with information about tripwires. ([#10947](https://github.com/mastra-ai/mastra/pull/10947))
8
+
9
+ When a workflow contains an agent step that triggers a tripwire, the workflow returns with `status: 'tripwire'` and includes tripwire details:
10
+
11
+ ```typescript showLineNumbers copy
12
+ const run = await workflow.createRun();
13
+ const result = await run.start({ inputData: { message: 'Hello' } });
14
+
15
+ if (result.status === 'tripwire') {
16
+ console.log('Workflow terminated by tripwire:', result.tripwire?.reason);
17
+ console.log('Processor ID:', result.tripwire?.processorId);
18
+ console.log('Retry requested:', result.tripwire?.retry);
19
+ }
20
+ ```
21
+
22
+ Adds new UI state for tripwire in agent chat and workflow UI.
23
+
24
+ This is distinct from `status: 'failed'` which indicates an unexpected error. A tripwire status means a processor intentionally stopped execution (e.g., for content moderation).
25
+
26
+ - Updated dependencies [[`38380b6`](https://github.com/mastra-ai/mastra/commit/38380b60fca905824bdf6b43df307a58efb1aa15), [`798d0c7`](https://github.com/mastra-ai/mastra/commit/798d0c740232653b1d754870e6b43a55c364ffe2), [`ffe84d5`](https://github.com/mastra-ai/mastra/commit/ffe84d54f3b0f85167fe977efd027dba027eb998), [`2c212e7`](https://github.com/mastra-ai/mastra/commit/2c212e704c90e2db83d4109e62c03f0f6ebd2667), [`4ca4306`](https://github.com/mastra-ai/mastra/commit/4ca430614daa5fa04730205a302a43bf4accfe9f), [`3bf6c5f`](https://github.com/mastra-ai/mastra/commit/3bf6c5f104c25226cd84e0c77f9dec15f2cac2db), [`3bf6c5f`](https://github.com/mastra-ai/mastra/commit/3bf6c5f104c25226cd84e0c77f9dec15f2cac2db)]:
27
+ - @mastra/core@1.0.0-beta.11
28
+ - @mastra/client-js@1.0.0-beta.11
29
+ - @mastra/ai-sdk@1.0.0-beta.8
30
+ - @mastra/react@0.1.0-beta.11
31
+
32
+ ## 7.0.0-beta.10
33
+
34
+ ### Minor Changes
35
+
36
+ - Fix "MessagePartRuntime is not available" error when chatting with agents in Studio playground by replacing deprecated `useMessagePart` hook with `useAssistantState` ([#11039](https://github.com/mastra-ai/mastra/pull/11039))
37
+
38
+ ### Patch Changes
39
+
40
+ - Remove console.log in playground-ui ([#11004](https://github.com/mastra-ai/mastra/pull/11004))
41
+
42
+ - Use the hash based stringification mechanism of tanstack query to ensure keys ordering (and to keep the caching key valid and consistent) ([#11008](https://github.com/mastra-ai/mastra/pull/11008))
43
+
44
+ - Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
45
+
46
+ ```typescript
47
+ await workflow.deleteWorkflowRunById(runId);
48
+ ```
49
+
50
+ - Add the possibility to pass down options to the tanstack query client. Goal is to have cacheable request in cloud and it's not possible for now because of context resolution beeing different ([#11026](https://github.com/mastra-ai/mastra/pull/11026))
51
+
52
+ - fix: persist data-\* chunks from writer.custom() to memory storage ([#10884](https://github.com/mastra-ai/mastra/pull/10884))
53
+ - Add persistence for custom data chunks (`data-*` parts) emitted via `writer.custom()` in tools
54
+ - Data chunks are now saved to message storage so they survive page refreshes
55
+ - Update `@assistant-ui/react` to v0.11.47 with native `DataMessagePart` support
56
+ - Convert `data-*` parts to `DataMessagePart` format (`{ type: 'data', name: string, data: T }`)
57
+ - Update related `@assistant-ui/*` packages for compatibility
58
+
59
+ - Updated dependencies [[`edb07e4`](https://github.com/mastra-ai/mastra/commit/edb07e49283e0c28bd094a60e03439bf6ecf0221), [`b7e17d3`](https://github.com/mastra-ai/mastra/commit/b7e17d3f5390bb5a71efc112204413656fcdc18d), [`261473a`](https://github.com/mastra-ai/mastra/commit/261473ac637e633064a22076671e2e02b002214d), [`5d7000f`](https://github.com/mastra-ai/mastra/commit/5d7000f757cd65ea9dc5b05e662fd83dfd44e932), [`4f0331a`](https://github.com/mastra-ai/mastra/commit/4f0331a79bf6eb5ee598a5086e55de4b5a0ada03), [`151fe4d`](https://github.com/mastra-ai/mastra/commit/151fe4dd441c8ee038c628a3b9bbece7caf9b406), [`8a000da`](https://github.com/mastra-ai/mastra/commit/8a000da0c09c679a2312f6b3aa05b2ca78ca7393)]:
60
+ - @mastra/core@1.0.0-beta.10
61
+ - @mastra/client-js@1.0.0-beta.10
62
+ - @mastra/react@0.1.0-beta.10
63
+ - @mastra/ai-sdk@1.0.0-beta.7
64
+
65
+ ## 7.0.0-beta.9
66
+
67
+ ### Patch Changes
68
+
69
+ - Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
70
+
71
+ - Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
72
+
73
+ - 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))
74
+
75
+ - Add UI to match with the mastra studio command ([#10283](https://github.com/mastra-ai/mastra/pull/10283))
76
+
77
+ - Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
78
+
79
+ - Updated dependencies [[`72df8ae`](https://github.com/mastra-ai/mastra/commit/72df8ae595584cdd7747d5c39ffaca45e4507227), [`9198899`](https://github.com/mastra-ai/mastra/commit/91988995c427b185c33714b7f3be955367911324), [`a54793a`](https://github.com/mastra-ai/mastra/commit/a54793a6377edb87d43a795711deedf487152d5c), [`653e65a`](https://github.com/mastra-ai/mastra/commit/653e65ae1f9502c2958a32f47a5a2df11e612a92), [`c6fd6fe`](https://github.com/mastra-ai/mastra/commit/c6fd6fedd09e9cf8004b03a80925f5e94826ad7e), [`5a1ede1`](https://github.com/mastra-ai/mastra/commit/5a1ede1f7ab527b9ead11f7eee2f73e67aeca9e4), [`92a2ab4`](https://github.com/mastra-ai/mastra/commit/92a2ab408a21d7f88f8db111838bc247069c2ee9), [`0bed332`](https://github.com/mastra-ai/mastra/commit/0bed332843f627202c6520eaf671771313cd20f3), [`0bed332`](https://github.com/mastra-ai/mastra/commit/0bed332843f627202c6520eaf671771313cd20f3)]:
80
+ - @mastra/core@1.0.0-beta.9
81
+ - @mastra/ai-sdk@1.0.0-beta.7
82
+ - @mastra/client-js@1.0.0-beta.9
83
+ - @mastra/react@0.1.0-beta.9
84
+
85
+ ## 7.0.0-beta.8
86
+
87
+ ### Patch Changes
88
+
89
+ - Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`3d3c9e7`](https://github.com/mastra-ai/mastra/commit/3d3c9e7dc0b7b291abe6a11cf3807dd130034961), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
90
+ - @mastra/core@1.0.0-beta.8
91
+ - @mastra/ai-sdk@1.0.0-beta.6
92
+ - @mastra/client-js@1.0.0-beta.8
93
+ - @mastra/react@0.1.0-beta.8
94
+
95
+ ## 7.0.0-beta.7
96
+
97
+ ### Patch Changes
98
+
99
+ - Add StudioConfig and associated context to manage the headers and base URL of a given Mastra instance. ([#10804](https://github.com/mastra-ai/mastra/pull/10804))
100
+
101
+ This also introduces a header form available from the side bar to edit those headers.
102
+
103
+ - Fix select options overflow when list is long by adding maximum height ([#10813](https://github.com/mastra-ai/mastra/pull/10813))
104
+
105
+ - Removed uneeded calls to the message endpoint when the user is on a new thread ([#10872](https://github.com/mastra-ai/mastra/pull/10872))
106
+
107
+ - Add prominent warning banner in observability UI when token limits are exceeded (finishReason: 'length'). ([#10835](https://github.com/mastra-ai/mastra/pull/10835))
108
+
109
+ When a model stops generating due to token limits, the span details now display:
110
+ - Clear warning with alert icon
111
+ - Detailed token usage breakdown (input + output = total)
112
+ - Explanation that the response was truncated
113
+
114
+ This helps developers quickly identify and debug token limit issues in the observation page.
115
+
116
+ Fixes #8828
117
+
118
+ - Add a specific page for the studio settings and moved the headers configuration form here instead of in a dialog ([#10812](https://github.com/mastra-ai/mastra/pull/10812))
119
+
120
+ - Updated dependencies [[`3076c67`](https://github.com/mastra-ai/mastra/commit/3076c6778b18988ae7d5c4c5c466366974b2d63f), [`85d7ee1`](https://github.com/mastra-ai/mastra/commit/85d7ee18ff4e14d625a8a30ec6656bb49804989b), [`c6c1092`](https://github.com/mastra-ai/mastra/commit/c6c1092f8fbf76109303f69e000e96fd1960c4ce), [`81dc110`](https://github.com/mastra-ai/mastra/commit/81dc11008d147cf5bdc8996ead1aa61dbdebb6fc), [`7aedb74`](https://github.com/mastra-ai/mastra/commit/7aedb74883adf66af38e270e4068fd42e7a37036), [`8f02d80`](https://github.com/mastra-ai/mastra/commit/8f02d800777397e4b45d7f1ad041988a8b0c6630), [`d7aad50`](https://github.com/mastra-ai/mastra/commit/d7aad501ce61646b76b4b511e558ac4eea9884d0), [`ce0a73a`](https://github.com/mastra-ai/mastra/commit/ce0a73abeaa75b10ca38f9e40a255a645d50ebfb), [`a02e542`](https://github.com/mastra-ai/mastra/commit/a02e542d23179bad250b044b17ff023caa61739f), [`a372c64`](https://github.com/mastra-ai/mastra/commit/a372c640ad1fd12e8f0613cebdc682fc156b4d95), [`5fe71bc`](https://github.com/mastra-ai/mastra/commit/5fe71bc925dfce597df69c89241f33b378028c63), [`8846867`](https://github.com/mastra-ai/mastra/commit/8846867ffa9a3746767618e314bebac08eb77d87), [`42a42cf`](https://github.com/mastra-ai/mastra/commit/42a42cf3132b9786feecbb8c13c583dce5b0e198), [`ae08bf0`](https://github.com/mastra-ai/mastra/commit/ae08bf0ebc6a4e4da992b711c4a389c32ba84cf4), [`21735a7`](https://github.com/mastra-ai/mastra/commit/21735a7ef306963554a69a89b44f06c3bcd85141), [`1d877b8`](https://github.com/mastra-ai/mastra/commit/1d877b8d7b536a251c1a7a18db7ddcf4f68d6f8b)]:
121
+ - @mastra/core@1.0.0-beta.7
122
+ - @mastra/client-js@1.0.0-beta.7
123
+ - @mastra/react@0.1.0-beta.7
124
+
125
+ ## 7.0.0-beta.6
126
+
127
+ ### Patch Changes
128
+
129
+ - Fix wrong hook arg type when retrieving workflow runs ([#10755](https://github.com/mastra-ai/mastra/pull/10755))
130
+
131
+ - Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
132
+
133
+ - Hide time travel on map steps in Studio ([#10631](https://github.com/mastra-ai/mastra/pull/10631))
134
+
135
+ - Added tracing options to workflow runs and agent generate / stream / network. You can now configure tracing options, custom request context keys, and parent trace/span IDs through a new "Tracing options" tab in the workflow/agent ui UI. ([#10742](https://github.com/mastra-ai/mastra/pull/10742))
136
+
137
+ **Usage:**
138
+
139
+ The workflow settings are now accessible via the new `useTracingSettings` hook and `TracingSettingsProvider`:
140
+
141
+ ```tsx
142
+ import { TracingSettingsProvider, useWorkflowSettings } from '@mastra/playground-ui';
143
+
144
+ // Wrap your workflow components with the provider
145
+ <TracingSettingsProvider entityId="my-workflow" entityType="workflow">
146
+ <YourWorkflowUI />
147
+ </TracingSettingsProvider>;
148
+
149
+ // Access settings in child components
150
+ const { settings, setSettings } = useTracingSettings();
151
+
152
+ // Configure tracing options
153
+ setSettings({
154
+ tracingOptions: {
155
+ metadata: { userId: '123' },
156
+ requestContextKeys: ['user.email'],
157
+ traceId: 'abc123',
158
+ },
159
+ });
160
+ ```
161
+
162
+ Tracing options are persisted per workflow/agent in localStorage and automatically applied to all workflow/agent executions.
163
+
164
+ - Updated dependencies [[`ac0d2f4`](https://github.com/mastra-ai/mastra/commit/ac0d2f4ff8831f72c1c66c2be809706d17f65789), [`6edf340`](https://github.com/mastra-ai/mastra/commit/6edf3402f6a46ee8def2f42a2287785251fbffd6), [`17b4b46`](https://github.com/mastra-ai/mastra/commit/17b4b46339898f13f52c4c4e3d16c52630629c29), [`1a0d3fc`](https://github.com/mastra-ai/mastra/commit/1a0d3fc811482c9c376cdf79ee615c23bae9b2d6), [`85a628b`](https://github.com/mastra-ai/mastra/commit/85a628b1224a8f64cd82ea7f033774bf22df7a7e), [`c237233`](https://github.com/mastra-ai/mastra/commit/c23723399ccedf7f5744b3f40997b79246bfbe64), [`15f9e21`](https://github.com/mastra-ai/mastra/commit/15f9e216177201ea6e3f6d0bfb063fcc0953444f), [`ff94dea`](https://github.com/mastra-ai/mastra/commit/ff94dea935f4e34545c63bcb6c29804732698809), [`5b2ff46`](https://github.com/mastra-ai/mastra/commit/5b2ff4651df70c146523a7fca773f8eb0a2272f8), [`db41688`](https://github.com/mastra-ai/mastra/commit/db4168806d007417e2e60b4f68656dca4e5f40c9), [`91c3a61`](https://github.com/mastra-ai/mastra/commit/91c3a61c533b348a18ba4394069efff26ac7d5a7), [`ad7e8f1`](https://github.com/mastra-ai/mastra/commit/ad7e8f16ac843cbd16687ad47b66ba96bcffe111), [`5ca599d`](https://github.com/mastra-ai/mastra/commit/5ca599d0bb59a1595f19f58473fcd67cc71cef58), [`bff1145`](https://github.com/mastra-ai/mastra/commit/bff114556b3cbadad9b2768488708f8ad0e91475), [`5c8ca24`](https://github.com/mastra-ai/mastra/commit/5c8ca247094e0cc2cdbd7137822fb47241f86e77), [`e1b7118`](https://github.com/mastra-ai/mastra/commit/e1b7118f42ca0a97247afc75e57dcd5fdf987752), [`441c7b6`](https://github.com/mastra-ai/mastra/commit/441c7b6665915cfa7fd625fded8c0f518530bf10), [`441c7b6`](https://github.com/mastra-ai/mastra/commit/441c7b6665915cfa7fd625fded8c0f518530bf10), [`e191844`](https://github.com/mastra-ai/mastra/commit/e1918444ca3f80e82feef1dad506cd4ec6e2875f), [`22553f1`](https://github.com/mastra-ai/mastra/commit/22553f11c63ee5e966a9c034a349822249584691), [`7237163`](https://github.com/mastra-ai/mastra/commit/72371635dbf96a87df4b073cc48fc655afbdce3d), [`2500740`](https://github.com/mastra-ai/mastra/commit/2500740ea23da067d6e50ec71c625ab3ce275e64), [`873ecbb`](https://github.com/mastra-ai/mastra/commit/873ecbb517586aa17d2f1e99283755b3ebb2863f), [`4f9bbe5`](https://github.com/mastra-ai/mastra/commit/4f9bbe5968f42c86f4930b8193de3c3c17e5bd36), [`02e51fe`](https://github.com/mastra-ai/mastra/commit/02e51feddb3d4155cfbcc42624fd0d0970d032c0), [`8f3fa3a`](https://github.com/mastra-ai/mastra/commit/8f3fa3a652bb77da092f913ec51ae46e3a7e27dc), [`cd29ad2`](https://github.com/mastra-ai/mastra/commit/cd29ad23a255534e8191f249593849ed29160886), [`bdf4d8c`](https://github.com/mastra-ai/mastra/commit/bdf4d8cdc656d8a2c21d81834bfa3bfa70f56c16), [`854e3da`](https://github.com/mastra-ai/mastra/commit/854e3dad5daac17a91a20986399d3a51f54bf68b), [`ce18d38`](https://github.com/mastra-ai/mastra/commit/ce18d38678c65870350d123955014a8432075fd9), [`cccf9c8`](https://github.com/mastra-ai/mastra/commit/cccf9c8b2d2dfc1a5e63919395b83d78c89682a0), [`61a5705`](https://github.com/mastra-ai/mastra/commit/61a570551278b6743e64243b3ce7d73de915ca8a), [`db70a48`](https://github.com/mastra-ai/mastra/commit/db70a48aeeeeb8e5f92007e8ede52c364ce15287), [`f0fdc14`](https://github.com/mastra-ai/mastra/commit/f0fdc14ee233d619266b3d2bbdeea7d25cfc6d13), [`db18bc9`](https://github.com/mastra-ai/mastra/commit/db18bc9c3825e2c1a0ad9a183cc9935f6691bfa1), [`9b37b56`](https://github.com/mastra-ai/mastra/commit/9b37b565e1f2a76c24f728945cc740c2b09be9da), [`41a23c3`](https://github.com/mastra-ai/mastra/commit/41a23c32f9877d71810f37e24930515df2ff7a0f), [`5d171ad`](https://github.com/mastra-ai/mastra/commit/5d171ad9ef340387276b77c2bb3e83e83332d729), [`f03ae60`](https://github.com/mastra-ai/mastra/commit/f03ae60500fe350c9d828621006cdafe1975fdd8), [`d1e74a0`](https://github.com/mastra-ai/mastra/commit/d1e74a0a293866dece31022047f5dbab65a304d0), [`39e7869`](https://github.com/mastra-ai/mastra/commit/39e7869bc7d0ee391077ce291474d8a84eedccff), [`e849603`](https://github.com/mastra-ai/mastra/commit/e849603a596269069f58a438b98449ea2770493d), [`5761926`](https://github.com/mastra-ai/mastra/commit/57619260c4a2cdd598763abbacd90de594c6bc76), [`c900fdd`](https://github.com/mastra-ai/mastra/commit/c900fdd504c41348efdffb205cfe80d48c38fa33), [`604a79f`](https://github.com/mastra-ai/mastra/commit/604a79fecf276e26a54a3fe01bb94e65315d2e0e), [`887f0b4`](https://github.com/mastra-ai/mastra/commit/887f0b4746cdbd7cb7d6b17ac9f82aeb58037ea5), [`2562143`](https://github.com/mastra-ai/mastra/commit/256214336b4faa78646c9c1776612393790d8784), [`e24d4c0`](https://github.com/mastra-ai/mastra/commit/e24d4c0e8a340c47cfa901ebe299cb9ed6c699b4), [`ef11a61`](https://github.com/mastra-ai/mastra/commit/ef11a61920fa0ed08a5b7ceedd192875af119749)]:
165
+ - @mastra/core@1.0.0-beta.6
166
+ - @mastra/client-js@1.0.0-beta.6
167
+ - @mastra/ai-sdk@1.0.0-beta.5
168
+ - @mastra/react@0.1.0-beta.6
169
+ - @mastra/schema-compat@1.0.0-beta.2
170
+
171
+ ## 7.0.0-beta.5
172
+
173
+ ### Patch Changes
174
+
175
+ - Add timeTravel APIs and add timeTravel feature to studio ([#10361](https://github.com/mastra-ai/mastra/pull/10361))
176
+
177
+ - fix(agent): persist messages before tool suspension ([#10369](https://github.com/mastra-ai/mastra/pull/10369))
178
+
179
+ Fixes issues where thread and messages were not saved before suspension when tools require approval or call suspend() during execution. This caused conversation history to be lost if users refreshed during tool approval or suspension.
180
+
181
+ **Backend changes (@mastra/core):**
182
+ - Add assistant messages to messageList immediately after LLM execution
183
+ - Flush messages synchronously before suspension to persist state
184
+ - Create thread if it doesn't exist before flushing
185
+ - Add metadata helpers to persist and remove tool approval state
186
+ - Pass saveQueueManager and memory context through workflow for immediate persistence
187
+
188
+ **Frontend changes (@mastra/react):**
189
+ - Extract runId from pending approvals to enable resumption after refresh
190
+ - Convert `pendingToolApprovals` (DB format) to `requireApprovalMetadata` (runtime format)
191
+ - Handle both `dynamic-tool` and `tool-{NAME}` part types for approval state
192
+ - Change runId from hardcoded `agentId` to unique `uuid()`
193
+
194
+ **UI changes (@mastra/playground-ui):**
195
+ - Handle tool calls awaiting approval in message initialization
196
+ - Convert approval metadata format when loading initial messages
197
+
198
+ Fixes #9745, #9906
199
+
200
+ - Fixed "Module not found: Can't resolve '@mastra/ai-sdk/ui'" error when playground-ui is used on Cloud by converting @mastra/ai-sdk to a peer dependency ([#10388](https://github.com/mastra-ai/mastra/pull/10388))
201
+
202
+ - Updated dependencies [[`21a15de`](https://github.com/mastra-ai/mastra/commit/21a15de369fe82aac26bb642ed7be73505475e8b), [`feb7ee4`](https://github.com/mastra-ai/mastra/commit/feb7ee4d09a75edb46c6669a3beaceec78811747), [`b0e2ea5`](https://github.com/mastra-ai/mastra/commit/b0e2ea5b52c40fae438b9e2f7baee6f0f89c5442), [`c456e01`](https://github.com/mastra-ai/mastra/commit/c456e0149e3c176afcefdbd9bb1d2c5917723725), [`6de8ffd`](https://github.com/mastra-ai/mastra/commit/6de8ffda7ab06bce012fdeac3eacc6d2d138c097), [`ab035c2`](https://github.com/mastra-ai/mastra/commit/ab035c2ef6d8cc7bb25f06f1a38508bd9e6f126b), [`87cf8d3`](https://github.com/mastra-ai/mastra/commit/87cf8d37564040eb4137a5923edb134c6ea51114), [`1a46a56`](https://github.com/mastra-ai/mastra/commit/1a46a566f45a3fcbadc1cf36bf86d351f264bfa3), [`3cf540b`](https://github.com/mastra-ai/mastra/commit/3cf540b9fbfea8f4fc8d3a2319a4e6c0b0cbfd52), [`1c6ce51`](https://github.com/mastra-ai/mastra/commit/1c6ce51f875915ab57fd36873623013699a2a65d), [`898a972`](https://github.com/mastra-ai/mastra/commit/898a9727d286c2510d6b702dfd367e6aaf5c6b0f), [`a97003a`](https://github.com/mastra-ai/mastra/commit/a97003aa1cf2f4022a41912324a1e77263b326b8), [`ccc141e`](https://github.com/mastra-ai/mastra/commit/ccc141ed27da0abc3a3fc28e9e5128152e8e37f4), [`922305b`](https://github.com/mastra-ai/mastra/commit/922305b747c9b081b51af81f5f4d5ba09fb22f5d), [`fe3b897`](https://github.com/mastra-ai/mastra/commit/fe3b897c2ccbcd2b10e81b099438c7337feddf89), [`00123ba`](https://github.com/mastra-ai/mastra/commit/00123ba96dc9e5cd0b110420ebdba56d8f237b25), [`29c4309`](https://github.com/mastra-ai/mastra/commit/29c4309f818b24304c041bcb4a8f19b5f13f6b62), [`16785ce`](https://github.com/mastra-ai/mastra/commit/16785ced928f6f22638f4488cf8a125d99211799), [`de8239b`](https://github.com/mastra-ai/mastra/commit/de8239bdcb1d8c0cfa06da21f1569912a66bbc8a), [`b5e6cd7`](https://github.com/mastra-ai/mastra/commit/b5e6cd77fc8c8e64e0494c1d06cee3d84e795d1e), [`497f918`](https://github.com/mastra-ai/mastra/commit/497f9182135aaf2beb00887d94fcd93afe149d8b), [`3759cb0`](https://github.com/mastra-ai/mastra/commit/3759cb064935b5f74c65ac2f52a1145f7352899d), [`651e772`](https://github.com/mastra-ai/mastra/commit/651e772eb1475fb13e126d3fcc01751297a88214), [`b61b93f`](https://github.com/mastra-ai/mastra/commit/b61b93f9e058b11dd2eec169853175d31dbdd567), [`bae33d9`](https://github.com/mastra-ai/mastra/commit/bae33d91a63fbb64d1e80519e1fc1acaed1e9013), [`c0b731f`](https://github.com/mastra-ai/mastra/commit/c0b731fb27d712dc8582e846df5c0332a6a0c5ba), [`43ca8f2`](https://github.com/mastra-ai/mastra/commit/43ca8f2c7334851cc7b4d3d2f037d8784bfbdd5f), [`2ca67cc`](https://github.com/mastra-ai/mastra/commit/2ca67cc3bb1f6a617353fdcab197d9efebe60d6f), [`9e67002`](https://github.com/mastra-ai/mastra/commit/9e67002b52c9be19936c420a489dbee9c5fd6a78), [`35edc49`](https://github.com/mastra-ai/mastra/commit/35edc49ac0556db609189641d6341e76771b81fc), [`dfe0f61`](https://github.com/mastra-ai/mastra/commit/dfe0f61b48a8b0ad43e55b0c88920089d199a7eb), [`ee6c628`](https://github.com/mastra-ai/mastra/commit/ee6c628fabfb18323bee319268d122f3835e393f)]:
203
+ - @mastra/core@1.0.0-beta.5
204
+ - @mastra/ai-sdk@1.0.0-beta.4
205
+ - @mastra/client-js@1.0.0-beta.5
206
+ - @mastra/react@0.1.0-beta.5
207
+
208
+ ## 7.0.0-beta.4
209
+
210
+ ### Patch Changes
211
+
212
+ - Updated dependencies [[`47c34d8`](https://github.com/mastra-ai/mastra/commit/47c34d8e8c3e8aae5c00efc6085c064f2404b346), [`6a86fe5`](https://github.com/mastra-ai/mastra/commit/6a86fe56b8ff53ca2eb3ed87ffc0748749ebadce), [`352a5d6`](https://github.com/mastra-ai/mastra/commit/352a5d625cfe09849b21e8f52a24c9f0366759d5), [`595a3b8`](https://github.com/mastra-ai/mastra/commit/595a3b8727c901f44e333909c09843c711224440), [`a0a5b4b`](https://github.com/mastra-ai/mastra/commit/a0a5b4bbebe6c701ebbadf744873aa0d5ca01371), [`69ea758`](https://github.com/mastra-ai/mastra/commit/69ea758358edd7117f191c2e69c8bb5fc79e7a1a), [`993ad98`](https://github.com/mastra-ai/mastra/commit/993ad98d7ad3bebda9ecef5fec5c94349a0d04bc), [`3ff2c17`](https://github.com/mastra-ai/mastra/commit/3ff2c17a58e312fad5ea37377262c12d92ca0908)]:
213
+ - @mastra/ai-sdk@1.0.0-beta.3
214
+ - @mastra/client-js@1.0.0-beta.4
215
+ - @mastra/core@1.0.0-beta.4
216
+ - @mastra/react@0.1.0-beta.4
217
+
218
+ ## 7.0.0-beta.3
219
+
220
+ ### Patch Changes
221
+
222
+ - dependencies updates: ([#10057](https://github.com/mastra-ai/mastra/pull/10057))
223
+ - Updated dependency [`@uiw/codemirror-theme-github@^4.25.3` ↗︎](https://www.npmjs.com/package/@uiw/codemirror-theme-github/v/4.25.3) (from `^4.25.2`, in `dependencies`)
224
+
225
+ - dependencies updates: ([#10085](https://github.com/mastra-ai/mastra/pull/10085))
226
+ - Updated dependency [`@xyflow/react@^12.9.3` ↗︎](https://www.npmjs.com/package/@xyflow/react/v/12.9.3) (from `^12.8.6`, in `dependencies`)
227
+
228
+ - dependencies updates: ([#9850](https://github.com/mastra-ai/mastra/pull/9850))
229
+ - Updated dependency [`@dagrejs/dagre@^1.1.8` ↗︎](https://www.npmjs.com/package/@dagrejs/dagre/v/1.1.8) (from `^1.1.5`, in `dependencies`)
230
+
231
+ - Refactor agent information for easier cloud recomposable UIs ([#9995](https://github.com/mastra-ai/mastra/pull/9995))
232
+
233
+ - Add export for agent memory for use in cloud ([#10025](https://github.com/mastra-ai/mastra/pull/10025))
234
+
235
+ - Fix scorer filtering for SpanScoring, add error and info message for user ([#10160](https://github.com/mastra-ai/mastra/pull/10160))
236
+
237
+ - Templates now don't dynamically create a branch for every provider, each template should be agnostic and just use a env var to set the models until the user wants to set it otherwise. ([#10036](https://github.com/mastra-ai/mastra/pull/10036))
238
+ MCP docs server will install the beta version of the docs server if they create a project with the beta tag.
239
+ Updates to the templates now will get pushed to the beta branch, when beta goes stable we will merge the beta branch into the main branch for all templates and update the github script to push to main.
240
+ Templates have been cleaned up
241
+ small docs updates based off of how the template migrations went
242
+
243
+ - Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
244
+
245
+ - Updated dependencies [[`2319326`](https://github.com/mastra-ai/mastra/commit/2319326f8c64e503a09bbcf14be2dd65405445e0), [`d629361`](https://github.com/mastra-ai/mastra/commit/d629361a60f6565b5bfb11976fdaf7308af858e2), [`08c31c1`](https://github.com/mastra-ai/mastra/commit/08c31c188ebccd598acaf55e888b6397d01f7eae), [`fd3d338`](https://github.com/mastra-ai/mastra/commit/fd3d338a2c362174ed5b383f1f011ad9fb0302aa), [`c30400a`](https://github.com/mastra-ai/mastra/commit/c30400a49b994b1b97256fe785eb6c906fc2b232), [`69e0a87`](https://github.com/mastra-ai/mastra/commit/69e0a878896a2da9494945d86e056a5f8f05b851), [`01f8878`](https://github.com/mastra-ai/mastra/commit/01f88783de25e4de048c1c8aace43e26373c6ea5), [`4c77209`](https://github.com/mastra-ai/mastra/commit/4c77209e6c11678808b365d545845918c40045c8), [`d827d08`](https://github.com/mastra-ai/mastra/commit/d827d0808ffe1f3553a84e975806cc989b9735dd), [`b98ba1a`](https://github.com/mastra-ai/mastra/commit/b98ba1af73e5d6106965c3de30fbe9e6edc907ce), [`23c10a1`](https://github.com/mastra-ai/mastra/commit/23c10a1efdd9a693c405511ab2dc8a1236603162), [`676ccc7`](https://github.com/mastra-ai/mastra/commit/676ccc7fe92468d2d45d39c31a87825c89fd1ea0), [`c10398d`](https://github.com/mastra-ai/mastra/commit/c10398d5b88f1d4af556f4267ff06f1d11e89179), [`271519f`](https://github.com/mastra-ai/mastra/commit/271519ffffb7efcd5bd2a34ec5c290620c4e7114), [`00c2387`](https://github.com/mastra-ai/mastra/commit/00c2387f5f04a365316f851e58666ac43f8c4edf), [`ad6250d`](https://github.com/mastra-ai/mastra/commit/ad6250dbdaad927e29f74a27b83f6c468b50a705), [`3a73998`](https://github.com/mastra-ai/mastra/commit/3a73998fa4ebeb7f3dc9301afe78095fc63e7999), [`e16d553`](https://github.com/mastra-ai/mastra/commit/e16d55338403c7553531cc568125c63d53653dff), [`4d59f58`](https://github.com/mastra-ai/mastra/commit/4d59f58de2d90d6e2810a19d4518e38ddddb9038), [`e1bb9c9`](https://github.com/mastra-ai/mastra/commit/e1bb9c94b4eb68b019ae275981be3feb769b5365), [`351a11f`](https://github.com/mastra-ai/mastra/commit/351a11fcaf2ed1008977fa9b9a489fc422e51cd4)]:
246
+ - @mastra/core@1.0.0-beta.3
247
+ - @mastra/ai-sdk@1.0.0-beta.2
248
+ - @mastra/client-js@1.0.0-beta.3
249
+ - @mastra/react@0.1.0-beta.3
250
+
251
+ ## 7.0.0-beta.2
252
+
253
+ ### Patch Changes
254
+
255
+ - Make suspendPayload optional when calling `suspend()` ([#9926](https://github.com/mastra-ai/mastra/pull/9926))
256
+ Save value returned as `suspendOutput` if user returns data still after calling `suspend()`
257
+ Automatically call `commit()` on uncommitted workflows when registering in Mastra instance
258
+ Show actual suspendPayload on Studio in suspend/resume flow
259
+ - Updated dependencies [[`627067b`](https://github.com/mastra-ai/mastra/commit/627067b22eeb26601f65fee3646ba17fc0c91501), [`465ac05`](https://github.com/mastra-ai/mastra/commit/465ac0526a91d175542091c675181f1a96c98c46)]:
260
+ - @mastra/ai-sdk@1.0.0-beta.1
261
+ - @mastra/core@1.0.0-beta.2
262
+ - @mastra/client-js@1.0.0-beta.2
263
+ - @mastra/react@0.1.0-beta.2
264
+
3
265
  ## 7.0.0-beta.1
4
266
 
5
267
  ### Patch Changes