@mastra/playground-ui 7.0.0-beta.8 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +219 -361
- package/dist/index.cjs.js +3831 -2515
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3802 -2490
- package/dist/index.es.js.map +1 -1
- package/dist/src/components/assistant-ui/memory-search.d.ts +1 -1
- package/dist/src/components/assistant-ui/messages/user-messages.d.ts +1 -0
- package/dist/src/components/assistant-ui/thread-list.d.ts +2 -0
- package/dist/src/components/assistant-ui/tools/tool-approval.d.ts +8 -0
- package/dist/src/components/assistant-ui/tooltip-icon-button.d.ts +1 -6
- package/dist/src/components/icons/agent-icon.d.ts +3 -0
- package/dist/src/components/icons/automation-icon.d.ts +3 -0
- package/dist/src/components/syntax-highlighter.d.ts +1 -2
- package/dist/src/components/ui/button.d.ts +3 -8
- package/dist/src/components/ui/copyable-content.d.ts +7 -0
- package/dist/src/components/ui/dropdown-menu.d.ts +42 -0
- package/dist/src/components/ui/elements/entry-list/entry-list-toolbar.d.ts +6 -0
- package/dist/src/components/ui/elements/form-fields/form-actions.d.ts +12 -0
- package/dist/src/components/ui/elements/form-fields/index.d.ts +4 -0
- package/dist/src/components/ui/elements/form-fields/radio-group-field.d.ts +21 -0
- package/dist/src/components/ui/elements/form-fields/slider-field.d.ts +15 -0
- package/dist/src/components/ui/elements/form-fields/textarea-field.d.ts +11 -0
- package/dist/src/components/ui/elements/headers/entity-main-header.d.ts +11 -0
- package/dist/src/components/ui/elements/headers/index.d.ts +1 -0
- package/dist/src/components/ui/elements/main-sidebar/main-sidebar.d.ts +1 -1
- package/dist/src/components/ui/elements/side-dialog/side-dialog-footer.d.ts +10 -0
- package/dist/src/components/ui/formatted-date.d.ts +3 -0
- package/dist/src/components/ui/input.d.ts +1 -1
- package/dist/src/components/ui/resizable.d.ts +23 -0
- package/dist/src/components/ui/score-indicator.d.ts +3 -0
- package/dist/src/components/ui/syntax-highlighter.d.ts +1 -1
- package/dist/src/components/ui/textarea.d.ts +1 -1
- package/dist/src/components/ui/toggle.d.ts +12 -0
- package/dist/src/domains/agents/components/agent-chat.d.ts +1 -2
- package/dist/src/domains/agents/components/agent-entity-header.d.ts +3 -1
- package/dist/src/domains/agents/components/agent-evals.d.ts +8 -0
- package/dist/src/domains/agents/components/agent-information/agent-information.d.ts +0 -25
- package/dist/src/domains/agents/components/agent-information/agent-instructions-enhancer.d.ts +4 -2
- package/dist/src/domains/agents/components/agent-information/current-instructions.d.ts +15 -0
- package/dist/src/domains/agents/components/agent-information/version-actions.d.ts +8 -0
- package/dist/src/domains/agents/components/agent-information/version-history-dialog.d.ts +9 -0
- package/dist/src/domains/agents/components/agent-information/version-history.d.ts +10 -0
- package/dist/src/domains/agents/components/agent-information/version-item.d.ts +14 -0
- package/dist/src/domains/agents/components/agent-metadata/agent-metadata-model-switcher.d.ts +2 -1
- package/dist/src/domains/agents/components/agent-metadata/agent-metadata-prompt.d.ts +4 -0
- package/dist/src/domains/agents/components/agent-metadata/agent-metadata.d.ts +13 -2
- package/dist/src/domains/agents/components/agent-metadata/connection-dot.d.ts +6 -0
- package/dist/src/domains/agents/components/agent-metadata/index.d.ts +1 -0
- package/dist/src/domains/agents/components/agent-metadata/models.d.ts +5 -0
- package/dist/src/domains/agents/components/agent-metadata/provider-status-indicator.d.ts +7 -0
- package/dist/src/domains/agents/components/agent-settings.d.ts +4 -2
- package/dist/src/domains/agents/components/{request-context.d.ts → runtime-context.d.ts} +2 -2
- package/dist/src/domains/agents/context/agent-context.d.ts +1 -2
- package/dist/src/domains/agents/context/index.d.ts +1 -1
- package/dist/src/domains/agents/context/model-reset-context.d.ts +4 -0
- package/dist/src/domains/agents/hooks/use-agent-settings-state.d.ts +1 -2
- package/dist/src/domains/agents/hooks/use-execute-agent-tool.d.ts +1 -1
- package/dist/src/domains/agents/hooks/use-prompt-enhancer.d.ts +13 -5
- package/dist/src/domains/agents/hooks/use-prompt-versions.d.ts +12 -0
- package/dist/src/domains/agents/index.d.ts +2 -4
- package/dist/src/domains/evals/hooks/index.d.ts +1 -0
- package/dist/src/domains/evals/hooks/use-evals-by-agent-id.d.ts +14 -0
- package/dist/src/domains/evals/index.d.ts +1 -0
- package/dist/src/domains/evals/types.d.ts +23 -0
- package/dist/src/domains/mcps/index.d.ts +0 -1
- package/dist/src/domains/memory/hooks/use-memory.d.ts +9 -8
- package/dist/src/domains/observability/components/helpers.d.ts +3 -3
- package/dist/src/domains/observability/components/span-details.d.ts +2 -2
- package/dist/src/domains/observability/components/span-dialog.d.ts +5 -5
- package/dist/src/domains/observability/components/span-score-list.d.ts +2 -2
- package/dist/src/domains/observability/components/span-tabs.d.ts +5 -5
- package/dist/src/domains/observability/components/trace-dialog.d.ts +3 -3
- package/dist/src/domains/observability/components/trace-span-usage.d.ts +2 -2
- package/dist/src/domains/observability/components/trace-timeline-legend.d.ts +2 -2
- package/dist/src/domains/observability/components/traces-list.d.ts +3 -3
- package/dist/src/domains/observability/index.d.ts +0 -1
- package/dist/src/domains/observability/utils/format-hierarchical-spans.d.ts +2 -2
- package/dist/src/domains/resizable-panel.d.ts +11 -0
- package/dist/src/domains/scores/components/score-dialog.d.ts +1 -1
- package/dist/src/domains/scores/components/score-table.d.ts +11 -0
- package/dist/src/domains/scores/hooks/use-scorers.d.ts +6 -3
- package/dist/src/domains/scores/hooks/use-trace-span-scores.d.ts +1 -1
- package/dist/src/domains/scores/index.d.ts +1 -2
- package/dist/src/domains/tools/components/ToolExecutor.d.ts +1 -1
- package/dist/src/domains/tools/components/index.d.ts +0 -1
- package/dist/src/domains/tools/components/tool-table/types.d.ts +2 -0
- package/dist/src/domains/tools/hooks/use-all-tools.d.ts +1 -3
- package/dist/src/domains/tools/hooks/use-execute-tool.d.ts +1 -1
- package/dist/src/domains/traces/components/traces-table.d.ts +8 -0
- package/dist/src/domains/traces/components/traces-view.d.ts +12 -0
- package/dist/src/domains/traces/context/trace-context.d.ts +20 -0
- package/dist/src/domains/traces/hooks/use-open-trace.d.ts +4 -0
- package/dist/src/domains/traces/index.d.ts +2 -0
- package/dist/src/domains/traces/mock-data.d.ts +1356 -0
- package/dist/src/domains/traces/trace-details.d.ts +1 -0
- package/dist/src/domains/traces/trace-span-details.d.ts +1 -0
- package/dist/src/domains/traces/trace-span-view.d.ts +5 -0
- package/dist/src/domains/traces/traces-sidebar.d.ts +6 -0
- package/dist/src/domains/traces/types.d.ts +55 -0
- package/dist/src/domains/traces/utils/createSpanTree.d.ts +2 -0
- package/dist/src/domains/traces/utils/getSpanVariant.d.ts +3 -0
- package/dist/src/domains/traces/utils.d.ts +12 -0
- package/dist/src/domains/workflows/context/workflow-nested-graph-context.d.ts +7 -1
- package/dist/src/domains/workflows/context/workflow-run-context.d.ts +2 -2
- package/dist/src/domains/workflows/hooks/use-workflows-actions.d.ts +21 -7
- package/dist/src/domains/workflows/index.d.ts +0 -1
- package/dist/src/domains/workflows/workflow/workflow-default-node.d.ts +8 -5
- package/dist/src/domains/workflows/workflow/workflow-graph-inner.d.ts +7 -1
- package/dist/src/domains/workflows/workflow/workflow-graph.d.ts +7 -1
- package/dist/src/domains/workflows/workflow/workflow-nested-graph.d.ts +7 -1
- package/dist/src/domains/workflows/workflow/workflow-nested-node.d.ts +8 -5
- package/dist/src/domains/workflows/workflow/workflow-result.d.ts +5 -0
- package/dist/src/domains/workflows/workflow/workflow-run-event-form.d.ts +12 -0
- package/dist/src/domains/workflows/workflow/workflow-step-action-bar.d.ts +6 -3
- package/dist/src/domains/workflows/workflow/workflow-trigger.d.ts +4 -4
- package/dist/src/ds/components/Alert/Alert.d.ts +1 -1
- package/dist/src/ds/components/Breadcrumb/Breadcrumb.d.ts +1 -2
- package/dist/src/ds/components/Button/Button.d.ts +0 -1
- package/dist/src/ds/components/Logo/MastraLogo.d.ts +1 -1
- package/dist/src/ds/components/Table/Cells.d.ts +3 -0
- package/dist/src/ds/components/TraceTree/Span.d.ts +3 -1
- package/dist/src/ds/icons/EvaluatorCoinIcon.d.ts +2 -0
- package/dist/src/ds/icons/ScoreIcon.d.ts +2 -0
- package/dist/src/ds/icons/index.d.ts +2 -0
- package/dist/src/hooks/use-agent-messages.d.ts +3 -4
- package/dist/src/hooks/use-resize-column.d.ts +12 -0
- package/dist/src/hooks/use-workflow-runs.d.ts +2 -218
- package/dist/src/index.d.ts +5 -3
- package/dist/src/lib/mastra-client.d.ts +2 -0
- package/dist/src/lib/pagination/types.d.ts +11 -0
- package/dist/src/lib/polls.d.ts +36 -0
- package/dist/src/services/mastra-runtime-provider.d.ts +1 -1
- package/dist/src/store/playground-store.d.ts +2 -2
- package/dist/src/types/memory.d.ts +7 -0
- package/dist/src/types.d.ts +3 -1
- package/package.json +25 -30
- package/dist/src/components/ui/combobox.d.ts +0 -17
- package/dist/src/domains/agents/components/agent-combobox.d.ts +0 -12
- package/dist/src/domains/agents/context/agent-prompt-experiment-context.d.ts +0 -15
- package/dist/src/domains/agents/hooks/use-agents-model-providers.d.ts +0 -1
- package/dist/src/domains/configuration/components/header-list-form.d.ts +0 -10
- package/dist/src/domains/configuration/components/studio-config-form.d.ts +0 -5
- package/dist/src/domains/configuration/context/studio-config-context.d.ts +0 -11
- package/dist/src/domains/configuration/index.d.ts +0 -3
- package/dist/src/domains/configuration/types.d.ts +0 -4
- package/dist/src/domains/mcps/components/mcp-server-combobox.d.ts +0 -12
- package/dist/src/domains/observability/components/tracing-run-options.d.ts +0 -1
- package/dist/src/domains/observability/context/tracing-settings-context.d.ts +0 -18
- package/dist/src/domains/observability/hooks/use-tracing-settings-state.d.ts +0 -10
- package/dist/src/domains/observability/utils/__tests__/span-utils.test.d.ts +0 -1
- package/dist/src/domains/observability/utils/span-utils.d.ts +0 -9
- package/dist/src/domains/scores/components/scorer-combobox.d.ts +0 -12
- package/dist/src/domains/tools/components/tool-combobox.d.ts +0 -12
- package/dist/src/domains/workflows/components/workflow-combobox.d.ts +0 -12
- package/dist/src/domains/workflows/workflow/workflow-node-badges.d.ts +0 -55
package/CHANGELOG.md
CHANGED
|
@@ -1,98 +1,78 @@
|
|
|
1
1
|
# @mastra/playground-ui
|
|
2
2
|
|
|
3
|
-
## 7.0.0
|
|
3
|
+
## 7.0.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- @mastra/core@1.0.0-beta.8
|
|
9
|
-
- @mastra/ai-sdk@1.0.0-beta.6
|
|
10
|
-
- @mastra/client-js@1.0.0-beta.8
|
|
11
|
-
- @mastra/react@0.1.0-beta.8
|
|
7
|
+
- Fix select options overflow when list is long by adding maximum height ([#10833](https://github.com/mastra-ai/mastra/pull/10833))
|
|
12
8
|
|
|
13
|
-
|
|
9
|
+
- Add timeTravel APIs and add timeTravel feature to studio ([#10757](https://github.com/mastra-ai/mastra/pull/10757))
|
|
14
10
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
- 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))
|
|
18
|
-
|
|
19
|
-
This also introduces a header form available from the side bar to edit those headers.
|
|
11
|
+
- Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10764](https://github.com/mastra-ai/mastra/pull/10764))
|
|
20
12
|
|
|
21
|
-
-
|
|
13
|
+
- Updated dependencies [[`5de72e1`](https://github.com/mastra-ai/mastra/commit/5de72e1a3fa51b860e7e0a606b66cf6f97fc100c), [`5cc85aa`](https://github.com/mastra-ai/mastra/commit/5cc85aa4329773cac8314f3aa0146227b6b158e4), [`c53f8e6`](https://github.com/mastra-ai/mastra/commit/c53f8e68df42464935f9a63eb0fc765a65aacb83), [`461f5f7`](https://github.com/mastra-ai/mastra/commit/461f5f747ce07d77dc048cf0f5df44744183c3c3), [`386ab43`](https://github.com/mastra-ai/mastra/commit/386ab4350cf2a814fb4ac0a5fc6983ca93158ffe), [`2b62302`](https://github.com/mastra-ai/mastra/commit/2b623027a9d65c1dbc963bf651e9e6a9d09da1fa), [`7d85da4`](https://github.com/mastra-ai/mastra/commit/7d85da42a5fab56009a959a9c20328558d14f4b5), [`3d7c5bd`](https://github.com/mastra-ai/mastra/commit/3d7c5bdbee1b2693cd45bf207b960dd9b7277680), [`31b381e`](https://github.com/mastra-ai/mastra/commit/31b381efb48e031c0ecc46bc6e410ae6e67b88e5), [`54cc99c`](https://github.com/mastra-ai/mastra/commit/54cc99cb99483b9e08ec41fa1502f43b71b4c351), [`e77a5f9`](https://github.com/mastra-ai/mastra/commit/e77a5f9718dc418e29e3c8a389299ed6dc0a6401), [`b685c9c`](https://github.com/mastra-ai/mastra/commit/b685c9c0b89f49e0d4542c4ac72569682db69794), [`b069af5`](https://github.com/mastra-ai/mastra/commit/b069af514c4dcfc4fdcb164303569bfff1c26e3d), [`ce01a90`](https://github.com/mastra-ai/mastra/commit/ce01a90ac4c32314c2f0cb4e4d0cf973afda11ec), [`7dc8304`](https://github.com/mastra-ai/mastra/commit/7dc830420296db516b86dcec663e54d0309b8fb8), [`6942109`](https://github.com/mastra-ai/mastra/commit/694210903c70e3c26b5ce8ca4f4637ca2d9eb369), [`62d13f4`](https://github.com/mastra-ai/mastra/commit/62d13f4d1db1c16742831f210fe4c2caf8a26d57), [`358ab98`](https://github.com/mastra-ai/mastra/commit/358ab98024c388e383aca15616e8988bf4a5b66e)]:
|
|
14
|
+
- @mastra/client-js@0.17.0
|
|
15
|
+
- @mastra/core@0.24.7
|
|
16
|
+
- @mastra/schema-compat@0.11.9
|
|
17
|
+
- @mastra/react@0.0.22
|
|
22
18
|
|
|
23
|
-
|
|
19
|
+
## 7.0.0-alpha.4
|
|
24
20
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
When a model stops generating due to token limits, the span details now display:
|
|
28
|
-
- Clear warning with alert icon
|
|
29
|
-
- Detailed token usage breakdown (input + output = total)
|
|
30
|
-
- Explanation that the response was truncated
|
|
21
|
+
### Patch Changes
|
|
31
22
|
|
|
32
|
-
|
|
23
|
+
- Updated dependencies []:
|
|
24
|
+
- @mastra/core@0.24.7-alpha.4
|
|
25
|
+
- @mastra/client-js@0.17.0-alpha.4
|
|
26
|
+
- @mastra/react@0.0.22-alpha.4
|
|
33
27
|
|
|
34
|
-
|
|
28
|
+
## 7.0.0-alpha.3
|
|
35
29
|
|
|
36
|
-
|
|
30
|
+
### Patch Changes
|
|
37
31
|
|
|
38
|
-
- Updated dependencies [
|
|
39
|
-
- @mastra/core@
|
|
40
|
-
- @mastra/client-js@
|
|
41
|
-
- @mastra/react@0.
|
|
32
|
+
- Updated dependencies []:
|
|
33
|
+
- @mastra/core@0.24.7-alpha.3
|
|
34
|
+
- @mastra/client-js@0.17.0-alpha.3
|
|
35
|
+
- @mastra/react@0.0.22-alpha.3
|
|
42
36
|
|
|
43
|
-
## 7.0.0-
|
|
37
|
+
## 7.0.0-alpha.2
|
|
44
38
|
|
|
45
39
|
### Patch Changes
|
|
46
40
|
|
|
47
|
-
-
|
|
48
|
-
|
|
49
|
-
-
|
|
41
|
+
- Updated dependencies [[`461f5f7`](https://github.com/mastra-ai/mastra/commit/461f5f747ce07d77dc048cf0f5df44744183c3c3), [`b685c9c`](https://github.com/mastra-ai/mastra/commit/b685c9c0b89f49e0d4542c4ac72569682db69794)]:
|
|
42
|
+
- @mastra/client-js@0.17.0-alpha.2
|
|
43
|
+
- @mastra/core@0.24.7-alpha.2
|
|
44
|
+
- @mastra/react@0.0.22-alpha.2
|
|
50
45
|
|
|
51
|
-
|
|
46
|
+
## 7.0.0-alpha.1
|
|
52
47
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
**Usage:**
|
|
48
|
+
### Patch Changes
|
|
56
49
|
|
|
57
|
-
|
|
50
|
+
- Fix select options overflow when list is long by adding maximum height ([#10833](https://github.com/mastra-ai/mastra/pull/10833))
|
|
58
51
|
|
|
59
|
-
|
|
60
|
-
import { TracingSettingsProvider, useWorkflowSettings } from '@mastra/playground-ui';
|
|
52
|
+
- Add timeTravel APIs and add timeTravel feature to studio ([#10757](https://github.com/mastra-ai/mastra/pull/10757))
|
|
61
53
|
|
|
62
|
-
|
|
63
|
-
<TracingSettingsProvider entityId="my-workflow" entityType="workflow">
|
|
64
|
-
<YourWorkflowUI />
|
|
65
|
-
</TracingSettingsProvider>;
|
|
54
|
+
- Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10764](https://github.com/mastra-ai/mastra/pull/10764))
|
|
66
55
|
|
|
67
|
-
|
|
68
|
-
|
|
56
|
+
- Updated dependencies [[`5de72e1`](https://github.com/mastra-ai/mastra/commit/5de72e1a3fa51b860e7e0a606b66cf6f97fc100c), [`5cc85aa`](https://github.com/mastra-ai/mastra/commit/5cc85aa4329773cac8314f3aa0146227b6b158e4), [`c53f8e6`](https://github.com/mastra-ai/mastra/commit/c53f8e68df42464935f9a63eb0fc765a65aacb83), [`386ab43`](https://github.com/mastra-ai/mastra/commit/386ab4350cf2a814fb4ac0a5fc6983ca93158ffe), [`2b62302`](https://github.com/mastra-ai/mastra/commit/2b623027a9d65c1dbc963bf651e9e6a9d09da1fa), [`7d85da4`](https://github.com/mastra-ai/mastra/commit/7d85da42a5fab56009a959a9c20328558d14f4b5), [`3d7c5bd`](https://github.com/mastra-ai/mastra/commit/3d7c5bdbee1b2693cd45bf207b960dd9b7277680), [`31b381e`](https://github.com/mastra-ai/mastra/commit/31b381efb48e031c0ecc46bc6e410ae6e67b88e5), [`e77a5f9`](https://github.com/mastra-ai/mastra/commit/e77a5f9718dc418e29e3c8a389299ed6dc0a6401), [`b069af5`](https://github.com/mastra-ai/mastra/commit/b069af514c4dcfc4fdcb164303569bfff1c26e3d), [`ce01a90`](https://github.com/mastra-ai/mastra/commit/ce01a90ac4c32314c2f0cb4e4d0cf973afda11ec), [`7dc8304`](https://github.com/mastra-ai/mastra/commit/7dc830420296db516b86dcec663e54d0309b8fb8), [`6942109`](https://github.com/mastra-ai/mastra/commit/694210903c70e3c26b5ce8ca4f4637ca2d9eb369), [`62d13f4`](https://github.com/mastra-ai/mastra/commit/62d13f4d1db1c16742831f210fe4c2caf8a26d57), [`358ab98`](https://github.com/mastra-ai/mastra/commit/358ab98024c388e383aca15616e8988bf4a5b66e)]:
|
|
57
|
+
- @mastra/client-js@0.17.0-alpha.1
|
|
58
|
+
- @mastra/core@0.24.7-alpha.1
|
|
59
|
+
- @mastra/schema-compat@0.11.9-alpha.0
|
|
60
|
+
- @mastra/react@0.0.22-alpha.1
|
|
69
61
|
|
|
70
|
-
|
|
71
|
-
setSettings({
|
|
72
|
-
tracingOptions: {
|
|
73
|
-
metadata: { userId: '123' },
|
|
74
|
-
requestContextKeys: ['user.email'],
|
|
75
|
-
traceId: 'abc123',
|
|
76
|
-
},
|
|
77
|
-
});
|
|
78
|
-
```
|
|
62
|
+
## 6.9.7-alpha.0
|
|
79
63
|
|
|
80
|
-
|
|
64
|
+
### Patch Changes
|
|
81
65
|
|
|
82
|
-
- Updated dependencies [[`
|
|
83
|
-
- @mastra/core@
|
|
84
|
-
- @mastra/client-js@
|
|
85
|
-
- @mastra/
|
|
86
|
-
- @mastra/react@0.1.0-beta.6
|
|
87
|
-
- @mastra/schema-compat@1.0.0-beta.2
|
|
66
|
+
- Updated dependencies [[`54cc99c`](https://github.com/mastra-ai/mastra/commit/54cc99cb99483b9e08ec41fa1502f43b71b4c351)]:
|
|
67
|
+
- @mastra/core@0.24.7-alpha.0
|
|
68
|
+
- @mastra/client-js@0.16.16-alpha.0
|
|
69
|
+
- @mastra/react@0.0.22-alpha.0
|
|
88
70
|
|
|
89
|
-
##
|
|
71
|
+
## 6.9.6
|
|
90
72
|
|
|
91
73
|
### Patch Changes
|
|
92
74
|
|
|
93
|
-
-
|
|
94
|
-
|
|
95
|
-
- fix(agent): persist messages before tool suspension ([#10369](https://github.com/mastra-ai/mastra/pull/10369))
|
|
75
|
+
- fix(agent): persist messages before tool suspension ([#10542](https://github.com/mastra-ai/mastra/pull/10542))
|
|
96
76
|
|
|
97
77
|
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.
|
|
98
78
|
|
|
@@ -115,410 +95,288 @@
|
|
|
115
95
|
|
|
116
96
|
Fixes #9745, #9906
|
|
117
97
|
|
|
118
|
-
-
|
|
119
|
-
|
|
120
|
-
-
|
|
121
|
-
- @mastra/
|
|
122
|
-
- @mastra/ai-sdk@1.0.0-beta.4
|
|
123
|
-
- @mastra/client-js@1.0.0-beta.5
|
|
124
|
-
- @mastra/react@0.1.0-beta.5
|
|
98
|
+
- Updated dependencies [[`5657314`](https://github.com/mastra-ai/mastra/commit/5657314a1f9d49019bb53f357fa48f75a69247ca), [`e5aca78`](https://github.com/mastra-ai/mastra/commit/e5aca78bb7f263bb8b470bedae81efe9805d7544), [`33a607a`](https://github.com/mastra-ai/mastra/commit/33a607a1f716c2029d4a1ff1603dd756129a33b3), [`cc10fc1`](https://github.com/mastra-ai/mastra/commit/cc10fc192d9f527c71a23cc9def10d8718935ee1), [`1f7ee84`](https://github.com/mastra-ai/mastra/commit/1f7ee841a643ef12d90392125881f06fdf877293), [`e7d5149`](https://github.com/mastra-ai/mastra/commit/e7d514995260b63b2108308e85c64de37dcd0f71), [`f195082`](https://github.com/mastra-ai/mastra/commit/f1950822a2425d5ccae78c5d010e02ddb027a869), [`d9986dd`](https://github.com/mastra-ai/mastra/commit/d9986dd3513f7ca3244a8e599a440ccf4d8bc28b), [`a45b0f0`](https://github.com/mastra-ai/mastra/commit/a45b0f0cd19eab1fe4deceae3abf029442c22f74), [`f6e8eb3`](https://github.com/mastra-ai/mastra/commit/f6e8eb3dac53b70b06e906b2818b1d2a5b0486d7), [`58b0f0c`](https://github.com/mastra-ai/mastra/commit/58b0f0c87e28e838f5a05980f0f326e75ddc3132), [`ce57a2b`](https://github.com/mastra-ai/mastra/commit/ce57a2b62fd0d5f6532e4ecd1ba9ba93ac9b95fc), [`3236f35`](https://github.com/mastra-ai/mastra/commit/3236f352ae13cc8552c2965164e97bd125dae48d), [`ce57a2b`](https://github.com/mastra-ai/mastra/commit/ce57a2b62fd0d5f6532e4ecd1ba9ba93ac9b95fc), [`0230321`](https://github.com/mastra-ai/mastra/commit/02303217870bedea0ef009bea9a952f24ed38aaf), [`7b541f4`](https://github.com/mastra-ai/mastra/commit/7b541f49eda6f5a87b738198edbd136927599475), [`0eea842`](https://github.com/mastra-ai/mastra/commit/0eea8423cbdd37f2111593c6f7d2efcde4b7e4ce), [`63ae8a2`](https://github.com/mastra-ai/mastra/commit/63ae8a22c0c09bbb8b9779f5f38934cd75f616af), [`bf810c5`](https://github.com/mastra-ai/mastra/commit/bf810c5c561bd8ef221c0f6bd84e69770b9a38cc), [`ac7ef07`](https://github.com/mastra-ai/mastra/commit/ac7ef07633caee89707142171d2873c888ffef85), [`522f0b4`](https://github.com/mastra-ai/mastra/commit/522f0b45330719858794eabffffde4f343f55549), [`bf810c5`](https://github.com/mastra-ai/mastra/commit/bf810c5c561bd8ef221c0f6bd84e69770b9a38cc), [`8b51d55`](https://github.com/mastra-ai/mastra/commit/8b51d55bae531edf7e383958d7ecee04df31f5d5), [`2131ac5`](https://github.com/mastra-ai/mastra/commit/2131ac571d5065f0a656c57494bca98691bb7609)]:
|
|
99
|
+
- @mastra/core@0.24.6
|
|
100
|
+
- @mastra/react@0.0.21
|
|
101
|
+
- @mastra/client-js@0.16.15
|
|
125
102
|
|
|
126
|
-
##
|
|
103
|
+
## 6.9.6-alpha.0
|
|
127
104
|
|
|
128
105
|
### Patch Changes
|
|
129
106
|
|
|
130
|
-
-
|
|
131
|
-
- @mastra/ai-sdk@1.0.0-beta.3
|
|
132
|
-
- @mastra/client-js@1.0.0-beta.4
|
|
133
|
-
- @mastra/core@1.0.0-beta.4
|
|
134
|
-
- @mastra/react@0.1.0-beta.4
|
|
107
|
+
- fix(agent): persist messages before tool suspension ([#10542](https://github.com/mastra-ai/mastra/pull/10542))
|
|
135
108
|
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
### Patch Changes
|
|
139
|
-
|
|
140
|
-
- dependencies updates: ([#10057](https://github.com/mastra-ai/mastra/pull/10057))
|
|
141
|
-
- 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`)
|
|
109
|
+
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.
|
|
142
110
|
|
|
143
|
-
|
|
144
|
-
-
|
|
111
|
+
**Backend changes (@mastra/core):**
|
|
112
|
+
- Add assistant messages to messageList immediately after LLM execution
|
|
113
|
+
- Flush messages synchronously before suspension to persist state
|
|
114
|
+
- Create thread if it doesn't exist before flushing
|
|
115
|
+
- Add metadata helpers to persist and remove tool approval state
|
|
116
|
+
- Pass saveQueueManager and memory context through workflow for immediate persistence
|
|
145
117
|
|
|
146
|
-
|
|
147
|
-
-
|
|
118
|
+
**Frontend changes (@mastra/react):**
|
|
119
|
+
- Extract runId from pending approvals to enable resumption after refresh
|
|
120
|
+
- Convert `pendingToolApprovals` (DB format) to `requireApprovalMetadata` (runtime format)
|
|
121
|
+
- Handle both `dynamic-tool` and `tool-{NAME}` part types for approval state
|
|
122
|
+
- Change runId from hardcoded `agentId` to unique `uuid()`
|
|
148
123
|
|
|
149
|
-
|
|
124
|
+
**UI changes (@mastra/playground-ui):**
|
|
125
|
+
- Handle tool calls awaiting approval in message initialization
|
|
126
|
+
- Convert approval metadata format when loading initial messages
|
|
150
127
|
|
|
151
|
-
|
|
128
|
+
Fixes #9745, #9906
|
|
152
129
|
|
|
153
|
-
-
|
|
130
|
+
- Updated dependencies [[`5657314`](https://github.com/mastra-ai/mastra/commit/5657314a1f9d49019bb53f357fa48f75a69247ca), [`e5aca78`](https://github.com/mastra-ai/mastra/commit/e5aca78bb7f263bb8b470bedae81efe9805d7544), [`33a607a`](https://github.com/mastra-ai/mastra/commit/33a607a1f716c2029d4a1ff1603dd756129a33b3), [`cc10fc1`](https://github.com/mastra-ai/mastra/commit/cc10fc192d9f527c71a23cc9def10d8718935ee1), [`1f7ee84`](https://github.com/mastra-ai/mastra/commit/1f7ee841a643ef12d90392125881f06fdf877293), [`e7d5149`](https://github.com/mastra-ai/mastra/commit/e7d514995260b63b2108308e85c64de37dcd0f71), [`f195082`](https://github.com/mastra-ai/mastra/commit/f1950822a2425d5ccae78c5d010e02ddb027a869), [`d9986dd`](https://github.com/mastra-ai/mastra/commit/d9986dd3513f7ca3244a8e599a440ccf4d8bc28b), [`a45b0f0`](https://github.com/mastra-ai/mastra/commit/a45b0f0cd19eab1fe4deceae3abf029442c22f74), [`f6e8eb3`](https://github.com/mastra-ai/mastra/commit/f6e8eb3dac53b70b06e906b2818b1d2a5b0486d7), [`58b0f0c`](https://github.com/mastra-ai/mastra/commit/58b0f0c87e28e838f5a05980f0f326e75ddc3132), [`ce57a2b`](https://github.com/mastra-ai/mastra/commit/ce57a2b62fd0d5f6532e4ecd1ba9ba93ac9b95fc), [`3236f35`](https://github.com/mastra-ai/mastra/commit/3236f352ae13cc8552c2965164e97bd125dae48d), [`ce57a2b`](https://github.com/mastra-ai/mastra/commit/ce57a2b62fd0d5f6532e4ecd1ba9ba93ac9b95fc), [`0230321`](https://github.com/mastra-ai/mastra/commit/02303217870bedea0ef009bea9a952f24ed38aaf), [`7b541f4`](https://github.com/mastra-ai/mastra/commit/7b541f49eda6f5a87b738198edbd136927599475), [`0eea842`](https://github.com/mastra-ai/mastra/commit/0eea8423cbdd37f2111593c6f7d2efcde4b7e4ce), [`63ae8a2`](https://github.com/mastra-ai/mastra/commit/63ae8a22c0c09bbb8b9779f5f38934cd75f616af), [`bf810c5`](https://github.com/mastra-ai/mastra/commit/bf810c5c561bd8ef221c0f6bd84e69770b9a38cc), [`ac7ef07`](https://github.com/mastra-ai/mastra/commit/ac7ef07633caee89707142171d2873c888ffef85), [`522f0b4`](https://github.com/mastra-ai/mastra/commit/522f0b45330719858794eabffffde4f343f55549), [`bf810c5`](https://github.com/mastra-ai/mastra/commit/bf810c5c561bd8ef221c0f6bd84e69770b9a38cc), [`8b51d55`](https://github.com/mastra-ai/mastra/commit/8b51d55bae531edf7e383958d7ecee04df31f5d5), [`2131ac5`](https://github.com/mastra-ai/mastra/commit/2131ac571d5065f0a656c57494bca98691bb7609)]:
|
|
131
|
+
- @mastra/core@0.24.6-alpha.0
|
|
132
|
+
- @mastra/react@0.0.21-alpha.0
|
|
133
|
+
- @mastra/client-js@0.16.15-alpha.0
|
|
154
134
|
|
|
155
|
-
|
|
156
|
-
MCP docs server will install the beta version of the docs server if they create a project with the beta tag.
|
|
157
|
-
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.
|
|
158
|
-
Templates have been cleaned up
|
|
159
|
-
small docs updates based off of how the template migrations went
|
|
135
|
+
## 6.9.5
|
|
160
136
|
|
|
161
|
-
|
|
137
|
+
### Patch Changes
|
|
162
138
|
|
|
163
|
-
- Updated dependencies [[`
|
|
164
|
-
- @mastra/core@
|
|
165
|
-
- @mastra/
|
|
166
|
-
- @mastra/
|
|
167
|
-
- @mastra/react@0.1.0-beta.3
|
|
139
|
+
- Updated dependencies [[`880f12b`](https://github.com/mastra-ai/mastra/commit/880f12bb45a3d49faf8d22969744ffb6e01c66fd)]:
|
|
140
|
+
- @mastra/core@0.24.5
|
|
141
|
+
- @mastra/client-js@0.16.14
|
|
142
|
+
- @mastra/react@0.0.20
|
|
168
143
|
|
|
169
|
-
##
|
|
144
|
+
## 6.9.5-alpha.0
|
|
170
145
|
|
|
171
146
|
### Patch Changes
|
|
172
147
|
|
|
173
|
-
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
- Updated dependencies [[`627067b`](https://github.com/mastra-ai/mastra/commit/627067b22eeb26601f65fee3646ba17fc0c91501), [`465ac05`](https://github.com/mastra-ai/mastra/commit/465ac0526a91d175542091c675181f1a96c98c46)]:
|
|
178
|
-
- @mastra/ai-sdk@1.0.0-beta.1
|
|
179
|
-
- @mastra/core@1.0.0-beta.2
|
|
180
|
-
- @mastra/client-js@1.0.0-beta.2
|
|
181
|
-
- @mastra/react@0.1.0-beta.2
|
|
148
|
+
- Updated dependencies [[`880f12b`](https://github.com/mastra-ai/mastra/commit/880f12bb45a3d49faf8d22969744ffb6e01c66fd)]:
|
|
149
|
+
- @mastra/core@0.24.5-alpha.0
|
|
150
|
+
- @mastra/client-js@0.16.14-alpha.0
|
|
151
|
+
- @mastra/react@0.0.20-alpha.0
|
|
182
152
|
|
|
183
|
-
##
|
|
153
|
+
## 6.9.4
|
|
184
154
|
|
|
185
155
|
### Patch Changes
|
|
186
156
|
|
|
187
|
-
-
|
|
188
|
-
|
|
189
|
-
-
|
|
157
|
+
- Updated dependencies [[`418420f`](https://github.com/mastra-ai/mastra/commit/418420fc10a9e2b95c7bae0e1dd08876bb7aa473)]:
|
|
158
|
+
- @mastra/core@0.24.4
|
|
159
|
+
- @mastra/client-js@0.16.13
|
|
160
|
+
- @mastra/react@0.0.19
|
|
190
161
|
|
|
191
|
-
|
|
162
|
+
## 6.9.4-alpha.0
|
|
192
163
|
|
|
193
|
-
|
|
164
|
+
### Patch Changes
|
|
194
165
|
|
|
195
|
-
- Updated dependencies [[`
|
|
196
|
-
- @mastra/core@
|
|
197
|
-
- @mastra/client-js@
|
|
198
|
-
- @mastra/react@0.
|
|
166
|
+
- Updated dependencies [[`418420f`](https://github.com/mastra-ai/mastra/commit/418420fc10a9e2b95c7bae0e1dd08876bb7aa473)]:
|
|
167
|
+
- @mastra/core@0.24.4-alpha.0
|
|
168
|
+
- @mastra/client-js@0.16.13-alpha.0
|
|
169
|
+
- @mastra/react@0.0.19-alpha.0
|
|
199
170
|
|
|
200
|
-
##
|
|
171
|
+
## 6.9.3
|
|
201
172
|
|
|
202
|
-
###
|
|
173
|
+
### Patch Changes
|
|
203
174
|
|
|
204
|
-
-
|
|
175
|
+
- Updated dependencies [[`91fa2b0`](https://github.com/mastra-ai/mastra/commit/91fa2b0cf077561d835baef8519a1422f1decd55), [`7491cc0`](https://github.com/mastra-ai/mastra/commit/7491cc0350b2ba067f98c4915bf607119bd0150f), [`0d10ac7`](https://github.com/mastra-ai/mastra/commit/0d10ac7b8efa03c2f0c330eb2520148bfa6091e9), [`e3e899c`](https://github.com/mastra-ai/mastra/commit/e3e899c650f4c435445303bd97a66f5840a52a1e)]:
|
|
176
|
+
- @mastra/client-js@0.16.12
|
|
177
|
+
- @mastra/core@0.24.3
|
|
178
|
+
- @mastra/react@0.0.18
|
|
205
179
|
|
|
206
|
-
|
|
180
|
+
## 6.9.3-alpha.0
|
|
207
181
|
|
|
208
|
-
|
|
182
|
+
### Patch Changes
|
|
209
183
|
|
|
210
|
-
|
|
184
|
+
- Updated dependencies [[`91fa2b0`](https://github.com/mastra-ai/mastra/commit/91fa2b0cf077561d835baef8519a1422f1decd55), [`7491cc0`](https://github.com/mastra-ai/mastra/commit/7491cc0350b2ba067f98c4915bf607119bd0150f), [`0d10ac7`](https://github.com/mastra-ai/mastra/commit/0d10ac7b8efa03c2f0c330eb2520148bfa6091e9), [`e3e899c`](https://github.com/mastra-ai/mastra/commit/e3e899c650f4c435445303bd97a66f5840a52a1e)]:
|
|
185
|
+
- @mastra/client-js@0.16.12-alpha.0
|
|
186
|
+
- @mastra/core@0.24.3-alpha.0
|
|
187
|
+
- @mastra/react@0.0.18-alpha.0
|
|
211
188
|
|
|
212
|
-
|
|
189
|
+
## 6.9.2
|
|
213
190
|
|
|
214
|
-
|
|
215
|
-
// Before
|
|
216
|
-
const messages = await storage.getMessages({ threadId: 'thread-1' });
|
|
191
|
+
### Patch Changes
|
|
217
192
|
|
|
218
|
-
|
|
219
|
-
const result = await storage.listMessages({
|
|
220
|
-
threadId: 'thread-1',
|
|
221
|
-
page: 0,
|
|
222
|
-
perPage: 50,
|
|
223
|
-
});
|
|
224
|
-
const messages = result.messages; // Access messages array
|
|
225
|
-
console.log(result.total); // Total count
|
|
226
|
-
console.log(result.hasMore); // Whether more pages exist
|
|
227
|
-
```
|
|
193
|
+
- Fix scorer filtering for SpanScoring, add error and info message for user ([#10164](https://github.com/mastra-ai/mastra/pull/10164))
|
|
228
194
|
|
|
229
|
-
|
|
195
|
+
- Updated dependencies [[`eebb7bb`](https://github.com/mastra-ai/mastra/commit/eebb7bb407c57342a3be3a2efbe68c696589feeb), [`c6e6d07`](https://github.com/mastra-ai/mastra/commit/c6e6d071ecf346a80dceab410af2c567c7e66a57), [`0e6df8f`](https://github.com/mastra-ai/mastra/commit/0e6df8f66340992cb1b319834657deb17368de52), [`6295fd7`](https://github.com/mastra-ai/mastra/commit/6295fd783d49075d5bf2c18ff9486e94d36aaa56), [`d813cf7`](https://github.com/mastra-ai/mastra/commit/d813cf7251695d85cc60469058384ffa74974484)]:
|
|
196
|
+
- @mastra/core@0.24.2
|
|
197
|
+
- @mastra/client-js@0.16.11
|
|
198
|
+
- @mastra/react@0.0.17
|
|
230
199
|
|
|
231
|
-
|
|
200
|
+
## 6.9.2-alpha.0
|
|
232
201
|
|
|
233
|
-
|
|
202
|
+
### Patch Changes
|
|
234
203
|
|
|
235
|
-
|
|
236
|
-
const result = await storage.listMessages({
|
|
237
|
-
threadId: 'thread-1',
|
|
238
|
-
orderBy: { field: 'createdAt', direction: 'DESC' },
|
|
239
|
-
});
|
|
240
|
-
```
|
|
204
|
+
- Fix scorer filtering for SpanScoring, add error and info message for user ([#10164](https://github.com/mastra-ai/mastra/pull/10164))
|
|
241
205
|
|
|
242
|
-
|
|
206
|
+
- Updated dependencies [[`eebb7bb`](https://github.com/mastra-ai/mastra/commit/eebb7bb407c57342a3be3a2efbe68c696589feeb), [`c6e6d07`](https://github.com/mastra-ai/mastra/commit/c6e6d071ecf346a80dceab410af2c567c7e66a57), [`0e6df8f`](https://github.com/mastra-ai/mastra/commit/0e6df8f66340992cb1b319834657deb17368de52), [`6295fd7`](https://github.com/mastra-ai/mastra/commit/6295fd783d49075d5bf2c18ff9486e94d36aaa56), [`d813cf7`](https://github.com/mastra-ai/mastra/commit/d813cf7251695d85cc60469058384ffa74974484)]:
|
|
207
|
+
- @mastra/core@0.24.2-alpha.0
|
|
208
|
+
- @mastra/client-js@0.16.11-alpha.0
|
|
209
|
+
- @mastra/react@0.0.17-alpha.0
|
|
243
210
|
|
|
244
|
-
|
|
211
|
+
## 6.9.1
|
|
245
212
|
|
|
246
|
-
|
|
213
|
+
### Patch Changes
|
|
247
214
|
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
215
|
+
- Updated dependencies [[`082393c`](https://github.com/mastra-ai/mastra/commit/082393c002f3751113a48da28e4c0ed3db9824d7), [`0a0aa87`](https://github.com/mastra-ai/mastra/commit/0a0aa87910dd9234ae11e8146fbf54d71f0b1516), [`56bbbd0`](https://github.com/mastra-ai/mastra/commit/56bbbd0eb4510455ff03d6bf2827fdbd307938be), [`d576fd8`](https://github.com/mastra-ai/mastra/commit/d576fd8f2a3c61bcf2f7d5d2bdfb496d442c46c2), [`5e48406`](https://github.com/mastra-ai/mastra/commit/5e48406766fa94e2b7c56b70fb7d6068cf7f3989), [`7fcce62`](https://github.com/mastra-ai/mastra/commit/7fcce62880c3525fbf752d59c0ac2c478cffe024), [`16a324f`](https://github.com/mastra-ai/mastra/commit/16a324f8c30a07d0d899bc2e4e7998c6b40a4cb6), [`26aee16`](https://github.com/mastra-ai/mastra/commit/26aee160149e7acb84a533bf45631aaed6dd7077), [`b063a81`](https://github.com/mastra-ai/mastra/commit/b063a8144176915a766ea15888e1e8a06a020776), [`5ff9462`](https://github.com/mastra-ai/mastra/commit/5ff9462691c80a6841b014bcc68f6a85c3fd3fbf)]:
|
|
216
|
+
- @mastra/client-js@0.16.10
|
|
217
|
+
- @mastra/core@0.24.1
|
|
218
|
+
- @mastra/react@0.0.16
|
|
251
219
|
|
|
252
|
-
|
|
253
|
-
const response = await client.listThreadMessages(threadId, { agentId });
|
|
254
|
-
```
|
|
220
|
+
## 6.9.1-alpha.0
|
|
255
221
|
|
|
256
|
-
|
|
222
|
+
### Patch Changes
|
|
257
223
|
|
|
258
|
-
|
|
224
|
+
- Updated dependencies [[`082393c`](https://github.com/mastra-ai/mastra/commit/082393c002f3751113a48da28e4c0ed3db9824d7), [`0a0aa87`](https://github.com/mastra-ai/mastra/commit/0a0aa87910dd9234ae11e8146fbf54d71f0b1516), [`56bbbd0`](https://github.com/mastra-ai/mastra/commit/56bbbd0eb4510455ff03d6bf2827fdbd307938be), [`d576fd8`](https://github.com/mastra-ai/mastra/commit/d576fd8f2a3c61bcf2f7d5d2bdfb496d442c46c2), [`5e48406`](https://github.com/mastra-ai/mastra/commit/5e48406766fa94e2b7c56b70fb7d6068cf7f3989), [`7fcce62`](https://github.com/mastra-ai/mastra/commit/7fcce62880c3525fbf752d59c0ac2c478cffe024), [`16a324f`](https://github.com/mastra-ai/mastra/commit/16a324f8c30a07d0d899bc2e4e7998c6b40a4cb6), [`26aee16`](https://github.com/mastra-ai/mastra/commit/26aee160149e7acb84a533bf45631aaed6dd7077), [`b063a81`](https://github.com/mastra-ai/mastra/commit/b063a8144176915a766ea15888e1e8a06a020776), [`5ff9462`](https://github.com/mastra-ai/mastra/commit/5ff9462691c80a6841b014bcc68f6a85c3fd3fbf)]:
|
|
225
|
+
- @mastra/client-js@0.16.10-alpha.0
|
|
226
|
+
- @mastra/core@0.24.1-alpha.0
|
|
227
|
+
- @mastra/react@0.0.16-alpha.0
|
|
259
228
|
|
|
260
|
-
|
|
229
|
+
## 6.9.0
|
|
261
230
|
|
|
262
|
-
|
|
231
|
+
### Minor Changes
|
|
263
232
|
|
|
264
|
-
|
|
265
|
-
// Before
|
|
266
|
-
import type { StorageGetMessagesArg } from '@mastra/core';
|
|
233
|
+
- Update peer dependencies to match core package version bump (0.23.4) ([#9487](https://github.com/mastra-ai/mastra/pull/9487))
|
|
267
234
|
|
|
268
|
-
|
|
269
|
-
import type { StorageListMessagesInput } from '@mastra/core';
|
|
270
|
-
```
|
|
235
|
+
### Patch Changes
|
|
271
236
|
|
|
272
|
-
-
|
|
237
|
+
- update peerdeps ([`5ca1cca`](https://github.com/mastra-ai/mastra/commit/5ca1ccac61ffa7141e6d9fa8f22d3ad4d03bf5dc))
|
|
273
238
|
|
|
274
|
-
-
|
|
239
|
+
- Fixes issue where clicking the reset button in the model picker would fail to restore the original LanguageModelV2 (or any other types) object that was passed during agent construction. ([#9487](https://github.com/mastra-ai/mastra/pull/9487))
|
|
275
240
|
|
|
276
|
-
-
|
|
241
|
+
- Remove unused /model-providers API ([#9554](https://github.com/mastra-ai/mastra/pull/9554))
|
|
277
242
|
|
|
278
|
-
-
|
|
243
|
+
- Fix undefined runtimeContext using memory from playground ([#9548](https://github.com/mastra-ai/mastra/pull/9548))
|
|
279
244
|
|
|
280
|
-
-
|
|
245
|
+
- Updated dependencies [[`5ca1cca`](https://github.com/mastra-ai/mastra/commit/5ca1ccac61ffa7141e6d9fa8f22d3ad4d03bf5dc), [`6d7e90d`](https://github.com/mastra-ai/mastra/commit/6d7e90db09713e6250f4d6c3d3cff1b4740e50f9), [`f78b908`](https://github.com/mastra-ai/mastra/commit/f78b9080e11af765969b36b4a619761056030840), [`23c2614`](https://github.com/mastra-ai/mastra/commit/23c26140fdbf04b8c59e8d7d52106d67dad962ec), [`139588d`](https://github.com/mastra-ai/mastra/commit/139588df7755c9111a3060f72a789c1a8c95e091), [`186b29b`](https://github.com/mastra-ai/mastra/commit/186b29bd51ac1dcc24ad3825fdb7207a6d6391a6), [`e365eda`](https://github.com/mastra-ai/mastra/commit/e365eda45795b43707310531cac1e2ce4e5a0712)]:
|
|
246
|
+
- @mastra/client-js@0.16.9
|
|
247
|
+
- @mastra/react@0.0.15
|
|
248
|
+
- @mastra/core@0.24.0
|
|
281
249
|
|
|
282
|
-
|
|
250
|
+
## 6.9.0-alpha.0
|
|
283
251
|
|
|
284
|
-
|
|
285
|
-
- Removed legacy v1 watch event handlers and types
|
|
286
|
-
- Renamed `watch-v2` to `watch` throughout the codebase
|
|
287
|
-
- Removed `.watch()` method from client-js SDK (`Workflow` and `AgentBuilder` classes)
|
|
288
|
-
- Removed `/watch` HTTP endpoints from server and deployer
|
|
289
|
-
- Removed `WorkflowWatchResult` and v1 `WatchEvent` types
|
|
252
|
+
### Minor Changes
|
|
290
253
|
|
|
291
|
-
-
|
|
254
|
+
- Update peer dependencies to match core package version bump (0.23.4) ([#9487](https://github.com/mastra-ai/mastra/pull/9487))
|
|
292
255
|
|
|
293
|
-
|
|
256
|
+
### Patch Changes
|
|
294
257
|
|
|
295
|
-
|
|
296
|
-
- `Memory.listThreadsByResourceId()`
|
|
297
|
-
- `Memory.listMessages()`
|
|
298
|
-
- `Storage.listWorkflowRuns()`
|
|
258
|
+
- update peerdeps ([`5ca1cca`](https://github.com/mastra-ai/mastra/commit/5ca1ccac61ffa7141e6d9fa8f22d3ad4d03bf5dc))
|
|
299
259
|
|
|
300
|
-
|
|
260
|
+
- Fixes issue where clicking the reset button in the model picker would fail to restore the original LanguageModelV2 (or any other types) object that was passed during agent construction. ([#9487](https://github.com/mastra-ai/mastra/pull/9487))
|
|
301
261
|
|
|
302
|
-
|
|
303
|
-
// Before
|
|
304
|
-
await memory.listThreadsByResourceId({
|
|
305
|
-
resourceId: 'user-123',
|
|
306
|
-
offset: 20,
|
|
307
|
-
limit: 10,
|
|
308
|
-
});
|
|
262
|
+
- Remove unused /model-providers API ([#9554](https://github.com/mastra-ai/mastra/pull/9554))
|
|
309
263
|
|
|
310
|
-
|
|
311
|
-
await memory.listThreadsByResourceId({
|
|
312
|
-
resourceId: 'user-123',
|
|
313
|
-
page: 2, // page = Math.floor(offset / limit)
|
|
314
|
-
perPage: 10,
|
|
315
|
-
});
|
|
264
|
+
- Fix undefined runtimeContext using memory from playground ([#9548](https://github.com/mastra-ai/mastra/pull/9548))
|
|
316
265
|
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
limit: 10,
|
|
322
|
-
});
|
|
266
|
+
- Updated dependencies [[`5ca1cca`](https://github.com/mastra-ai/mastra/commit/5ca1ccac61ffa7141e6d9fa8f22d3ad4d03bf5dc), [`6d7e90d`](https://github.com/mastra-ai/mastra/commit/6d7e90db09713e6250f4d6c3d3cff1b4740e50f9), [`f78b908`](https://github.com/mastra-ai/mastra/commit/f78b9080e11af765969b36b4a619761056030840), [`23c2614`](https://github.com/mastra-ai/mastra/commit/23c26140fdbf04b8c59e8d7d52106d67dad962ec), [`139588d`](https://github.com/mastra-ai/mastra/commit/139588df7755c9111a3060f72a789c1a8c95e091), [`186b29b`](https://github.com/mastra-ai/mastra/commit/186b29bd51ac1dcc24ad3825fdb7207a6d6391a6), [`e365eda`](https://github.com/mastra-ai/mastra/commit/e365eda45795b43707310531cac1e2ce4e5a0712)]:
|
|
267
|
+
- @mastra/client-js@0.16.9-alpha.0
|
|
268
|
+
- @mastra/react@0.0.15-alpha.0
|
|
269
|
+
- @mastra/core@0.24.0-alpha.0
|
|
323
270
|
|
|
324
|
-
|
|
325
|
-
await memory.listMessages({
|
|
326
|
-
threadId: 'thread-456',
|
|
327
|
-
page: 2,
|
|
328
|
-
perPage: 10,
|
|
329
|
-
});
|
|
271
|
+
## 6.8.0
|
|
330
272
|
|
|
331
|
-
|
|
332
|
-
await storage.listWorkflowRuns({
|
|
333
|
-
workflowName: 'my-workflow',
|
|
334
|
-
offset: 20,
|
|
335
|
-
limit: 10,
|
|
336
|
-
});
|
|
273
|
+
### Minor Changes
|
|
337
274
|
|
|
338
|
-
|
|
339
|
-
await storage.listWorkflowRuns({
|
|
340
|
-
workflowName: 'my-workflow',
|
|
341
|
-
page: 2,
|
|
342
|
-
perPage: 10,
|
|
343
|
-
});
|
|
344
|
-
```
|
|
275
|
+
- Toast error from workflow stream and resume stream ([#9460](https://github.com/mastra-ai/mastra/pull/9460))
|
|
345
276
|
|
|
346
|
-
|
|
347
|
-
- Added validation for negative `page` values in all storage implementations
|
|
348
|
-
- Improved `perPage` validation to handle edge cases (negative values, `0`, `false`)
|
|
349
|
-
- Added reusable query parser utilities for consistent validation in handlers
|
|
277
|
+
### Patch Changes
|
|
350
278
|
|
|
351
|
-
-
|
|
352
|
-
|
|
353
|
-
|
|
279
|
+
- Updated dependencies [[`b55bbce`](https://github.com/mastra-ai/mastra/commit/b55bbce89404d35fdd967012dd503fae343d4c2d), [`d6cb18e`](https://github.com/mastra-ai/mastra/commit/d6cb18e189fd0ac95d4934cf0d6f2866876d1a2e), [`d0ecff7`](https://github.com/mastra-ai/mastra/commit/d0ecff793d5cd50408cd8d1d113f02e28d897a3d), [`e84a959`](https://github.com/mastra-ai/mastra/commit/e84a9592bfdec4f1c9fdf108c9d4ea4e2ee8f7e3), [`e742d37`](https://github.com/mastra-ai/mastra/commit/e742d371f24ef8059670cc05e9aee308eac068b9)]:
|
|
280
|
+
- @mastra/client-js@0.16.8
|
|
281
|
+
- @mastra/core@0.23.3
|
|
282
|
+
- @mastra/react@0.0.14
|
|
354
283
|
|
|
355
|
-
|
|
356
|
-
...other_config,
|
|
357
|
-
observability: new Observability({
|
|
358
|
-
default: { enabled: true }
|
|
359
|
-
}) // Instance
|
|
360
|
-
});
|
|
361
|
-
```
|
|
362
|
-
|
|
363
|
-
Instead of:
|
|
364
|
-
|
|
365
|
-
```
|
|
366
|
-
import { Mastra } from '@mastra/core';
|
|
367
|
-
import '@mastra/observability/init'; // Explicit import
|
|
368
|
-
|
|
369
|
-
const mastra = new Mastra({
|
|
370
|
-
...other_config,
|
|
371
|
-
observability: {
|
|
372
|
-
default: { enabled: true }
|
|
373
|
-
}
|
|
374
|
-
});
|
|
375
|
-
```
|
|
376
|
-
|
|
377
|
-
Also renamed a bunch of:
|
|
378
|
-
- `Tracing` things to `Observability` things.
|
|
379
|
-
- `AI-` things to just things.
|
|
380
|
-
|
|
381
|
-
- Changing getAgents -> listAgents, getTools -> listTools, getWorkflows -> listWorkflows ([#9495](https://github.com/mastra-ai/mastra/pull/9495))
|
|
382
|
-
|
|
383
|
-
- Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
|
|
384
|
-
|
|
385
|
-
- Renamed `MastraMessageV2` to `MastraDBMessage` ([#9255](https://github.com/mastra-ai/mastra/pull/9255))
|
|
386
|
-
Made the return format of all methods that return db messages consistent. It's always `{ messages: MastraDBMessage[] }` now, and messages can be converted after that using `@mastra/ai-sdk/ui`'s `toAISdkV4/5Messages()` function
|
|
387
|
-
|
|
388
|
-
- Remove legacy evals from Mastra ([#9491](https://github.com/mastra-ai/mastra/pull/9491))
|
|
284
|
+
## 6.8.0-alpha.0
|
|
389
285
|
|
|
390
286
|
### Minor Changes
|
|
391
287
|
|
|
392
|
-
-
|
|
393
|
-
|
|
394
|
-
- Update peer dependencies to match core package version bump (0.22.1) ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
|
|
395
|
-
|
|
396
|
-
- Toast error from workflow stream and resume stream ([#9431](https://github.com/mastra-ai/mastra/pull/9431))
|
|
397
|
-
Update peer dependencies to match core package version bump (0.22.3)
|
|
398
|
-
|
|
399
|
-
- Update peer dependencies to match core package version bump (0.22.0) ([#9045](https://github.com/mastra-ai/mastra/pull/9045))
|
|
288
|
+
- Toast error from workflow stream and resume stream ([#9460](https://github.com/mastra-ai/mastra/pull/9460))
|
|
400
289
|
|
|
401
290
|
### Patch Changes
|
|
402
291
|
|
|
403
|
-
- dependencies
|
|
404
|
-
-
|
|
405
|
-
|
|
406
|
-
-
|
|
407
|
-
|
|
408
|
-
- Update MainSidebar component to fit required changes in Cloud CTA link ([#9318](https://github.com/mastra-ai/mastra/pull/9318))
|
|
292
|
+
- Updated dependencies [[`b55bbce`](https://github.com/mastra-ai/mastra/commit/b55bbce89404d35fdd967012dd503fae343d4c2d), [`d6cb18e`](https://github.com/mastra-ai/mastra/commit/d6cb18e189fd0ac95d4934cf0d6f2866876d1a2e), [`d0ecff7`](https://github.com/mastra-ai/mastra/commit/d0ecff793d5cd50408cd8d1d113f02e28d897a3d), [`e84a959`](https://github.com/mastra-ai/mastra/commit/e84a9592bfdec4f1c9fdf108c9d4ea4e2ee8f7e3), [`e742d37`](https://github.com/mastra-ai/mastra/commit/e742d371f24ef8059670cc05e9aee308eac068b9)]:
|
|
293
|
+
- @mastra/client-js@0.16.8-alpha.0
|
|
294
|
+
- @mastra/core@0.23.3-alpha.0
|
|
295
|
+
- @mastra/react@0.0.14-alpha.0
|
|
409
296
|
|
|
410
|
-
|
|
297
|
+
## 6.7.2
|
|
411
298
|
|
|
412
|
-
|
|
299
|
+
### Patch Changes
|
|
413
300
|
|
|
414
|
-
-
|
|
301
|
+
- Update MainSidebar component to fit required changes in Cloud CTA link ([#9364](https://github.com/mastra-ai/mastra/pull/9364))
|
|
415
302
|
|
|
416
|
-
- Render zod unions and discriminated unions correctly in dynamic form. ([#
|
|
303
|
+
- Render zod unions and discriminated unions correctly in dynamic form. ([#9365](https://github.com/mastra-ai/mastra/pull/9365))
|
|
417
304
|
|
|
418
|
-
-
|
|
305
|
+
- Extract more components to playground-ui for sharing with cloud ([#9416](https://github.com/mastra-ai/mastra/pull/9416))
|
|
419
306
|
|
|
420
|
-
-
|
|
307
|
+
- Move some components to playground-ui for usage in cloud ([#9358](https://github.com/mastra-ai/mastra/pull/9358))
|
|
421
308
|
|
|
422
|
-
|
|
309
|
+
- Updated dependencies [[`f57a81e`](https://github.com/mastra-ai/mastra/commit/f57a81e6ce644e45bf1c9618778cc54c50a84ad4), [`2afd345`](https://github.com/mastra-ai/mastra/commit/2afd3450825b76e41f7973baddf13867ea042e40), [`fc79af3`](https://github.com/mastra-ai/mastra/commit/fc79af3915d1c456729cbd753673b0c0564340d8), [`eefc89e`](https://github.com/mastra-ai/mastra/commit/eefc89ee69f05bb71661473a807fc7dc03d56f17), [`60bd45d`](https://github.com/mastra-ai/mastra/commit/60bd45de021f0dfbe6583928f6da5169cb5585ba), [`a30093d`](https://github.com/mastra-ai/mastra/commit/a30093de98c1836dcd5dfddf09649010712b8c95), [`0fe7adb`](https://github.com/mastra-ai/mastra/commit/0fe7adb0f20f59a6bb41f235d01f8b7a880ea6e7), [`a42e496`](https://github.com/mastra-ai/mastra/commit/a42e49686a7486e2e9e9397fa98e5ff7a71dc1b0), [`3670db7`](https://github.com/mastra-ai/mastra/commit/3670db7e8e798f9d65fac5bfb732134a1f26ba7b), [`e40d4d0`](https://github.com/mastra-ai/mastra/commit/e40d4d0a0971b4505e7c9de73c656066c7565653), [`fc843ff`](https://github.com/mastra-ai/mastra/commit/fc843ff4d1d149317b6324553ce5ad7972062a78), [`ff16f9b`](https://github.com/mastra-ai/mastra/commit/ff16f9b9dbc701b26b6c4e9872f759f3880f9327), [`35e6cf7`](https://github.com/mastra-ai/mastra/commit/35e6cf722fef16ea0301eb9cf5a32fe9ccb12d22), [`30a2e36`](https://github.com/mastra-ai/mastra/commit/30a2e369485e0e59c4faa1d83c5635c2260b304c)]:
|
|
310
|
+
- @mastra/core@0.23.2
|
|
311
|
+
- @mastra/client-js@0.16.7
|
|
312
|
+
- @mastra/react@0.0.13
|
|
423
313
|
|
|
424
|
-
|
|
425
|
-
export const chefModelV2Agent = new Agent({
|
|
426
|
-
name: 'Chef Agent V2 Model',
|
|
427
|
-
description: 'A chef agent that can help you cook great meals with whatever ingredients you have available.',
|
|
428
|
-
instructions: {
|
|
429
|
-
content: `
|
|
430
|
-
You are Michel, a practical and experienced home chef who helps people cook great meals with whatever
|
|
431
|
-
ingredients they have available. Your first priority is understanding what ingredients and equipment the user has access to, then suggesting achievable recipes.
|
|
432
|
-
You explain cooking steps clearly and offer substitutions when needed, maintaining a friendly and encouraging tone throughout.
|
|
433
|
-
`,
|
|
434
|
-
role: 'system',
|
|
435
|
-
providerOptions: {
|
|
436
|
-
openai: {
|
|
437
|
-
reasoning_effort: 'high',
|
|
438
|
-
},
|
|
439
|
-
},
|
|
440
|
-
},
|
|
441
|
-
model: openai('gpt-4o-mini'),
|
|
442
|
-
tools: {
|
|
443
|
-
cookingTool,
|
|
444
|
-
},
|
|
445
|
-
memory
|
|
446
|
-
});
|
|
447
|
-
```
|
|
314
|
+
## 6.7.2-alpha.1
|
|
448
315
|
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
- Fixes issue where clicking the reset button in the model picker would fail to restore the original LanguageModelV2 (or any other types) object that was passed during agent construction. ([#9481](https://github.com/mastra-ai/mastra/pull/9481))
|
|
316
|
+
### Patch Changes
|
|
452
317
|
|
|
453
|
-
-
|
|
318
|
+
- Extract more components to playground-ui for sharing with cloud ([#9416](https://github.com/mastra-ai/mastra/pull/9416))
|
|
454
319
|
|
|
455
|
-
-
|
|
320
|
+
- Updated dependencies [[`f57a81e`](https://github.com/mastra-ai/mastra/commit/f57a81e6ce644e45bf1c9618778cc54c50a84ad4), [`fc79af3`](https://github.com/mastra-ai/mastra/commit/fc79af3915d1c456729cbd753673b0c0564340d8), [`60bd45d`](https://github.com/mastra-ai/mastra/commit/60bd45de021f0dfbe6583928f6da5169cb5585ba), [`a30093d`](https://github.com/mastra-ai/mastra/commit/a30093de98c1836dcd5dfddf09649010712b8c95), [`e40d4d0`](https://github.com/mastra-ai/mastra/commit/e40d4d0a0971b4505e7c9de73c656066c7565653), [`ff16f9b`](https://github.com/mastra-ai/mastra/commit/ff16f9b9dbc701b26b6c4e9872f759f3880f9327), [`35e6cf7`](https://github.com/mastra-ai/mastra/commit/35e6cf722fef16ea0301eb9cf5a32fe9ccb12d22), [`30a2e36`](https://github.com/mastra-ai/mastra/commit/30a2e369485e0e59c4faa1d83c5635c2260b304c)]:
|
|
321
|
+
- @mastra/core@0.23.2-alpha.1
|
|
322
|
+
- @mastra/client-js@0.16.7-alpha.1
|
|
323
|
+
- @mastra/react@0.0.13-alpha.1
|
|
456
324
|
|
|
457
|
-
|
|
325
|
+
## 6.7.2-alpha.0
|
|
458
326
|
|
|
459
|
-
|
|
327
|
+
### Patch Changes
|
|
460
328
|
|
|
461
|
-
-
|
|
329
|
+
- Update MainSidebar component to fit required changes in Cloud CTA link ([#9364](https://github.com/mastra-ai/mastra/pull/9364))
|
|
462
330
|
|
|
463
|
-
-
|
|
331
|
+
- Render zod unions and discriminated unions correctly in dynamic form. ([#9365](https://github.com/mastra-ai/mastra/pull/9365))
|
|
464
332
|
|
|
465
|
-
-
|
|
466
|
-
This now works, but zod validation will fail, please use `extend` instead
|
|
333
|
+
- Move some components to playground-ui for usage in cloud ([#9358](https://github.com/mastra-ai/mastra/pull/9358))
|
|
467
334
|
|
|
468
|
-
|
|
335
|
+
- Updated dependencies [[`2afd345`](https://github.com/mastra-ai/mastra/commit/2afd3450825b76e41f7973baddf13867ea042e40), [`eefc89e`](https://github.com/mastra-ai/mastra/commit/eefc89ee69f05bb71661473a807fc7dc03d56f17), [`0fe7adb`](https://github.com/mastra-ai/mastra/commit/0fe7adb0f20f59a6bb41f235d01f8b7a880ea6e7), [`a42e496`](https://github.com/mastra-ai/mastra/commit/a42e49686a7486e2e9e9397fa98e5ff7a71dc1b0), [`3670db7`](https://github.com/mastra-ai/mastra/commit/3670db7e8e798f9d65fac5bfb732134a1f26ba7b), [`fc843ff`](https://github.com/mastra-ai/mastra/commit/fc843ff4d1d149317b6324553ce5ad7972062a78)]:
|
|
336
|
+
- @mastra/core@0.23.2-alpha.0
|
|
337
|
+
- @mastra/client-js@0.16.7-alpha.0
|
|
338
|
+
- @mastra/react@0.0.13-alpha.0
|
|
469
339
|
|
|
470
|
-
|
|
471
|
-
z.discriminatedUnion('type', [
|
|
472
|
-
z.object({ type: z.literal('byCity'), city: z.string() }),
|
|
473
|
-
z.object({ type: z.literal('byCoords'), lat: z.number(), lon: z.number() }),
|
|
474
|
-
]).and(
|
|
475
|
-
z.object({ order: z.number() })
|
|
476
|
-
)
|
|
477
|
-
```
|
|
340
|
+
## 6.7.1
|
|
478
341
|
|
|
479
|
-
|
|
342
|
+
### Patch Changes
|
|
480
343
|
|
|
481
|
-
|
|
482
|
-
z.discriminatedUnion('type', [
|
|
483
|
-
z.object({ type: z.literal('byCity'), city: z.string() }).extend({ order: z.number() }),
|
|
484
|
-
z.object({ type: z.literal('byCoords'), lat: z.number(), lon: z.number() }).extend({ order: z.number() }),
|
|
485
|
-
]);
|
|
486
|
-
```
|
|
344
|
+
- Fix peerdependencies ([`eb7c1c8`](https://github.com/mastra-ai/mastra/commit/eb7c1c8c592d8fb16dfd250e337d9cdc73c8d5de))
|
|
487
345
|
|
|
488
|
-
-
|
|
346
|
+
- Updated dependencies [[`eb7c1c8`](https://github.com/mastra-ai/mastra/commit/eb7c1c8c592d8fb16dfd250e337d9cdc73c8d5de)]:
|
|
347
|
+
- @mastra/client-js@0.16.6
|
|
348
|
+
- @mastra/react@0.0.12
|
|
349
|
+
- @mastra/core@0.23.1
|
|
489
350
|
|
|
490
|
-
|
|
351
|
+
## 6.7.0
|
|
491
352
|
|
|
492
|
-
|
|
353
|
+
### Minor Changes
|
|
493
354
|
|
|
494
|
-
-
|
|
355
|
+
- Update peer dependencies to match core package version bump (0.22.1) ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
|
|
495
356
|
|
|
496
|
-
|
|
357
|
+
### Patch Changes
|
|
497
358
|
|
|
498
|
-
-
|
|
499
|
-
- Moved `generateTitle` from `threads.generateTitle` to top-level memory option
|
|
500
|
-
- Changed default value from `true` to `false`
|
|
501
|
-
- Using `threads.generateTitle` now throws an error
|
|
359
|
+
- Add tool call approval ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
|
|
502
360
|
|
|
503
|
-
|
|
504
|
-
|
|
361
|
+
- Updated dependencies [[`f743dbb`](https://github.com/mastra-ai/mastra/commit/f743dbb8b40d1627b5c10c0e6fc154f4ebb6e394), [`5df9cce`](https://github.com/mastra-ai/mastra/commit/5df9cce1a753438413f64c11eeef8f845745c2a8), [`2060766`](https://github.com/mastra-ai/mastra/commit/20607667bf78ea104cca3e15dfb93ae0b62c9d18), [`2c4438b`](https://github.com/mastra-ai/mastra/commit/2c4438b87817ab7eed818c7990fef010475af1a3)]:
|
|
362
|
+
- @mastra/core@0.23.0
|
|
363
|
+
- @mastra/client-js@0.16.5
|
|
364
|
+
- @mastra/react@0.0.11
|
|
505
365
|
|
|
506
|
-
|
|
507
|
-
The playground UI now displays thread IDs instead of "Chat from" when titles aren't generated.
|
|
366
|
+
## 6.7.0-alpha.0
|
|
508
367
|
|
|
509
|
-
|
|
368
|
+
### Minor Changes
|
|
510
369
|
|
|
511
|
-
-
|
|
370
|
+
- Update peer dependencies to match core package version bump (0.22.1) ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
|
|
512
371
|
|
|
513
|
-
|
|
372
|
+
### Patch Changes
|
|
514
373
|
|
|
515
|
-
-
|
|
374
|
+
- Add tool call approval ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
|
|
516
375
|
|
|
517
|
-
- Updated dependencies [[`
|
|
518
|
-
- @mastra/core@
|
|
519
|
-
- @mastra/client-js@
|
|
520
|
-
- @mastra/
|
|
521
|
-
- @mastra/react@0.1.0-beta.0
|
|
376
|
+
- Updated dependencies [[`f743dbb`](https://github.com/mastra-ai/mastra/commit/f743dbb8b40d1627b5c10c0e6fc154f4ebb6e394), [`5df9cce`](https://github.com/mastra-ai/mastra/commit/5df9cce1a753438413f64c11eeef8f845745c2a8), [`2060766`](https://github.com/mastra-ai/mastra/commit/20607667bf78ea104cca3e15dfb93ae0b62c9d18), [`2c4438b`](https://github.com/mastra-ai/mastra/commit/2c4438b87817ab7eed818c7990fef010475af1a3)]:
|
|
377
|
+
- @mastra/core@0.23.0-alpha.0
|
|
378
|
+
- @mastra/client-js@0.16.5-alpha.0
|
|
379
|
+
- @mastra/react@0.0.11-alpha.0
|
|
522
380
|
|
|
523
381
|
## 6.6.2
|
|
524
382
|
|