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

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 (70) hide show
  1. package/CHANGELOG.md +233 -0
  2. package/dist/index.cjs.js +5052 -3658
  3. package/dist/index.cjs.js.map +1 -1
  4. package/dist/index.css +3 -0
  5. package/dist/index.es.js +5013 -3633
  6. package/dist/index.es.js.map +1 -1
  7. package/dist/src/components/dynamic-form/index.d.ts +2 -1
  8. package/dist/src/components/ui/autoform/CustomAutoForm.d.ts +2 -0
  9. package/dist/src/components/ui/elements/buttons/button.d.ts +1 -0
  10. package/dist/src/components/ui/elements/buttons/combined-buttons.d.ts +6 -0
  11. package/dist/src/components/ui/elements/buttons/index.d.ts +1 -0
  12. package/dist/src/components/ui/elements/form-fields/search-field.d.ts +4 -1
  13. package/dist/src/components/ui/elements/notification/notification.d.ts +3 -1
  14. package/dist/src/components/ui/elements/side-dialog/side-dialog-top.d.ts +1 -2
  15. package/dist/src/components/ui/input.d.ts +1 -1
  16. package/dist/src/domains/agents/components/agent-chat.d.ts +2 -1
  17. package/dist/src/domains/agents/components/agent-entity-header.d.ts +1 -3
  18. package/dist/src/domains/agents/components/agent-information/agent-information.d.ts +25 -0
  19. package/dist/src/domains/agents/components/agent-metadata/agent-metadata.d.ts +2 -11
  20. package/dist/src/domains/agents/components/agent-settings.d.ts +2 -4
  21. package/dist/src/domains/agents/index.d.ts +2 -0
  22. package/dist/src/domains/configuration/components/header-list-form.d.ts +10 -0
  23. package/dist/src/domains/configuration/components/playground-config-guard.d.ts +1 -0
  24. package/dist/src/domains/configuration/components/studio-config-form.d.ts +5 -0
  25. package/dist/src/domains/configuration/context/studio-config-context.d.ts +12 -0
  26. package/dist/src/domains/configuration/hooks/use-mastra-instance-status.d.ts +4 -0
  27. package/dist/src/domains/configuration/index.d.ts +4 -0
  28. package/dist/src/domains/configuration/types.d.ts +4 -0
  29. package/dist/src/domains/observability/components/helpers.d.ts +1 -3
  30. package/dist/src/domains/observability/components/index.d.ts +1 -1
  31. package/dist/src/domains/observability/components/shared.d.ts +2 -5
  32. package/dist/src/domains/observability/components/span-dialog.d.ts +4 -2
  33. package/dist/src/domains/observability/components/span-scoring.d.ts +5 -1
  34. package/dist/src/domains/observability/components/span-tabs.d.ts +4 -2
  35. package/dist/src/domains/observability/components/span-type-icon.d.ts +6 -0
  36. package/dist/src/domains/observability/components/timeline-expand-col.d.ts +13 -0
  37. package/dist/src/domains/observability/components/timeline-name-col.d.ts +16 -0
  38. package/dist/src/domains/observability/components/timeline-structure-sign.d.ts +7 -0
  39. package/dist/src/domains/observability/components/timeline-timing-col.d.ts +12 -0
  40. package/dist/src/domains/observability/components/trace-dialog.d.ts +4 -1
  41. package/dist/src/domains/observability/components/trace-timeline-span.d.ts +6 -1
  42. package/dist/src/domains/observability/components/trace-timeline-tools.d.ts +12 -0
  43. package/dist/src/domains/observability/components/trace-timeline.d.ts +5 -1
  44. package/dist/src/domains/observability/components/tracing-run-options.d.ts +1 -0
  45. package/dist/src/domains/observability/context/tracing-settings-context.d.ts +18 -0
  46. package/dist/src/domains/observability/hooks/use-tracing-settings-state.d.ts +10 -0
  47. package/dist/src/domains/observability/index.d.ts +1 -0
  48. package/dist/src/domains/observability/types.d.ts +13 -0
  49. package/dist/src/domains/observability/utils/__tests__/span-utils.test.d.ts +1 -0
  50. package/dist/src/domains/observability/utils/get-descendant-ids.d.ts +2 -0
  51. package/dist/src/domains/observability/utils/span-utils.d.ts +9 -0
  52. package/dist/src/domains/workflows/context/use-current-run.d.ts +2 -0
  53. package/dist/src/domains/workflows/context/workflow-run-context.d.ts +26 -6
  54. package/dist/src/domains/workflows/hooks/use-workflows-actions.d.ts +5 -0
  55. package/dist/src/domains/workflows/workflow/workflow-input-data.d.ts +2 -1
  56. package/dist/src/domains/workflows/workflow/workflow-step-action-bar.d.ts +3 -1
  57. package/dist/src/domains/workflows/workflow/workflow-time-travel-form.d.ts +5 -0
  58. package/dist/src/ds/components/Button/Button.d.ts +1 -0
  59. package/dist/src/ds/tokens/sizes.d.ts +1 -0
  60. package/dist/src/hooks/use-agent-messages.d.ts +4 -3
  61. package/dist/src/hooks/use-workflow-runs.d.ts +223 -2
  62. package/dist/src/index.d.ts +1 -0
  63. package/dist/src/lib/tanstack-query.d.ts +5 -2
  64. package/dist/src/types.d.ts +2 -2
  65. package/dist/tokens.cjs.js +2 -1
  66. package/dist/tokens.cjs.js.map +1 -1
  67. package/dist/tokens.es.js +2 -1
  68. package/dist/tokens.es.js.map +1 -1
  69. package/package.json +24 -20
  70. package/dist/src/domains/observability/components/trace-timeline-legend.d.ts +0 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,238 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 7.0.0-beta.10
