@mastra/playground-ui 7.0.0-beta.2 → 7.0.0-beta.21

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 (137) hide show
  1. package/CHANGELOG.md +599 -0
  2. package/dist/index.cjs.js +6788 -4688
  3. package/dist/index.cjs.js.map +1 -1
  4. package/dist/index.css +3 -0
  5. package/dist/index.es.js +7082 -5003
  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/assistant-ui/tools/badges/tool-badge.d.ts +2 -1
  9. package/dist/src/components/assistant-ui/tools/badges/workflow-badge.d.ts +2 -1
  10. package/dist/src/components/assistant-ui/tooltip-icon-button.d.ts +2 -7
  11. package/dist/src/components/dynamic-form/index.d.ts +2 -1
  12. package/dist/src/components/ui/autoform/CustomAutoForm.d.ts +2 -0
  13. package/dist/src/components/ui/combobox.d.ts +3 -3
  14. package/dist/src/components/ui/containers/MainContent.d.ts +7 -0
  15. package/dist/src/components/ui/elements/buttons/combined-buttons.d.ts +6 -0
  16. package/dist/src/components/ui/elements/buttons/index.d.ts +1 -1
  17. package/dist/src/components/ui/elements/form-fields/search-field.d.ts +4 -1
  18. package/dist/src/components/ui/elements/notification/notification.d.ts +3 -1
  19. package/dist/src/components/ui/elements/side-dialog/side-dialog-top.d.ts +1 -2
  20. package/dist/src/components/ui/elements/tabs/index.d.ts +4 -1
  21. package/dist/src/components/ui/elements/tabs/tabs-root.d.ts +1 -1
  22. package/dist/src/components/ui/elements/tabs/tabs-tab.d.ts +2 -1
  23. package/dist/src/components/ui/input.d.ts +2 -2
  24. package/dist/src/components/ui/searchbar.d.ts +2 -1
  25. package/dist/src/components/ui/text.d.ts +2 -2
  26. package/dist/src/domains/agents/components/agent-chat.d.ts +2 -1
  27. package/dist/src/domains/agents/components/agent-combobox.d.ts +1 -3
  28. package/dist/src/domains/agents/components/agent-entity-header.d.ts +1 -3
  29. package/dist/src/domains/agents/components/agent-information/agent-information.d.ts +25 -0
  30. package/dist/src/domains/agents/components/agent-layout.d.ts +7 -0
  31. package/dist/src/domains/agents/components/agent-metadata/agent-metadata-model-list.d.ts +1 -0
  32. package/dist/src/domains/agents/components/agent-metadata/agent-metadata.d.ts +2 -11
  33. package/dist/src/domains/agents/components/agent-settings.d.ts +2 -4
  34. package/dist/src/domains/agents/index.d.ts +3 -0
  35. package/dist/src/domains/configuration/components/header-list-form.d.ts +10 -0
  36. package/dist/src/domains/configuration/components/mastra-version-footer.d.ts +17 -0
  37. package/dist/src/domains/configuration/components/playground-config-guard.d.ts +1 -0
  38. package/dist/src/domains/configuration/components/studio-config-form.d.ts +5 -0
  39. package/dist/src/domains/configuration/context/studio-config-context.d.ts +12 -0
  40. package/dist/src/domains/configuration/hooks/use-mastra-instance-status.d.ts +4 -0
  41. package/dist/src/domains/configuration/hooks/use-mastra-packages.d.ts +1 -0
  42. package/dist/src/domains/configuration/hooks/use-package-updates.d.ts +18 -0
  43. package/dist/src/domains/configuration/index.d.ts +7 -0
  44. package/dist/src/domains/configuration/types.d.ts +4 -0
  45. package/dist/src/domains/mcps/components/mcp-server-combobox.d.ts +1 -3
  46. package/dist/src/domains/memory/hooks/use-memory.d.ts +5 -0
  47. package/dist/src/domains/observability/components/helpers.d.ts +12 -6
  48. package/dist/src/domains/observability/components/index.d.ts +1 -1
  49. package/dist/src/domains/observability/components/shared.d.ts +2 -5
  50. package/dist/src/domains/observability/components/span-dialog.d.ts +5 -2
  51. package/dist/src/domains/observability/components/span-score-list.d.ts +1 -1
  52. package/dist/src/domains/observability/components/span-scoring.d.ts +5 -1
  53. package/dist/src/domains/observability/components/span-tabs.d.ts +5 -2
  54. package/dist/src/domains/observability/components/span-type-icon.d.ts +6 -0
  55. package/dist/src/domains/observability/components/timeline-expand-col.d.ts +13 -0
  56. package/dist/src/domains/observability/components/timeline-name-col.d.ts +16 -0
  57. package/dist/src/domains/observability/components/timeline-structure-sign.d.ts +7 -0
  58. package/dist/src/domains/observability/components/timeline-timing-col.d.ts +12 -0
  59. package/dist/src/domains/observability/components/trace-dialog.d.ts +4 -1
  60. package/dist/src/domains/observability/components/trace-span-usage.d.ts +4 -1
  61. package/dist/src/domains/observability/components/trace-timeline-span.d.ts +6 -1
  62. package/dist/src/domains/observability/components/trace-timeline-tools.d.ts +12 -0
  63. package/dist/src/domains/observability/components/trace-timeline.d.ts +5 -1
  64. package/dist/src/domains/observability/components/traces-list.d.ts +1 -1
  65. package/dist/src/domains/observability/components/traces-tools.d.ts +10 -1
  66. package/dist/src/domains/observability/components/tracing-run-options.d.ts +1 -0
  67. package/dist/src/domains/observability/context/tracing-settings-context.d.ts +19 -0
  68. package/dist/src/domains/observability/hooks/use-tracing-settings-state.d.ts +11 -0
  69. package/dist/src/domains/observability/index.d.ts +1 -0
  70. package/dist/src/domains/observability/types.d.ts +13 -0
  71. package/dist/src/domains/observability/utils/__tests__/span-utils.test.d.ts +1 -0
  72. package/dist/src/domains/observability/utils/get-descendant-ids.d.ts +2 -0
  73. package/dist/src/domains/observability/utils/span-utils.d.ts +9 -0
  74. package/dist/src/domains/scores/components/score-dialog.d.ts +2 -2
  75. package/dist/src/domains/scores/components/scorer-combobox.d.ts +1 -3
  76. package/dist/src/domains/scores/hooks/use-trace-span-scores.d.ts +41 -1
  77. package/dist/src/domains/templates/template-form.d.ts +2 -1
  78. package/dist/src/domains/tools/components/tool-combobox.d.ts +1 -3
  79. package/dist/src/domains/workflows/components/workflow-combobox.d.ts +1 -3
  80. package/dist/src/domains/workflows/components/workflow-layout.d.ts +7 -0
  81. package/dist/src/domains/workflows/components/workflow-step-detail.d.ts +4 -0
  82. package/dist/src/domains/workflows/context/use-current-run.d.ts +15 -0
  83. package/dist/src/domains/workflows/context/workflow-run-context.d.ts +29 -6
  84. package/dist/src/domains/workflows/context/workflow-step-detail-context.d.ts +34 -0
  85. package/dist/src/domains/workflows/hooks/use-workflows-actions.d.ts +12 -1
  86. package/dist/src/domains/workflows/index.d.ts +2 -0
  87. package/dist/src/domains/workflows/workflow/workflow-code-dialog-content.d.ts +2 -1
  88. package/dist/src/domains/workflows/workflow/workflow-default-node.d.ts +2 -1
  89. package/dist/src/domains/workflows/workflow/workflow-input-data.d.ts +2 -1
  90. package/dist/src/domains/workflows/workflow/workflow-nested-node.d.ts +2 -1
  91. package/dist/src/domains/workflows/workflow/workflow-run-options.d.ts +1 -0
  92. package/dist/src/domains/workflows/workflow/workflow-status.d.ts +8 -1
  93. package/dist/src/domains/workflows/workflow/workflow-step-action-bar.d.ts +7 -2
  94. package/dist/src/domains/workflows/workflow/workflow-time-travel-form.d.ts +9 -0
  95. package/dist/src/domains/workflows/workflow/workflow-trigger.d.ts +5 -2
  96. package/dist/src/ds/components/Avatar/Avatar.d.ts +5 -3
  97. package/dist/src/ds/components/Button/Button.d.ts +7 -2
  98. package/dist/src/ds/components/CodeEditor/code-editor.d.ts +12 -0
  99. package/dist/src/ds/components/CodeEditor/index.d.ts +1 -0
  100. package/dist/src/ds/tokens/sizes.d.ts +4 -1
  101. package/dist/src/hooks/use-agent-messages.d.ts +4 -3
  102. package/dist/src/hooks/use-workflow-runs.d.ts +223 -2
  103. package/dist/src/index.d.ts +1 -2
  104. package/dist/src/lib/resize/collapsible-panel.d.ts +5 -0
  105. package/dist/src/lib/resize/separator.d.ts +1 -0
  106. package/dist/src/lib/tanstack-query.d.ts +5 -2
  107. package/dist/src/types.d.ts +3 -2
  108. package/dist/tokens.cjs.js +4 -1
  109. package/dist/tokens.cjs.js.map +1 -1
  110. package/dist/tokens.es.js +4 -1
  111. package/dist/tokens.es.js.map +1 -1
  112. package/package.json +31 -35
  113. package/dist/src/components/assistant-ui/syntax-highlighter.d.ts +0 -1
  114. package/dist/src/components/syntax-highlighter.d.ts +0 -5
  115. package/dist/src/components/ui/avatar.d.ts +0 -6
  116. package/dist/src/components/ui/badge.d.ts +0 -9
  117. package/dist/src/components/ui/button.d.ts +0 -16
  118. package/dist/src/components/ui/calendar.d.ts +0 -8
  119. package/dist/src/components/ui/card.d.ts +0 -8
  120. package/dist/src/components/ui/command.d.ts +0 -78
  121. package/dist/src/components/ui/date-picker.d.ts +0 -23
  122. package/dist/src/components/ui/elements/buttons/button.d.ts +0 -7
  123. package/dist/src/components/ui/elements/tabs/tabs.d.ts +0 -24
  124. package/dist/src/components/ui/form.d.ts +0 -23
  125. package/dist/src/components/ui/playground-tabs.d.ts +0 -24
  126. package/dist/src/components/ui/syntax-highlighter.d.ts +0 -7
  127. package/dist/src/components/ui/table.d.ts +0 -10
  128. package/dist/src/components/ui/tabs.d.ts +0 -7
  129. package/dist/src/components/ui/textarea.d.ts +0 -5
  130. package/dist/src/domains/observability/components/trace-timeline-legend.d.ts +0 -6
  131. package/dist/src/ds/components/TraceTree/Span.d.ts +0 -32
  132. package/dist/src/ds/components/TraceTree/Spans.d.ts +0 -5
  133. package/dist/src/ds/components/TraceTree/Time.d.ts +0 -8
  134. package/dist/src/ds/components/TraceTree/Trace.d.ts +0 -13
  135. package/dist/src/ds/components/TraceTree/TraceTree.d.ts +0 -5
  136. package/dist/src/ds/components/TraceTree/index.d.ts +0 -1
  137. package/dist/src/ds/components/types.d.ts +0 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,604 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 7.0.0-beta.21