4
+
5
+ ### Minor Changes
6
+
7
+ - 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))
8
+
9
+ ### Patch Changes
10
+
11
+ - Remove console.log in playground-ui ([#11004](https://github.com/mastra-ai/mastra/pull/11004))
12
+
13
+ - 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))
14
+
15
+ - Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
16
+
17
+ ```typescript
18
+ await workflow.deleteWorkflowRunById(runId);
19
+ ```
20
+
21
+ - 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))
22
+
23
+ - fix: persist data-\* chunks from writer.custom() to memory storage ([#10884](https://github.com/mastra-ai/mastra/pull/10884))
24
+ - Add persistence for custom data chunks (`data-*` parts) emitted via `writer.custom()` in tools
25
+ - Data chunks are now saved to message storage so they survive page refreshes
26
+ - Update `@assistant-ui/react` to v0.11.47 with native `DataMessagePart` support
27
+ - Convert `data-*` parts to `DataMessagePart` format (`{ type: 'data', name: string, data: T }`)
28
+ - Update related `@assistant-ui/*` packages for compatibility
29
+
30
+ - 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)]:
31
+ - @mastra/core@1.0.0-beta.10
32
+ - @mastra/client-js@1.0.0-beta.10
33
+ - @mastra/react@0.1.0-beta.10
34
+ - @mastra/ai-sdk@1.0.0-beta.7
35
+
36
+ ## 7.0.0-beta.9
37
+
38
+ ### Patch Changes
39
+
40
+ - Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
41
+
42
+ - Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
43
+
44
+ - 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))
45
+
46
+ - Add UI to match with the mastra studio command ([#10283](https://github.com/mastra-ai/mastra/pull/10283))
47
+
48
+ - Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
49
+
50
+ - 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)]:
51
+ - @mastra/core@1.0.0-beta.9
52
+ - @mastra/ai-sdk@1.0.0-beta.7
53
+ - @mastra/client-js@1.0.0-beta.9
54
+ - @mastra/react@0.1.0-beta.9
55
+
56
+ ## 7.0.0-beta.8
57
+
58
+ ### Patch Changes
59
+
60
+ - 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)]:
61
+ - @mastra/core@1.0.0-beta.8
62
+ - @mastra/ai-sdk@1.0.0-beta.6
63
+ - @mastra/client-js@1.0.0-beta.8
64
+ - @mastra/react@0.1.0-beta.8
65
+
66
+ ## 7.0.0-beta.7
67
+
68
+ ### Patch Changes
69
+
70
+ - 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))
71
+
72
+ This also introduces a header form available from the side bar to edit those headers.
73
+
74
+ - Fix select options overflow when list is long by adding maximum height ([#10813](https://github.com/mastra-ai/mastra/pull/10813))
75
+
76
+ - Removed uneeded calls to the message endpoint when the user is on a new thread ([#10872](https://github.com/mastra-ai/mastra/pull/10872))
77
+
78
+ - Add prominent warning banner in observability UI when token limits are exceeded (finishReason: 'length'). ([#10835](https://github.com/mastra-ai/mastra/pull/10835))
79
+
80
+ When a model stops generating due to token limits, the span details now display:
81
+ - Clear warning with alert icon
82
+ - Detailed token usage breakdown (input + output = total)
83
+ - Explanation that the response was truncated
84
+
85
+ This helps developers quickly identify and debug token limit issues in the observation page.
86
+
87
+ Fixes #8828
88
+
89
+ - 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))
90
+
91
+ - 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)]:
92
+ - @mastra/core@1.0.0-beta.7
93
+ - @mastra/client-js@1.0.0-beta.7
94
+ - @mastra/react@0.1.0-beta.7
95
+
96
+ ## 7.0.0-beta.6
97
+
98
+ ### Patch Changes
99
+
100
+ - Fix wrong hook arg type when retrieving workflow runs ([#10755](https://github.com/mastra-ai/mastra/pull/10755))
101
+
102
+ - Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
103
+
104
+ - Hide time travel on map steps in Studio ([#10631](https://github.com/mastra-ai/mastra/pull/10631))
105
+
106
+ - 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))
107
+
108
+ **Usage:**
109
+
110
+ The workflow settings are now accessible via the new `useTracingSettings` hook and `TracingSettingsProvider`:
111
+
112
+ ```tsx
113
+ import { TracingSettingsProvider, useWorkflowSettings } from '@mastra/playground-ui';
114
+
115
+ // Wrap your workflow components with the provider
116
+ <TracingSettingsProvider entityId="my-workflow" entityType="workflow">
117
+ <YourWorkflowUI />
118
+ </TracingSettingsProvider>;
119
+
120
+ // Access settings in child components
121
+ const { settings, setSettings } = useTracingSettings();
122
+
123
+ // Configure tracing options
124
+ setSettings({
125
+ tracingOptions: {
126
+ metadata: { userId: '123' },
127
+ requestContextKeys: ['user.email'],
128
+ traceId: 'abc123',
129
+ },
130
+ });
131
+ ```
132
+
133
+ Tracing options are persisted per workflow/agent in localStorage and automatically applied to all workflow/agent executions.
134
+
135
+ - 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)]:
136
+ - @mastra/core@1.0.0-beta.6
137
+ - @mastra/client-js@1.0.0-beta.6
138
+ - @mastra/ai-sdk@1.0.0-beta.5
139
+ - @mastra/react@0.1.0-beta.6
140
+ - @mastra/schema-compat@1.0.0-beta.2
141
+
142
+ ## 7.0.0-beta.5
143
+
144
+ ### Patch Changes
145
+
146
+ - Add timeTravel APIs and add timeTravel feature to studio ([#10361](https://github.com/mastra-ai/mastra/pull/10361))
147
+
148
+ - fix(agent): persist messages before tool suspension ([#10369](https://github.com/mastra-ai/mastra/pull/10369))
149
+
150
+ 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.
151
+
152
+ **Backend changes (@mastra/core):**
153
+ - Add assistant messages to messageList immediately after LLM execution
154
+ - Flush messages synchronously before suspension to persist state
155
+ - Create thread if it doesn't exist before flushing
156
+ - Add metadata helpers to persist and remove tool approval state
157
+ - Pass saveQueueManager and memory context through workflow for immediate persistence
158
+
159
+ **Frontend changes (@mastra/react):**
160
+ - Extract runId from pending approvals to enable resumption after refresh
161
+ - Convert `pendingToolApprovals` (DB format) to `requireApprovalMetadata` (runtime format)
162
+ - Handle both `dynamic-tool` and `tool-{NAME}` part types for approval state
163
+ - Change runId from hardcoded `agentId` to unique `uuid()`
164
+
165
+ **UI changes (@mastra/playground-ui):**
166
+ - Handle tool calls awaiting approval in message initialization
167
+ - Convert approval metadata format when loading initial messages
168
+
169
+ Fixes #9745, #9906
170
+
171
+ - 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))
172
+
173
+ - 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)]:
174
+ - @mastra/core@1.0.0-beta.5
175
+ - @mastra/ai-sdk@1.0.0-beta.4
176
+ - @mastra/client-js@1.0.0-beta.5
177
+ - @mastra/react@0.1.0-beta.5
178
+
179
+ ## 7.0.0-beta.4
180
+
181
+ ### Patch Changes
182
+
183
+ - 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)]:
184
+ - @mastra/ai-sdk@1.0.0-beta.3
185
+ - @mastra/client-js@1.0.0-beta.4
186
+ - @mastra/core@1.0.0-beta.4
187
+ - @mastra/react@0.1.0-beta.4
188
+
189
+ ## 7.0.0-beta.3
190
+
191
+ ### Patch Changes
192
+
193
+ - dependencies updates: ([#10057](https://github.com/mastra-ai/mastra/pull/10057))
194
+ - 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`)
195
+
196
+ - dependencies updates: ([#10085](https://github.com/mastra-ai/mastra/pull/10085))
197
+ - Updated dependency [`@xyflow/react@^12.9.3` ↗︎](https://www.npmjs.com/package/@xyflow/react/v/12.9.3) (from `^12.8.6`, in `dependencies`)
198
+
199
+ - dependencies updates: ([#9850](https://github.com/mastra-ai/mastra/pull/9850))
200
+ - Updated dependency [`@dagrejs/dagre@^1.1.8` ↗︎](https://www.npmjs.com/package/@dagrejs/dagre/v/1.1.8) (from `^1.1.5`, in `dependencies`)
201
+
202
+ - Refactor agent information for easier cloud recomposable UIs ([#9995](https://github.com/mastra-ai/mastra/pull/9995))
203
+
204
+ - Add export for agent memory for use in cloud ([#10025](https://github.com/mastra-ai/mastra/pull/10025))
205
+
206
+ - Fix scorer filtering for SpanScoring, add error and info message for user ([#10160](https://github.com/mastra-ai/mastra/pull/10160))
207
+
208
+ - 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))
209
+ MCP docs server will install the beta version of the docs server if they create a project with the beta tag.
210
+ 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.
211
+ Templates have been cleaned up
212
+ small docs updates based off of how the template migrations went
213
+
214
+ - Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
215
+
216
+ - 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)]:
217
+ - @mastra/core@1.0.0-beta.3
218
+ - @mastra/ai-sdk@1.0.0-beta.2
219
+ - @mastra/client-js@1.0.0-beta.3
220
+ - @mastra/react@0.1.0-beta.3
221
+
222
+ ## 7.0.0-beta.2
223
+
224
+ ### Patch Changes
225
+
226
+ - Make suspendPayload optional when calling `suspend()` ([#9926](https://github.com/mastra-ai/mastra/pull/9926))
227
+ Save value returned as `suspendOutput` if user returns data still after calling `suspend()`
228
+ Automatically call `commit()` on uncommitted workflows when registering in Mastra instance
229
+ Show actual suspendPayload on Studio in suspend/resume flow
230
+ - Updated dependencies [[`627067b`](https://github.com/mastra-ai/mastra/commit/627067b22eeb26601f65fee3646ba17fc0c91501), [`465ac05`](https://github.com/mastra-ai/mastra/commit/465ac0526a91d175542091c675181f1a96c98c46)]:
231
+ - @mastra/ai-sdk@1.0.0-beta.1
232
+ - @mastra/core@1.0.0-beta.2
233
+ - @mastra/client-js@1.0.0-beta.2
234
+ - @mastra/react@0.1.0-beta.2
235
+
3
236
  ## 7.0.0-beta.1
4
237
 
5
238
  ### Patch Changes