4
+
5
+ ### Patch Changes
6
+
7
+ - Replace deprecated client.getTraces with a client.listTraces ([#11711](https://github.com/mastra-ai/mastra/pull/11711))
8
+
9
+ - Make initialState optional in studio ([#11744](https://github.com/mastra-ai/mastra/pull/11744))
10
+
11
+ - Updated dependencies [[`08766f1`](https://github.com/mastra-ai/mastra/commit/08766f15e13ac0692fde2a8bd366c2e16e4321df), [`ae8baf7`](https://github.com/mastra-ai/mastra/commit/ae8baf7d8adcb0ff9dac11880400452bc49b33ff), [`cfabdd4`](https://github.com/mastra-ai/mastra/commit/cfabdd4aae7a726b706942d6836eeca110fb6267), [`3bf08bf`](https://github.com/mastra-ai/mastra/commit/3bf08bf9c7c73818ac937b5a69d90e205653115f), [`a0e437f`](https://github.com/mastra-ai/mastra/commit/a0e437fac561b28ee719e0302d72b2f9b4c138f0), [`bec5efd`](https://github.com/mastra-ai/mastra/commit/bec5efde96653ccae6604e68c696d1bc6c1a0bf5), [`9eedf7d`](https://github.com/mastra-ai/mastra/commit/9eedf7de1d6e0022a2f4e5e9e6fe1ec468f9b43c)]:
12
+ - @mastra/core@1.0.0-beta.21
13
+ - @mastra/schema-compat@1.0.0-beta.6
14
+ - @mastra/ai-sdk@1.0.0-beta.14
15
+ - @mastra/client-js@1.0.0-beta.21
16
+ - @mastra/react@0.1.0-beta.21
17
+
18
+ ## 7.0.0-beta.20
19
+
20
+ ### Patch Changes
21
+
22
+ - dependencies updates: ([#11404](https://github.com/mastra-ai/mastra/pull/11404))
23
+ - Updated dependency [`zustand@^5.0.9` ↗︎](https://www.npmjs.com/package/zustand/v/5.0.9) (from `^5.0.8`, in `dependencies`)
24
+
25
+ - dependencies updates: ([#11588](https://github.com/mastra-ai/mastra/pull/11588))
26
+ - Updated dependency [`zustand@^5.0.9` ↗︎](https://www.npmjs.com/package/zustand/v/5.0.9) (from `^5.0.8`, in `dependencies`)
27
+
28
+ - Add missing loading state handlers to TanStack Query hooks. Components now properly show skeleton/loading UI instead of returning null or rendering incomplete states while data is being fetched. ([#11681](https://github.com/mastra-ai/mastra/pull/11681))
29
+
30
+ - Remove `streamVNext`, `resumeStreamVNext`, and `observeStreamVNext` methods, call `stream`, `resumeStream` and `observeStream` directly ([#11499](https://github.com/mastra-ai/mastra/pull/11499))
31
+
32
+ ```diff
33
+ + const run = await workflow.createRun({ runId: '123' });
34
+ - const stream = await run.streamVNext({ inputData: { ... } });
35
+ + const stream = await run.stream({ inputData: { ... } });
36
+ ```
37
+
38
+ - Dedupe Avatar component by removing UI avatar and using DS Avatar with size variants ([#11637](https://github.com/mastra-ai/mastra/pull/11637))
39
+
40
+ - Consolidate date picker components by removing duplicate DatePicker and Calendar components. DateField now uses the DayPicker wrapper from date-time-picker folder directly. ([#11649](https://github.com/mastra-ai/mastra/pull/11649))
41
+
42
+ - Consolidate tabs components: remove redundant implementations and add onClose prop support ([#11650](https://github.com/mastra-ai/mastra/pull/11650))
43
+
44
+ - Use the same Button component every where. Remove duplicates. ([#11635](https://github.com/mastra-ai/mastra/pull/11635))
45
+
46
+ - Add initial state input to workflow form in studio ([#11560](https://github.com/mastra-ai/mastra/pull/11560))
47
+
48
+ - Remove unused files and dependencies identified by Knip ([#11677](https://github.com/mastra-ai/mastra/pull/11677))
49
+
50
+ - Fix react/react-DOM version mismatch. ([#11620](https://github.com/mastra-ai/mastra/pull/11620))
51
+
52
+ - Adds thread cloning to create independent copies of conversations that can diverge. ([#11517](https://github.com/mastra-ai/mastra/pull/11517))
53
+
54
+ ```typescript
55
+ // Clone a thread
56
+ const { thread, clonedMessages } = await memory.cloneThread({
57
+ sourceThreadId: 'thread-123',
58
+ title: 'My Clone',
59
+ options: {
60
+ messageLimit: 10, // optional: only copy last N messages
61
+ },
62
+ });
63
+
64
+ // Check if a thread is a clone
65
+ if (memory.isClone(thread)) {
66
+ const source = await memory.getSourceThread(thread.id);
67
+ }
68
+
69
+ // List all clones of a thread
70
+ const clones = await memory.listClones('thread-123');
71
+ ```
72
+
73
+ Includes:
74
+ - Storage implementations for InMemory, PostgreSQL, LibSQL, Upstash
75
+ - API endpoint: `POST /api/memory/threads/:threadId/clone`
76
+ - Embeddings created for cloned messages (semantic recall)
77
+ - Clone button in playground UI Memory tab
78
+
79
+ - 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))
80
+
81
+ - Unified `getWorkflowRunById` and `getWorkflowRunExecutionResult` into a single API that returns `WorkflowState` with both metadata and execution state. ([#11429](https://github.com/mastra-ai/mastra/pull/11429))
82
+
83
+ **What changed:**
84
+ - `getWorkflowRunById` now returns a unified `WorkflowState` object containing metadata (runId, workflowName, resourceId, createdAt, updatedAt) along with processed execution state (status, result, error, payload, steps)
85
+ - Added optional `fields` parameter to request only specific fields for better performance
86
+ - Added optional `withNestedWorkflows` parameter to control nested workflow step inclusion
87
+ - Removed `getWorkflowRunExecutionResult` - use `getWorkflowRunById` instead (breaking change)
88
+ - Removed `/execution-result` API endpoints from server (breaking change)
89
+ - Removed `runExecutionResult()` method from client SDK (breaking change)
90
+ - Removed `GetWorkflowRunExecutionResultResponse` type from client SDK (breaking change)
91
+
92
+ **Before:**
93
+
94
+ ```typescript
95
+ // Had to call two different methods for different data
96
+ const run = await workflow.getWorkflowRunById(runId); // Returns raw WorkflowRun with snapshot
97
+ const result = await workflow.getWorkflowRunExecutionResult(runId); // Returns processed execution state
98
+ ```
99
+
100
+ **After:**
101
+
102
+ ```typescript
103
+ // Single method returns everything
104
+ const run = await workflow.getWorkflowRunById(runId);
105
+ // Returns: { runId, workflowName, resourceId, createdAt, updatedAt, status, result, error, payload, steps }
106
+
107
+ // Request only specific fields for better performance (avoids expensive step fetching)
108
+ const status = await workflow.getWorkflowRunById(runId, { fields: ['status'] });
109
+
110
+ // Skip nested workflow steps for faster response
111
+ const run = await workflow.getWorkflowRunById(runId, { withNestedWorkflows: false });
112
+ ```
113
+
114
+ **Why:** The previous API required calling two separate methods to get complete workflow run information. This unification simplifies the API surface and gives users control over performance - fetching all steps (especially nested workflows) can be expensive, so the `fields` and `withNestedWorkflows` options let users request only what they need.
115
+
116
+ - Updated dependencies [[`d2d3e22`](https://github.com/mastra-ai/mastra/commit/d2d3e22a419ee243f8812a84e3453dd44365ecb0), [`bc72b52`](https://github.com/mastra-ai/mastra/commit/bc72b529ee4478fe89ecd85a8be47ce0127b82a0), [`05b8bee`](https://github.com/mastra-ai/mastra/commit/05b8bee9e50e6c2a4a2bf210eca25ee212ca24fa), [`c042bd0`](https://github.com/mastra-ai/mastra/commit/c042bd0b743e0e86199d0cb83344ca7690e34a9c), [`940a2b2`](https://github.com/mastra-ai/mastra/commit/940a2b27480626ed7e74f55806dcd2181c1dd0c2), [`e0941c3`](https://github.com/mastra-ai/mastra/commit/e0941c3d7fc75695d5d258e7008fd5d6e650800c), [`0c0580a`](https://github.com/mastra-ai/mastra/commit/0c0580a42f697cd2a7d5973f25bfe7da9055038a), [`28f5f89`](https://github.com/mastra-ai/mastra/commit/28f5f89705f2409921e3c45178796c0e0d0bbb64), [`e601b27`](https://github.com/mastra-ai/mastra/commit/e601b272c70f3a5ecca610373aa6223012704892), [`3d3366f`](https://github.com/mastra-ai/mastra/commit/3d3366f31683e7137d126a3a57174a222c5801fb), [`5a4953f`](https://github.com/mastra-ai/mastra/commit/5a4953f7d25bb15ca31ed16038092a39cb3f98b3), [`eb9e522`](https://github.com/mastra-ai/mastra/commit/eb9e522ce3070a405e5b949b7bf5609ca51d7fe2), [`20e6f19`](https://github.com/mastra-ai/mastra/commit/20e6f1971d51d3ff6dd7accad8aaaae826d540ed), [`2b7aede`](https://github.com/mastra-ai/mastra/commit/2b7aede89494efaf7c28efe264a86cad8ee1cee6), [`4f0b3c6`](https://github.com/mastra-ai/mastra/commit/4f0b3c66f196c06448487f680ccbb614d281e2f7), [`74c4f22`](https://github.com/mastra-ai/mastra/commit/74c4f22ed4c71e72598eacc346ba95cdbc00294f), [`81b6a8f`](https://github.com/mastra-ai/mastra/commit/81b6a8ff79f49a7549d15d66624ac1a0b8f5f971), [`e4d366a`](https://github.com/mastra-ai/mastra/commit/e4d366aeb500371dd4210d6aa8361a4c21d87034), [`a4f010b`](https://github.com/mastra-ai/mastra/commit/a4f010b22e4355a5fdee70a1fe0f6e4a692cc29e), [`73b0bb3`](https://github.com/mastra-ai/mastra/commit/73b0bb394dba7c9482eb467a97ab283dbc0ef4db), [`5627a8c`](https://github.com/mastra-ai/mastra/commit/5627a8c6dc11fe3711b3fa7a6ffd6eb34100a306), [`3ff45d1`](https://github.com/mastra-ai/mastra/commit/3ff45d10e0c80c5335a957ab563da72feb623520), [`251df45`](https://github.com/mastra-ai/mastra/commit/251df4531407dfa46d805feb40ff3fb49769f455), [`f894d14`](https://github.com/mastra-ai/mastra/commit/f894d148946629af7b1f452d65a9cf864cec3765), [`c2b9547`](https://github.com/mastra-ai/mastra/commit/c2b9547bf435f56339f23625a743b2147ab1c7a6), [`580b592`](https://github.com/mastra-ai/mastra/commit/580b5927afc82fe460dfdf9a38a902511b6b7e7f), [`58e3931`](https://github.com/mastra-ai/mastra/commit/58e3931af9baa5921688566210f00fb0c10479fa), [`580b592`](https://github.com/mastra-ai/mastra/commit/580b5927afc82fe460dfdf9a38a902511b6b7e7f), [`08bb631`](https://github.com/mastra-ai/mastra/commit/08bb631ae2b14684b2678e3549d0b399a6f0561e), [`4fba91b`](https://github.com/mastra-ai/mastra/commit/4fba91bec7c95911dc28e369437596b152b04cd0), [`106c960`](https://github.com/mastra-ai/mastra/commit/106c960df5d110ec15ac8f45de8858597fb90ad5), [`12b0cc4`](https://github.com/mastra-ai/mastra/commit/12b0cc4077d886b1a552637dedb70a7ade93528c)]:
117
+ - @mastra/core@1.0.0-beta.20
118
+ - @mastra/client-js@1.0.0-beta.20
119
+ - @mastra/ai-sdk@1.0.0-beta.13
120
+ - @mastra/react@0.1.0-beta.20
121
+
122
+ ## 7.0.0-beta.19
123
+
124
+ ### Patch Changes
125
+
126
+ - Updated dependencies [[`e54953e`](https://github.com/mastra-ai/mastra/commit/e54953ed8ce1b28c0d62a19950163039af7834b4), [`bd18eb0`](https://github.com/mastra-ai/mastra/commit/bd18eb0928b1c4f263426f45f49765b32d1ef802), [`7d56d92`](https://github.com/mastra-ai/mastra/commit/7d56d9213886e8353956d7d40df10045fd12b299), [`fdac646`](https://github.com/mastra-ai/mastra/commit/fdac646033a0930a1a4e00d13aa64c40bb7f1e02), [`d07b568`](https://github.com/mastra-ai/mastra/commit/d07b5687819ea8cb1dffa776d0c1765faf4aa1ae), [`70b300e`](https://github.com/mastra-ai/mastra/commit/70b300ebc631dfc0aa14e61547fef7994adb4ea6), [`68ec97d`](https://github.com/mastra-ai/mastra/commit/68ec97d4c07c6393fcf95c2481fc5d73da99f8c8), [`4aa55b3`](https://github.com/mastra-ai/mastra/commit/4aa55b383cf06043943359ea316572fd969861a7)]:
127
+ - @mastra/core@1.0.0-beta.19
128
+ - @mastra/ai-sdk@1.0.0-beta.12
129
+ - @mastra/schema-compat@1.0.0-beta.5
130
+ - @mastra/client-js@1.0.0-beta.19
131
+ - @mastra/react@0.1.0-beta.19
132
+
133
+ ## 7.0.0-beta.18
134
+
135
+ ### Patch Changes
136
+
137
+ - Updated dependencies [[`5947fcd`](https://github.com/mastra-ai/mastra/commit/5947fcdd425531f29f9422026d466c2ee3113c93)]:
138
+ - @mastra/core@1.0.0-beta.18
139
+ - @mastra/client-js@1.0.0-beta.18
140
+ - @mastra/react@0.1.0-beta.18
141
+
142
+ ## 7.0.0-beta.17
143
+
144
+ ### Patch Changes
145
+
146
+ - Updated dependencies [[`b5dc973`](https://github.com/mastra-ai/mastra/commit/b5dc9733a5158850298dfb103acb3babdba8a318), [`af56599`](https://github.com/mastra-ai/mastra/commit/af56599d73244ae3bf0d7bcade656410f8ded37b)]:
147
+ - @mastra/core@1.0.0-beta.17
148
+ - @mastra/schema-compat@1.0.0-beta.4
149
+ - @mastra/client-js@1.0.0-beta.17
150
+ - @mastra/react@0.1.0-beta.17
151
+
152
+ ## 7.0.0-beta.16
153
+
154
+ ### Patch Changes
155
+
156
+ - Fix workflow observability view broken by invalid entityType parameter ([#11427](https://github.com/mastra-ai/mastra/pull/11427))
157
+
158
+ The UI workflow observability view was failing with a Zod validation error when trying to filter traces by workflow. The UI was sending `entityType=workflow`, but the backend's `EntityType` enum only accepts `workflow_run`.
159
+
160
+ **Root Cause**: The legacy value transformation was happening in the handler (after validation), but Zod validation occurred earlier in the request pipeline, rejecting the request before it could be transformed.
161
+
162
+ **Solution**:
163
+ - Added `z.preprocess()` to the query schema to transform `workflow` → `workflow_run` before validation
164
+ - Kept handler transformation for defense in depth
165
+ - Updated UI to use `EntityType.WORKFLOW_RUN` enum value for type safety
166
+
167
+ This maintains backward compatibility with legacy clients while fixing the validation error.
168
+
169
+ Fixes #11412
170
+
171
+ - Add container queries, adjust the agent chat and use container queries to better display information on the agent sidebar ([#11408](https://github.com/mastra-ai/mastra/pull/11408))
172
+
173
+ - Updated dependencies [[`3d93a15`](https://github.com/mastra-ai/mastra/commit/3d93a15796b158c617461c8b98bede476ebb43e2), [`efe406a`](https://github.com/mastra-ai/mastra/commit/efe406a1353c24993280ebc2ed61dd9f65b84b26), [`119e5c6`](https://github.com/mastra-ai/mastra/commit/119e5c65008f3e5cfca954eefc2eb85e3bf40da4), [`74e504a`](https://github.com/mastra-ai/mastra/commit/74e504a3b584eafd2f198001c6a113bbec589fd3), [`e33fdbd`](https://github.com/mastra-ai/mastra/commit/e33fdbd07b33920d81e823122331b0c0bee0bb59), [`929f69c`](https://github.com/mastra-ai/mastra/commit/929f69c3436fa20dd0f0e2f7ebe8270bd82a1529), [`6cbb549`](https://github.com/mastra-ai/mastra/commit/6cbb549475201a2fbf158f0fd7323f6495f46d08), [`8a73529`](https://github.com/mastra-ai/mastra/commit/8a73529ca01187f604b1f3019d0a725ac63ae55f)]:
174
+ - @mastra/core@1.0.0-beta.16
175
+ - @mastra/client-js@1.0.0-beta.16
176
+ - @mastra/react@0.1.0-beta.16
177
+ - @mastra/ai-sdk@1.0.0-beta.11
178
+
179
+ ## 7.0.0-beta.15
180
+
181
+ ### Minor Changes
182
+
183
+ - Unified observability schema with entity-based span identification ([#11132](https://github.com/mastra-ai/mastra/pull/11132))
184
+
185
+ ## What changed
186
+
187
+ Spans now use a unified identification model with `entityId`, `entityType`, and `entityName` instead of separate `agentId`, `toolId`, `workflowId` fields.
188
+
189
+ **Before:**
190
+
191
+ ```typescript
192
+ // Old span structure
193
+ span.agentId; // 'my-agent'
194
+ span.toolId; // undefined
195
+ span.workflowId; // undefined
196
+ ```
197
+
198
+ **After:**
199
+
200
+ ```typescript
201
+ // New span structure
202
+ span.entityType; // EntityType.AGENT
203
+ span.entityId; // 'my-agent'
204
+ span.entityName; // 'My Agent'
205
+ ```
206
+
207
+ ## New `listTraces()` API
208
+
209
+ Query traces with filtering, pagination, and sorting:
210
+
211
+ ```typescript
212
+ const { spans, pagination } = await storage.listTraces({
213
+ filters: {
214
+ entityType: EntityType.AGENT,
215
+ entityId: 'my-agent',
216
+ userId: 'user-123',
217
+ environment: 'production',
218
+ status: TraceStatus.SUCCESS,
219
+ startedAt: { start: new Date('2024-01-01'), end: new Date('2024-01-31') },
220
+ },
221
+ pagination: { page: 0, perPage: 50 },
222
+ orderBy: { field: 'startedAt', direction: 'DESC' },
223
+ });
224
+ ```
225
+
226
+ **Available filters:** date ranges (`startedAt`, `endedAt`), entity (`entityType`, `entityId`, `entityName`), identity (`userId`, `organizationId`), correlation IDs (`runId`, `sessionId`, `threadId`), deployment (`environment`, `source`, `serviceName`), `tags`, `metadata`, and `status`.
227
+
228
+ ## New retrieval methods
229
+ - `getSpan({ traceId, spanId })` - Get a single span
230
+ - `getRootSpan({ traceId })` - Get the root span of a trace
231
+ - `getTrace({ traceId })` - Get all spans for a trace
232
+
233
+ ## Backward compatibility
234
+
235
+ The legacy `getTraces()` method continues to work. When you pass `name: "agent run: my-agent"`, it automatically transforms to `entityId: "my-agent", entityType: AGENT`.
236
+
237
+ ## Migration
238
+
239
+ **Automatic:** SQL-based stores (PostgreSQL, LibSQL, MSSQL) automatically add new columns to existing `spans` tables on initialization. Existing data is preserved with new columns set to `NULL`.
240
+
241
+ **No action required:** Your existing code continues to work. Adopt the new fields and `listTraces()` API at your convenience.
242
+
243
+ ### Patch Changes
244
+
245
+ - Add Mastra version footer component that displays installed packages and checks npm registry for available updates and deprecation warnings ([#11211](https://github.com/mastra-ai/mastra/pull/11211))
246
+
247
+ - Fix clicking nested workflows in sidepanel: resolve runtime error when clicking "View Nested Graph" inside an already-open nested workflow panel, and ensure the graph updates when switching between nested workflows. ([#11391](https://github.com/mastra-ai/mastra/pull/11391))
248
+
249
+ - Add resizable and collapsible side panels for agents and workflows ([#11371](https://github.com/mastra-ai/mastra/pull/11371))
250
+
251
+ - Add debugger-like click-through UI to workflow graph ([#11350](https://github.com/mastra-ai/mastra/pull/11350))
252
+
253
+ - Updated dependencies [[`33a4d2e`](https://github.com/mastra-ai/mastra/commit/33a4d2e4ed8af51f69256232f00c34d6b6b51d48), [`4aaa844`](https://github.com/mastra-ai/mastra/commit/4aaa844a4f19d054490f43638a990cc57bda8d2f), [`4a1a6cb`](https://github.com/mastra-ai/mastra/commit/4a1a6cb3facad54b2bb6780b00ce91d6de1edc08), [`31d13d5`](https://github.com/mastra-ai/mastra/commit/31d13d5fdc2e2380e2e3ee3ec9fb29d2a00f265d), [`4c62166`](https://github.com/mastra-ai/mastra/commit/4c621669f4a29b1f443eca3ba70b814afa286266), [`7bcbf10`](https://github.com/mastra-ai/mastra/commit/7bcbf10133516e03df964b941f9a34e9e4ab4177), [`4353600`](https://github.com/mastra-ai/mastra/commit/43536005a65988a8eede236f69122e7f5a284ba2), [`6986fb0`](https://github.com/mastra-ai/mastra/commit/6986fb064f5db6ecc24aa655e1d26529087b43b3), [`053e979`](https://github.com/mastra-ai/mastra/commit/053e9793b28e970086b0507f7f3b76ea32c1e838), [`e26dc9c`](https://github.com/mastra-ai/mastra/commit/e26dc9c3ccfec54ae3dc3e2b2589f741f9ae60a6), [`55edf73`](https://github.com/mastra-ai/mastra/commit/55edf7302149d6c964fbb7908b43babfc2b52145), [`27c0009`](https://github.com/mastra-ai/mastra/commit/27c0009777a6073d7631b0eb7b481d94e165b5ca), [`dee388d`](https://github.com/mastra-ai/mastra/commit/dee388dde02f2e63c53385ae69252a47ab6825cc), [`3f3fc30`](https://github.com/mastra-ai/mastra/commit/3f3fc3096f24c4a26cffeecfe73085928f72aa63), [`d90ea65`](https://github.com/mastra-ai/mastra/commit/d90ea6536f7aa51c6545a4e9215b55858e98e16d), [`d171e55`](https://github.com/mastra-ai/mastra/commit/d171e559ead9f52ec728d424844c8f7b164c4510), [`632fdb8`](https://github.com/mastra-ai/mastra/commit/632fdb8b3cd9ff6f90399256d526db439fc1758b), [`10c2735`](https://github.com/mastra-ai/mastra/commit/10c27355edfdad1ee2b826b897df74125eb81fb8), [`1924cf0`](https://github.com/mastra-ai/mastra/commit/1924cf06816e5e4d4d5333065ec0f4bb02a97799), [`184f01d`](https://github.com/mastra-ai/mastra/commit/184f01d1f534ec0be9703d3996f2e088b4a560eb), [`b339816`](https://github.com/mastra-ai/mastra/commit/b339816df0984d0243d944ac2655d6ba5f809cde)]:
254
+ - @mastra/core@1.0.0-beta.15
255
+ - @mastra/ai-sdk@1.0.0-beta.11
256
+ - @mastra/client-js@1.0.0-beta.15
257
+ - @mastra/react@0.1.0-beta.15
258
+
259
+ ## 7.0.0-beta.14
260
+
261
+ ### Patch Changes
262
+
263
+ - Change searchbar to search on input with debounce instead of on Enter key press ([#11138](https://github.com/mastra-ai/mastra/pull/11138))
264
+
265
+ - Add support for AI SDK v6 (LanguageModelV3) ([#11191](https://github.com/mastra-ai/mastra/pull/11191))
266
+
267
+ Agents can now use `LanguageModelV3` models from AI SDK v6 beta providers like `@ai-sdk/openai@^3.0.0-beta`.
268
+
269
+ **New features:**
270
+ - Usage normalization: V3's nested usage format is normalized to Mastra's flat format with `reasoningTokens`, `cachedInputTokens`, and raw data preserved in a `raw` field
271
+
272
+ **Backward compatible:** All existing V1 and V2 models continue to work unchanged.
273
+
274
+ - Updated dependencies [[`4f94ed8`](https://github.com/mastra-ai/mastra/commit/4f94ed8177abfde3ec536e3574883e075423350c), [`ac3cc23`](https://github.com/mastra-ai/mastra/commit/ac3cc2397d1966bc0fc2736a223abc449d3c7719), [`a86f4df`](https://github.com/mastra-ai/mastra/commit/a86f4df0407311e0d2ea49b9a541f0938810d6a9), [`029540c`](https://github.com/mastra-ai/mastra/commit/029540ca1e582fc2dd8d288ecd4a9b0f31a954ef), [`66741d1`](https://github.com/mastra-ai/mastra/commit/66741d1a99c4f42cf23a16109939e8348ac6852e), [`01b20fe`](https://github.com/mastra-ai/mastra/commit/01b20fefb7c67c2b7d79417598ef4e60256d1225), [`0dbf199`](https://github.com/mastra-ai/mastra/commit/0dbf199110f22192ce5c95b1c8148d4872b4d119), [`b7b0930`](https://github.com/mastra-ai/mastra/commit/b7b0930dbe72eade8d3882992f2f2db53220e4eb), [`a7ce182`](https://github.com/mastra-ai/mastra/commit/a7ce1822a8785ce45d62dd5c911af465e144f7d7)]:
275
+ - @mastra/core@1.0.0-beta.14
276
+ - @mastra/ai-sdk@1.0.0-beta.10
277
+ - @mastra/client-js@1.0.0-beta.14
278
+ - @mastra/react@0.1.0-beta.14
279
+
280
+ ## 7.0.0-beta.13
281
+
282
+ ### Patch Changes
283
+
284
+ - Updated dependencies [[`919a22b`](https://github.com/mastra-ai/mastra/commit/919a22b25876f9ed5891efe5facbe682c30ff497)]:
285
+ - @mastra/core@1.0.0-beta.13
286
+ - @mastra/client-js@1.0.0-beta.13
287
+ - @mastra/react@0.1.0-beta.13
288
+
289
+ ## 7.0.0-beta.12
290
+
291
+ ### Patch Changes
292
+
293
+ - Adds tool/workflow error being surfaced to the side panel in the playground ([#11099](https://github.com/mastra-ai/mastra/pull/11099))
294
+
295
+ - Auto resume suspended tools if `autoResumeSuspendedTools: true` ([#11157](https://github.com/mastra-ai/mastra/pull/11157))
296
+
297
+ The flag can be added to `defaultAgentOptions` when creating the agent or to options in `agent.stream` or `agent.generate`
298
+
299
+ ```typescript
300
+ const agent = new Agent({
301
+ //...agent information,
302
+ defaultAgentOptions: {
303
+ autoResumeSuspendedTools: true,
304
+ },
305
+ });
306
+ ```
307
+
308
+ - Fix trace-span-usage component to handle object values in token usage data. Usage objects can contain nested `inputDetails` and `outputDetails` properties which are objects, not numbers. The component now properly type-checks values and renders object properties as nested key-value pairs. ([#11141](https://github.com/mastra-ai/mastra/pull/11141))
309
+
310
+ - 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))
311
+ With this change, run methods cannot be called directly on workflow instance anymore
312
+
313
+ ```diff
314
+ - const result = await workflow.stream({ runId: '123', inputData: { ... } });
315
+ + const run = await workflow.createRun({ runId: '123' });
316
+ + const stream = await run.stream({ inputData: { ... } });
317
+ ```
318
+
319
+ - Remove deprecated playground-only prompt generation handler (functionality moved to @mastra/server) ([#11074](https://github.com/mastra-ai/mastra/pull/11074))
320
+
321
+ Improve prompt enhancement UX: show toast errors when enhancement fails, disable button when no model has a configured API key, and prevent users from disabling all models in the model list
322
+
323
+ Add missing `/api/agents/:agentId/instructions/enhance` endpoint that was referenced by `@mastra/client-js` and `@mastra/playground-ui`
324
+
325
+ - Focus the textarea when clicking anywhere in the entire chat prompt input box ([#11160](https://github.com/mastra-ai/mastra/pull/11160))
326
+
327
+ - Removes redundant "Working Memory" section from memory config panel (already displayed in dedicated working memory component) ([#11104](https://github.com/mastra-ai/mastra/pull/11104))
328
+ Fixes badge rendering for falsy values by using ?? instead of || (e.g., false was incorrectly displayed as empty string)
329
+ Adds tooltip on disabled "Edit Working Memory" button explaining that working memory becomes available after the agent calls updateWorkingMemory
330
+
331
+ - Workflow step detail panel improvements ([#11134](https://github.com/mastra-ai/mastra/pull/11134))
332
+ - Add step detail panel to view map configs and nested workflows from the workflow graph
333
+ - Enable line wrapping for code display in map config panel and WHEN condition nodes
334
+ - Auto-switch to "Current Run" tab when opening step details
335
+ - Add colored icons matching workflow graph (orange for map, purple for workflow)
336
+ - Simplify step detail context by removing unused parent stack navigation
337
+
338
+ - Fix agent default settings not being applied in playground ([#11107](https://github.com/mastra-ai/mastra/pull/11107))
339
+ - Fix settings hook to properly merge agent default options with localStorage values
340
+ - Map `maxOutputTokens` (AI SDK v5) to `maxTokens` for UI compatibility
341
+ - Add `seed` parameter support to model settings
342
+ - Add frequency/presence penalty inputs with sliders
343
+ - Extract and apply agent's `defaultOptions.modelSettings` on load
344
+
345
+ - 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))
346
+
347
+ - Updated dependencies [[`d5ed981`](https://github.com/mastra-ai/mastra/commit/d5ed981c8701c1b8a27a5f35a9a2f7d9244e695f), [`9650cce`](https://github.com/mastra-ai/mastra/commit/9650cce52a1d917ff9114653398e2a0f5c3ba808), [`932d63d`](https://github.com/mastra-ai/mastra/commit/932d63dd51be9c8bf1e00e3671fe65606c6fb9cd), [`b760b73`](https://github.com/mastra-ai/mastra/commit/b760b731aca7c8a3f041f61d57a7f125ae9cb215), [`695a621`](https://github.com/mastra-ai/mastra/commit/695a621528bdabeb87f83c2277cf2bb084c7f2b4), [`2b459f4`](https://github.com/mastra-ai/mastra/commit/2b459f466fd91688eeb2a44801dc23f7f8a887ab), [`486352b`](https://github.com/mastra-ai/mastra/commit/486352b66c746602b68a95839f830de14c7fb8c0), [`09e4bae`](https://github.com/mastra-ai/mastra/commit/09e4bae18dd5357d2ae078a4a95a2af32168ab08), [`24b76d8`](https://github.com/mastra-ai/mastra/commit/24b76d8e17656269c8ed09a0c038adb9cc2ae95a), [`243a823`](https://github.com/mastra-ai/mastra/commit/243a8239c5906f5c94e4f78b54676793f7510ae3), [`1b85674`](https://github.com/mastra-ai/mastra/commit/1b85674123708d9b85834dccc9eae601a9d0891c), [`486352b`](https://github.com/mastra-ai/mastra/commit/486352b66c746602b68a95839f830de14c7fb8c0), [`c61fac3`](https://github.com/mastra-ai/mastra/commit/c61fac3add96f0dcce0208c07415279e2537eb62), [`6f14f70`](https://github.com/mastra-ai/mastra/commit/6f14f706ccaaf81b69544b6c1b75ab66a41e5317), [`09e4bae`](https://github.com/mastra-ai/mastra/commit/09e4bae18dd5357d2ae078a4a95a2af32168ab08), [`4524734`](https://github.com/mastra-ai/mastra/commit/45247343e384717a7c8404296275c56201d6470f), [`2a53598`](https://github.com/mastra-ai/mastra/commit/2a53598c6d8cfeb904a7fc74e57e526d751c8fa6), [`486352b`](https://github.com/mastra-ai/mastra/commit/486352b66c746602b68a95839f830de14c7fb8c0), [`c7cd3c7`](https://github.com/mastra-ai/mastra/commit/c7cd3c7a187d7aaf79e2ca139de328bf609a14b4), [`847c212`](https://github.com/mastra-ai/mastra/commit/847c212caba7df0d6f2fc756b494ac3c75c3720d), [`439eaf7`](https://github.com/mastra-ai/mastra/commit/439eaf75447809b05e326666675a4dcbf9c334ce), [`b98d9a0`](https://github.com/mastra-ai/mastra/commit/b98d9a02e1a4381a4faf65b7371fe76978a42d2e), [`6f941c4`](https://github.com/mastra-ai/mastra/commit/6f941c438ca5f578619788acc7608fc2e23bd176), [`55ae5af`](https://github.com/mastra-ai/mastra/commit/55ae5afa0a59d777e519825171cef9d73f02992e)]:
348
+ - @mastra/core@1.0.0-beta.12
349
+ - @mastra/react@0.1.0-beta.12
350
+ - @mastra/schema-compat@1.0.0-beta.3
351
+ - @mastra/client-js@1.0.0-beta.12
352
+ - @mastra/ai-sdk@1.0.0-beta.9
353
+
354
+ ## 7.0.0-beta.11
355
+
356
+ ### Patch Changes
357
+
358
+ - 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))
359
+
360
+ When a workflow contains an agent step that triggers a tripwire, the workflow returns with `status: 'tripwire'` and includes tripwire details:
361
+
362
+ ```typescript showLineNumbers copy
363
+ const run = await workflow.createRun();
364
+ const result = await run.start({ inputData: { message: 'Hello' } });
365
+
366
+ if (result.status === 'tripwire') {
367
+ console.log('Workflow terminated by tripwire:', result.tripwire?.reason);
368
+ console.log('Processor ID:', result.tripwire?.processorId);
369
+ console.log('Retry requested:', result.tripwire?.retry);
370
+ }
371
+ ```
372
+
373
+ Adds new UI state for tripwire in agent chat and workflow UI.
374
+
375
+ 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).
376
+
377
+ - 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)]:
378
+ - @mastra/core@1.0.0-beta.11
379
+ - @mastra/client-js@1.0.0-beta.11
380
+ - @mastra/ai-sdk@1.0.0-beta.8
381
+ - @mastra/react@0.1.0-beta.11
382
+
383
+ ## 7.0.0-beta.10
384
+
385
+ ### Minor Changes
386
+
387
+ - 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))
388
+
389
+ ### Patch Changes
390
+
391
+ - Remove console.log in playground-ui ([#11004](https://github.com/mastra-ai/mastra/pull/11004))
392
+
393
+ - 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))
394
+
395
+ - Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
396
+
397
+ ```typescript
398
+ await workflow.deleteWorkflowRunById(runId);
399
+ ```
400
+
401
+ - 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))
402
+
403
+ - fix: persist data-\* chunks from writer.custom() to memory storage ([#10884](https://github.com/mastra-ai/mastra/pull/10884))
404
+ - Add persistence for custom data chunks (`data-*` parts) emitted via `writer.custom()` in tools
405
+ - Data chunks are now saved to message storage so they survive page refreshes
406
+ - Update `@assistant-ui/react` to v0.11.47 with native `DataMessagePart` support
407
+ - Convert `data-*` parts to `DataMessagePart` format (`{ type: 'data', name: string, data: T }`)
408
+ - Update related `@assistant-ui/*` packages for compatibility
409
+
410
+ - 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)]:
411
+ - @mastra/core@1.0.0-beta.10
412
+ - @mastra/client-js@1.0.0-beta.10
413
+ - @mastra/react@0.1.0-beta.10
414
+ - @mastra/ai-sdk@1.0.0-beta.7
415
+
416
+ ## 7.0.0-beta.9
417
+
418
+ ### Patch Changes
419
+
420
+ - Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
421
+
422
+ - Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
423
+
424
+ - 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))
425
+
426
+ - Add UI to match with the mastra studio command ([#10283](https://github.com/mastra-ai/mastra/pull/10283))
427
+
428
+ - Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
429
+
430
+ - 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)]:
431
+ - @mastra/core@1.0.0-beta.9
432
+ - @mastra/ai-sdk@1.0.0-beta.7
433
+ - @mastra/client-js@1.0.0-beta.9
434
+ - @mastra/react@0.1.0-beta.9
435
+
436
+ ## 7.0.0-beta.8
437
+
438
+ ### Patch Changes
439
+
440
+ - 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)]:
441
+ - @mastra/core@1.0.0-beta.8
442
+ - @mastra/ai-sdk@1.0.0-beta.6
443
+ - @mastra/client-js@1.0.0-beta.8
444
+ - @mastra/react@0.1.0-beta.8
445
+
446
+ ## 7.0.0-beta.7
447
+
448
+ ### Patch Changes
449
+
450
+ - 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))
451
+
452
+ This also introduces a header form available from the side bar to edit those headers.
453
+
454
+ - Fix select options overflow when list is long by adding maximum height ([#10813](https://github.com/mastra-ai/mastra/pull/10813))
455
+
456
+ - Removed uneeded calls to the message endpoint when the user is on a new thread ([#10872](https://github.com/mastra-ai/mastra/pull/10872))
457
+
458
+ - Add prominent warning banner in observability UI when token limits are exceeded (finishReason: 'length'). ([#10835](https://github.com/mastra-ai/mastra/pull/10835))
459
+
460
+ When a model stops generating due to token limits, the span details now display:
461
+ - Clear warning with alert icon
462
+ - Detailed token usage breakdown (input + output = total)
463
+ - Explanation that the response was truncated
464
+
465
+ This helps developers quickly identify and debug token limit issues in the observation page.
466
+
467
+ Fixes #8828
468
+
469
+ - 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))
470
+
471
+ - 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)]:
472
+ - @mastra/core@1.0.0-beta.7
473
+ - @mastra/client-js@1.0.0-beta.7
474
+ - @mastra/react@0.1.0-beta.7
475
+
476
+ ## 7.0.0-beta.6
477
+
478
+ ### Patch Changes
479
+
480
+ - Fix wrong hook arg type when retrieving workflow runs ([#10755](https://github.com/mastra-ai/mastra/pull/10755))
481
+
482
+ - Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
483
+
484
+ - Hide time travel on map steps in Studio ([#10631](https://github.com/mastra-ai/mastra/pull/10631))
485
+
486
+ - 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))
487
+
488
+ **Usage:**
489
+
490
+ The workflow settings are now accessible via the new `useTracingSettings` hook and `TracingSettingsProvider`:
491
+
492
+ ```tsx
493
+ import { TracingSettingsProvider, useWorkflowSettings } from '@mastra/playground-ui';
494
+
495
+ // Wrap your workflow components with the provider
496
+ <TracingSettingsProvider entityId="my-workflow" entityType="workflow">
497
+ <YourWorkflowUI />
498
+ </TracingSettingsProvider>;
499
+
500
+ // Access settings in child components
501
+ const { settings, setSettings } = useTracingSettings();
502
+
503
+ // Configure tracing options
504
+ setSettings({
505
+ tracingOptions: {
506
+ metadata: { userId: '123' },
507
+ requestContextKeys: ['user.email'],
508
+ traceId: 'abc123',
509
+ },
510
+ });
511
+ ```
512
+
513
+ Tracing options are persisted per workflow/agent in localStorage and automatically applied to all workflow/agent executions.
514
+
515
+ - 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)]:
516
+ - @mastra/core@1.0.0-beta.6
517
+ - @mastra/client-js@1.0.0-beta.6
518
+ - @mastra/ai-sdk@1.0.0-beta.5
519
+ - @mastra/react@0.1.0-beta.6
520
+ - @mastra/schema-compat@1.0.0-beta.2
521
+
522
+ ## 7.0.0-beta.5
523
+
524
+ ### Patch Changes
525
+
526
+ - Add timeTravel APIs and add timeTravel feature to studio ([#10361](https://github.com/mastra-ai/mastra/pull/10361))
527
+
528
+ - fix(agent): persist messages before tool suspension ([#10369](https://github.com/mastra-ai/mastra/pull/10369))
529
+
530
+ 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.
531
+
532
+ **Backend changes (@mastra/core):**
533
+ - Add assistant messages to messageList immediately after LLM execution
534
+ - Flush messages synchronously before suspension to persist state
535
+ - Create thread if it doesn't exist before flushing
536
+ - Add metadata helpers to persist and remove tool approval state
537
+ - Pass saveQueueManager and memory context through workflow for immediate persistence
538
+
539
+ **Frontend changes (@mastra/react):**
540
+ - Extract runId from pending approvals to enable resumption after refresh
541
+ - Convert `pendingToolApprovals` (DB format) to `requireApprovalMetadata` (runtime format)
542
+ - Handle both `dynamic-tool` and `tool-{NAME}` part types for approval state
543
+ - Change runId from hardcoded `agentId` to unique `uuid()`
544
+
545
+ **UI changes (@mastra/playground-ui):**
546
+ - Handle tool calls awaiting approval in message initialization
547
+ - Convert approval metadata format when loading initial messages
548
+
549
+ Fixes #9745, #9906
550
+
551
+ - 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))
552
+
553
+ - 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)]:
554
+ - @mastra/core@1.0.0-beta.5
555
+ - @mastra/ai-sdk@1.0.0-beta.4
556
+ - @mastra/client-js@1.0.0-beta.5
557
+ - @mastra/react@0.1.0-beta.5
558
+
559
+ ## 7.0.0-beta.4
560
+
561
+ ### Patch Changes
562
+
563
+ - 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)]:
564
+ - @mastra/ai-sdk@1.0.0-beta.3
565
+ - @mastra/client-js@1.0.0-beta.4
566
+ - @mastra/core@1.0.0-beta.4
567
+ - @mastra/react@0.1.0-beta.4
568
+
569
+ ## 7.0.0-beta.3
570
+
571
+ ### Patch Changes
572
+
573
+ - dependencies updates: ([#10057](https://github.com/mastra-ai/mastra/pull/10057))
574
+ - 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`)
575
+
576
+ - dependencies updates: ([#10085](https://github.com/mastra-ai/mastra/pull/10085))
577
+ - Updated dependency [`@xyflow/react@^12.9.3` ↗︎](https://www.npmjs.com/package/@xyflow/react/v/12.9.3) (from `^12.8.6`, in `dependencies`)
578
+
579
+ - dependencies updates: ([#9850](https://github.com/mastra-ai/mastra/pull/9850))
580
+ - Updated dependency [`@dagrejs/dagre@^1.1.8` ↗︎](https://www.npmjs.com/package/@dagrejs/dagre/v/1.1.8) (from `^1.1.5`, in `dependencies`)
581
+
582
+ - Refactor agent information for easier cloud recomposable UIs ([#9995](https://github.com/mastra-ai/mastra/pull/9995))
583
+
584
+ - Add export for agent memory for use in cloud ([#10025](https://github.com/mastra-ai/mastra/pull/10025))
585
+
586
+ - Fix scorer filtering for SpanScoring, add error and info message for user ([#10160](https://github.com/mastra-ai/mastra/pull/10160))
587
+
588
+ - 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))
589
+ MCP docs server will install the beta version of the docs server if they create a project with the beta tag.
590
+ 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.
591
+ Templates have been cleaned up
592
+ small docs updates based off of how the template migrations went
593
+
594
+ - Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
595
+
596
+ - 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)]:
597
+ - @mastra/core@1.0.0-beta.3
598
+ - @mastra/ai-sdk@1.0.0-beta.2
599
+ - @mastra/client-js@1.0.0-beta.3
600
+ - @mastra/react@0.1.0-beta.3
601
+
3
602
  ## 7.0.0-beta.2
4
603
 
5
604
  ### Patch Changes