@mastra/playground-ui 7.0.0-beta.9 → 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 +216 -378
- package/dist/index.cjs.js +4412 -3510
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +4390 -3491
- 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/buttons/button.d.ts +0 -1
- package/dist/src/components/ui/elements/buttons/index.d.ts +0 -1
- 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/search-field.d.ts +1 -4
- 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/elements/side-dialog/side-dialog-top.d.ts +2 -1
- 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 +6 -4
- package/dist/src/domains/observability/components/index.d.ts +1 -1
- package/dist/src/domains/observability/components/shared.d.ts +5 -2
- package/dist/src/domains/observability/components/span-details.d.ts +2 -2
- package/dist/src/domains/observability/components/span-dialog.d.ts +6 -8
- package/dist/src/domains/observability/components/span-score-list.d.ts +2 -2
- package/dist/src/domains/observability/components/span-scoring.d.ts +1 -4
- package/dist/src/domains/observability/components/span-tabs.d.ts +6 -8
- package/dist/src/domains/observability/components/trace-dialog.d.ts +4 -7
- package/dist/src/domains/observability/components/trace-span-usage.d.ts +2 -2
- package/dist/src/domains/observability/components/trace-timeline-legend.d.ts +6 -0
- package/dist/src/domains/observability/components/trace-timeline-span.d.ts +1 -6
- package/dist/src/domains/observability/components/trace-timeline.d.ts +1 -5
- 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/types.d.ts +0 -13
- 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/components/ui/elements/buttons/combined-buttons.d.ts +0 -6
- 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/playground-config-guard.d.ts +0 -1
- 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 -12
- package/dist/src/domains/configuration/hooks/use-mastra-instance-status.d.ts +0 -4
- package/dist/src/domains/configuration/index.d.ts +0 -4
- 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/span-type-icon.d.ts +0 -6
- package/dist/src/domains/observability/components/timeline-expand-col.d.ts +0 -13
- package/dist/src/domains/observability/components/timeline-name-col.d.ts +0 -16
- package/dist/src/domains/observability/components/timeline-structure-sign.d.ts +0 -7
- package/dist/src/domains/observability/components/timeline-timing-col.d.ts +0 -12
- package/dist/src/domains/observability/components/trace-timeline-tools.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/get-descendant-ids.d.ts +0 -2
- 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,118 +1,110 @@
|
|
|
1
1
|
# @mastra/playground-ui
|
|
2
2
|
|
|
3
|
-
## 7.0.0
|
|
3
|
+
## 7.0.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- Fix
|
|
7
|
+
- Fix select options overflow when list is long by adding maximum height ([#10833](https://github.com/mastra-ai/mastra/pull/10833))
|
|
8
8
|
|
|
9
|
-
-
|
|
9
|
+
- Add timeTravel APIs and add timeTravel feature to studio ([#10757](https://github.com/mastra-ai/mastra/pull/10757))
|
|
10
10
|
|
|
11
|
-
-
|
|
11
|
+
- Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10764](https://github.com/mastra-ai/mastra/pull/10764))
|
|
12
12
|
|
|
13
|
-
-
|
|
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
|
|
14
18
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
- 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)]:
|
|
18
|
-
- @mastra/core@1.0.0-beta.9
|
|
19
|
-
- @mastra/ai-sdk@1.0.0-beta.7
|
|
20
|
-
- @mastra/client-js@1.0.0-beta.9
|
|
21
|
-
- @mastra/react@0.1.0-beta.9
|
|
22
|
-
|
|
23
|
-
## 7.0.0-beta.8
|
|
19
|
+
## 7.0.0-alpha.4
|
|
24
20
|
|
|
25
21
|
### Patch Changes
|
|
26
22
|
|
|
27
|
-
- Updated dependencies [
|
|
28
|
-
- @mastra/core@
|
|
29
|
-
- @mastra/
|
|
30
|
-
- @mastra/
|
|
31
|
-
- @mastra/react@0.1.0-beta.8
|
|
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
|
|
32
27
|
|
|
33
|
-
## 7.0.0-
|
|
28
|
+
## 7.0.0-alpha.3
|
|
34
29
|
|
|
35
30
|
### Patch Changes
|
|
36
31
|
|
|
37
|
-
-
|
|
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
|
|
38
36
|
|
|
39
|
-
|
|
37
|
+
## 7.0.0-alpha.2
|
|
40
38
|
|
|
41
|
-
|
|
39
|
+
### Patch Changes
|
|
42
40
|
|
|
43
|
-
-
|
|
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
|
|
44
45
|
|
|
45
|
-
|
|
46
|
+
## 7.0.0-alpha.1
|
|
46
47
|
|
|
47
|
-
|
|
48
|
-
- Clear warning with alert icon
|
|
49
|
-
- Detailed token usage breakdown (input + output = total)
|
|
50
|
-
- Explanation that the response was truncated
|
|
48
|
+
### Patch Changes
|
|
51
49
|
|
|
52
|
-
|
|
50
|
+
- Fix select options overflow when list is long by adding maximum height ([#10833](https://github.com/mastra-ai/mastra/pull/10833))
|
|
53
51
|
|
|
54
|
-
|
|
52
|
+
- Add timeTravel APIs and add timeTravel feature to studio ([#10757](https://github.com/mastra-ai/mastra/pull/10757))
|
|
55
53
|
|
|
56
|
-
-
|
|
54
|
+
- Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10764](https://github.com/mastra-ai/mastra/pull/10764))
|
|
57
55
|
|
|
58
|
-
- Updated dependencies [[`
|
|
59
|
-
- @mastra/
|
|
60
|
-
- @mastra/
|
|
61
|
-
- @mastra/
|
|
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
|
|
62
61
|
|
|
63
|
-
##
|
|
62
|
+
## 6.9.7-alpha.0
|
|
64
63
|
|
|
65
64
|
### Patch Changes
|
|
66
65
|
|
|
67
|
-
-
|
|
68
|
-
|
|
69
|
-
-
|
|
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
|
|
70
70
|
|
|
71
|
-
|
|
71
|
+
## 6.9.6
|
|
72
72
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
**Usage:**
|
|
73
|
+
### Patch Changes
|
|
76
74
|
|
|
77
|
-
|
|
75
|
+
- fix(agent): persist messages before tool suspension ([#10542](https://github.com/mastra-ai/mastra/pull/10542))
|
|
78
76
|
|
|
79
|
-
|
|
80
|
-
import { TracingSettingsProvider, useWorkflowSettings } from '@mastra/playground-ui';
|
|
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.
|
|
81
78
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
79
|
+
**Backend changes (@mastra/core):**
|
|
80
|
+
- Add assistant messages to messageList immediately after LLM execution
|
|
81
|
+
- Flush messages synchronously before suspension to persist state
|
|
82
|
+
- Create thread if it doesn't exist before flushing
|
|
83
|
+
- Add metadata helpers to persist and remove tool approval state
|
|
84
|
+
- Pass saveQueueManager and memory context through workflow for immediate persistence
|
|
86
85
|
|
|
87
|
-
|
|
88
|
-
|
|
86
|
+
**Frontend changes (@mastra/react):**
|
|
87
|
+
- Extract runId from pending approvals to enable resumption after refresh
|
|
88
|
+
- Convert `pendingToolApprovals` (DB format) to `requireApprovalMetadata` (runtime format)
|
|
89
|
+
- Handle both `dynamic-tool` and `tool-{NAME}` part types for approval state
|
|
90
|
+
- Change runId from hardcoded `agentId` to unique `uuid()`
|
|
89
91
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
metadata: { userId: '123' },
|
|
94
|
-
requestContextKeys: ['user.email'],
|
|
95
|
-
traceId: 'abc123',
|
|
96
|
-
},
|
|
97
|
-
});
|
|
98
|
-
```
|
|
92
|
+
**UI changes (@mastra/playground-ui):**
|
|
93
|
+
- Handle tool calls awaiting approval in message initialization
|
|
94
|
+
- Convert approval metadata format when loading initial messages
|
|
99
95
|
|
|
100
|
-
|
|
96
|
+
Fixes #9745, #9906
|
|
101
97
|
|
|
102
|
-
- Updated dependencies [[`
|
|
103
|
-
- @mastra/core@
|
|
104
|
-
- @mastra/
|
|
105
|
-
- @mastra/
|
|
106
|
-
- @mastra/react@0.1.0-beta.6
|
|
107
|
-
- @mastra/schema-compat@1.0.0-beta.2
|
|
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
|
|
108
102
|
|
|
109
|
-
##
|
|
103
|
+
## 6.9.6-alpha.0
|
|
110
104
|
|
|
111
105
|
### Patch Changes
|
|
112
106
|
|
|
113
|
-
-
|
|
114
|
-
|
|
115
|
-
- fix(agent): persist messages before tool suspension ([#10369](https://github.com/mastra-ai/mastra/pull/10369))
|
|
107
|
+
- fix(agent): persist messages before tool suspension ([#10542](https://github.com/mastra-ai/mastra/pull/10542))
|
|
116
108
|
|
|
117
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.
|
|
118
110
|
|
|
@@ -135,410 +127,256 @@
|
|
|
135
127
|
|
|
136
128
|
Fixes #9745, #9906
|
|
137
129
|
|
|
138
|
-
-
|
|
139
|
-
|
|
140
|
-
-
|
|
141
|
-
- @mastra/
|
|
142
|
-
- @mastra/ai-sdk@1.0.0-beta.4
|
|
143
|
-
- @mastra/client-js@1.0.0-beta.5
|
|
144
|
-
- @mastra/react@0.1.0-beta.5
|
|
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
|
|
145
134
|
|
|
146
|
-
##
|
|
135
|
+
## 6.9.5
|
|
147
136
|
|
|
148
137
|
### Patch Changes
|
|
149
138
|
|
|
150
|
-
- Updated dependencies [[`
|
|
151
|
-
- @mastra/
|
|
152
|
-
- @mastra/client-js@
|
|
153
|
-
- @mastra/
|
|
154
|
-
- @mastra/react@0.1.0-beta.4
|
|
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
|
|
155
143
|
|
|
156
|
-
##
|
|
144
|
+
## 6.9.5-alpha.0
|
|
157
145
|
|
|
158
146
|
### Patch Changes
|
|
159
147
|
|
|
160
|
-
- dependencies
|
|
161
|
-
-
|
|
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
|
|
162
152
|
|
|
163
|
-
|
|
164
|
-
- Updated dependency [`@xyflow/react@^12.9.3` ↗︎](https://www.npmjs.com/package/@xyflow/react/v/12.9.3) (from `^12.8.6`, in `dependencies`)
|
|
165
|
-
|
|
166
|
-
- dependencies updates: ([#9850](https://github.com/mastra-ai/mastra/pull/9850))
|
|
167
|
-
- Updated dependency [`@dagrejs/dagre@^1.1.8` ↗︎](https://www.npmjs.com/package/@dagrejs/dagre/v/1.1.8) (from `^1.1.5`, in `dependencies`)
|
|
168
|
-
|
|
169
|
-
- Refactor agent information for easier cloud recomposable UIs ([#9995](https://github.com/mastra-ai/mastra/pull/9995))
|
|
170
|
-
|
|
171
|
-
- Add export for agent memory for use in cloud ([#10025](https://github.com/mastra-ai/mastra/pull/10025))
|
|
172
|
-
|
|
173
|
-
- Fix scorer filtering for SpanScoring, add error and info message for user ([#10160](https://github.com/mastra-ai/mastra/pull/10160))
|
|
174
|
-
|
|
175
|
-
- 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))
|
|
176
|
-
MCP docs server will install the beta version of the docs server if they create a project with the beta tag.
|
|
177
|
-
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.
|
|
178
|
-
Templates have been cleaned up
|
|
179
|
-
small docs updates based off of how the template migrations went
|
|
180
|
-
|
|
181
|
-
- Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
|
|
182
|
-
|
|
183
|
-
- 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)]:
|
|
184
|
-
- @mastra/core@1.0.0-beta.3
|
|
185
|
-
- @mastra/ai-sdk@1.0.0-beta.2
|
|
186
|
-
- @mastra/client-js@1.0.0-beta.3
|
|
187
|
-
- @mastra/react@0.1.0-beta.3
|
|
188
|
-
|
|
189
|
-
## 7.0.0-beta.2
|
|
153
|
+
## 6.9.4
|
|
190
154
|
|
|
191
155
|
### Patch Changes
|
|
192
156
|
|
|
193
|
-
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
- Updated dependencies [[`627067b`](https://github.com/mastra-ai/mastra/commit/627067b22eeb26601f65fee3646ba17fc0c91501), [`465ac05`](https://github.com/mastra-ai/mastra/commit/465ac0526a91d175542091c675181f1a96c98c46)]:
|
|
198
|
-
- @mastra/ai-sdk@1.0.0-beta.1
|
|
199
|
-
- @mastra/core@1.0.0-beta.2
|
|
200
|
-
- @mastra/client-js@1.0.0-beta.2
|
|
201
|
-
- @mastra/react@0.1.0-beta.2
|
|
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
|
|
202
161
|
|
|
203
|
-
##
|
|
162
|
+
## 6.9.4-alpha.0
|
|
204
163
|
|
|
205
164
|
### Patch Changes
|
|
206
165
|
|
|
207
|
-
-
|
|
208
|
-
|
|
209
|
-
-
|
|
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
|
|
210
170
|
|
|
211
|
-
|
|
171
|
+
## 6.9.3
|
|
212
172
|
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
- Updated dependencies [[`910db9e`](https://github.com/mastra-ai/mastra/commit/910db9e0312888495eb5617b567f247d03303814), [`dbd9db0`](https://github.com/mastra-ai/mastra/commit/dbd9db0d5c2797a210b9098e7e3e613718e5442f), [`e7266a2`](https://github.com/mastra-ai/mastra/commit/e7266a278db02035c97a5e9cd9d1669a6b7a535d)]:
|
|
216
|
-
- @mastra/core@1.0.0-beta.1
|
|
217
|
-
- @mastra/client-js@1.0.0-beta.1
|
|
218
|
-
- @mastra/react@0.1.0-beta.1
|
|
219
|
-
|
|
220
|
-
## 7.0.0-beta.0
|
|
221
|
-
|
|
222
|
-
### Major Changes
|
|
173
|
+
### Patch Changes
|
|
223
174
|
|
|
224
|
-
-
|
|
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
|
|
225
179
|
|
|
226
|
-
|
|
180
|
+
## 6.9.3-alpha.0
|
|
227
181
|
|
|
228
|
-
|
|
182
|
+
### Patch Changes
|
|
229
183
|
|
|
230
|
-
|
|
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
|
|
231
188
|
|
|
232
|
-
|
|
189
|
+
## 6.9.2
|
|
233
190
|
|
|
234
|
-
|
|
235
|
-
// Before
|
|
236
|
-
const messages = await storage.getMessages({ threadId: 'thread-1' });
|
|
191
|
+
### Patch Changes
|
|
237
192
|
|
|
238
|
-
|
|
239
|
-
const result = await storage.listMessages({
|
|
240
|
-
threadId: 'thread-1',
|
|
241
|
-
page: 0,
|
|
242
|
-
perPage: 50,
|
|
243
|
-
});
|
|
244
|
-
const messages = result.messages; // Access messages array
|
|
245
|
-
console.log(result.total); // Total count
|
|
246
|
-
console.log(result.hasMore); // Whether more pages exist
|
|
247
|
-
```
|
|
193
|
+
- Fix scorer filtering for SpanScoring, add error and info message for user ([#10164](https://github.com/mastra-ai/mastra/pull/10164))
|
|
248
194
|
|
|
249
|
-
|
|
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
|
|
250
199
|
|
|
251
|
-
|
|
200
|
+
## 6.9.2-alpha.0
|
|
252
201
|
|
|
253
|
-
|
|
202
|
+
### Patch Changes
|
|
254
203
|
|
|
255
|
-
|
|
256
|
-
const result = await storage.listMessages({
|
|
257
|
-
threadId: 'thread-1',
|
|
258
|
-
orderBy: { field: 'createdAt', direction: 'DESC' },
|
|
259
|
-
});
|
|
260
|
-
```
|
|
204
|
+
- Fix scorer filtering for SpanScoring, add error and info message for user ([#10164](https://github.com/mastra-ai/mastra/pull/10164))
|
|
261
205
|
|
|
262
|
-
|
|
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
|
|
263
210
|
|
|
264
|
-
|
|
211
|
+
## 6.9.1
|
|
265
212
|
|
|
266
|
-
|
|
213
|
+
### Patch Changes
|
|
267
214
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
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
|
|
271
219
|
|
|
272
|
-
|
|
273
|
-
const response = await client.listThreadMessages(threadId, { agentId });
|
|
274
|
-
```
|
|
220
|
+
## 6.9.1-alpha.0
|
|
275
221
|
|
|
276
|
-
|
|
222
|
+
### Patch Changes
|
|
277
223
|
|
|
278
|
-
|
|
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
|
|
279
228
|
|
|
280
|
-
|
|
229
|
+
## 6.9.0
|
|
281
230
|
|
|
282
|
-
|
|
231
|
+
### Minor Changes
|
|
283
232
|
|
|
284
|
-
|
|
285
|
-
// Before
|
|
286
|
-
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))
|
|
287
234
|
|
|
288
|
-
|
|
289
|
-
import type { StorageListMessagesInput } from '@mastra/core';
|
|
290
|
-
```
|
|
235
|
+
### Patch Changes
|
|
291
236
|
|
|
292
|
-
-
|
|
237
|
+
- update peerdeps ([`5ca1cca`](https://github.com/mastra-ai/mastra/commit/5ca1ccac61ffa7141e6d9fa8f22d3ad4d03bf5dc))
|
|
293
238
|
|
|
294
|
-
-
|
|
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))
|
|
295
240
|
|
|
296
|
-
-
|
|
241
|
+
- Remove unused /model-providers API ([#9554](https://github.com/mastra-ai/mastra/pull/9554))
|
|
297
242
|
|
|
298
|
-
-
|
|
243
|
+
- Fix undefined runtimeContext using memory from playground ([#9548](https://github.com/mastra-ai/mastra/pull/9548))
|
|
299
244
|
|
|
300
|
-
-
|
|
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
|
|
301
249
|
|
|
302
|
-
|
|
250
|
+
## 6.9.0-alpha.0
|
|
303
251
|
|
|
304
|
-
|
|
305
|
-
- Removed legacy v1 watch event handlers and types
|
|
306
|
-
- Renamed `watch-v2` to `watch` throughout the codebase
|
|
307
|
-
- Removed `.watch()` method from client-js SDK (`Workflow` and `AgentBuilder` classes)
|
|
308
|
-
- Removed `/watch` HTTP endpoints from server and deployer
|
|
309
|
-
- Removed `WorkflowWatchResult` and v1 `WatchEvent` types
|
|
252
|
+
### Minor Changes
|
|
310
253
|
|
|
311
|
-
-
|
|
254
|
+
- Update peer dependencies to match core package version bump (0.23.4) ([#9487](https://github.com/mastra-ai/mastra/pull/9487))
|
|
312
255
|
|
|
313
|
-
|
|
256
|
+
### Patch Changes
|
|
314
257
|
|
|
315
|
-
|
|
316
|
-
- `Memory.listThreadsByResourceId()`
|
|
317
|
-
- `Memory.listMessages()`
|
|
318
|
-
- `Storage.listWorkflowRuns()`
|
|
258
|
+
- update peerdeps ([`5ca1cca`](https://github.com/mastra-ai/mastra/commit/5ca1ccac61ffa7141e6d9fa8f22d3ad4d03bf5dc))
|
|
319
259
|
|
|
320
|
-
|
|
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))
|
|
321
261
|
|
|
322
|
-
|
|
323
|
-
// Before
|
|
324
|
-
await memory.listThreadsByResourceId({
|
|
325
|
-
resourceId: 'user-123',
|
|
326
|
-
offset: 20,
|
|
327
|
-
limit: 10,
|
|
328
|
-
});
|
|
262
|
+
- Remove unused /model-providers API ([#9554](https://github.com/mastra-ai/mastra/pull/9554))
|
|
329
263
|
|
|
330
|
-
|
|
331
|
-
await memory.listThreadsByResourceId({
|
|
332
|
-
resourceId: 'user-123',
|
|
333
|
-
page: 2, // page = Math.floor(offset / limit)
|
|
334
|
-
perPage: 10,
|
|
335
|
-
});
|
|
264
|
+
- Fix undefined runtimeContext using memory from playground ([#9548](https://github.com/mastra-ai/mastra/pull/9548))
|
|
336
265
|
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
limit: 10,
|
|
342
|
-
});
|
|
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
|
|
343
270
|
|
|
344
|
-
|
|
345
|
-
await memory.listMessages({
|
|
346
|
-
threadId: 'thread-456',
|
|
347
|
-
page: 2,
|
|
348
|
-
perPage: 10,
|
|
349
|
-
});
|
|
271
|
+
## 6.8.0
|
|
350
272
|
|
|
351
|
-
|
|
352
|
-
await storage.listWorkflowRuns({
|
|
353
|
-
workflowName: 'my-workflow',
|
|
354
|
-
offset: 20,
|
|
355
|
-
limit: 10,
|
|
356
|
-
});
|
|
273
|
+
### Minor Changes
|
|
357
274
|
|
|
358
|
-
|
|
359
|
-
await storage.listWorkflowRuns({
|
|
360
|
-
workflowName: 'my-workflow',
|
|
361
|
-
page: 2,
|
|
362
|
-
perPage: 10,
|
|
363
|
-
});
|
|
364
|
-
```
|
|
275
|
+
- Toast error from workflow stream and resume stream ([#9460](https://github.com/mastra-ai/mastra/pull/9460))
|
|
365
276
|
|
|
366
|
-
|
|
367
|
-
- Added validation for negative `page` values in all storage implementations
|
|
368
|
-
- Improved `perPage` validation to handle edge cases (negative values, `0`, `false`)
|
|
369
|
-
- Added reusable query parser utilities for consistent validation in handlers
|
|
277
|
+
### Patch Changes
|
|
370
278
|
|
|
371
|
-
-
|
|
372
|
-
|
|
373
|
-
|
|
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
|
|
374
283
|
|
|
375
|
-
|
|
376
|
-
...other_config,
|
|
377
|
-
observability: new Observability({
|
|
378
|
-
default: { enabled: true }
|
|
379
|
-
}) // Instance
|
|
380
|
-
});
|
|
381
|
-
```
|
|
382
|
-
|
|
383
|
-
Instead of:
|
|
384
|
-
|
|
385
|
-
```
|
|
386
|
-
import { Mastra } from '@mastra/core';
|
|
387
|
-
import '@mastra/observability/init'; // Explicit import
|
|
388
|
-
|
|
389
|
-
const mastra = new Mastra({
|
|
390
|
-
...other_config,
|
|
391
|
-
observability: {
|
|
392
|
-
default: { enabled: true }
|
|
393
|
-
}
|
|
394
|
-
});
|
|
395
|
-
```
|
|
396
|
-
|
|
397
|
-
Also renamed a bunch of:
|
|
398
|
-
- `Tracing` things to `Observability` things.
|
|
399
|
-
- `AI-` things to just things.
|
|
400
|
-
|
|
401
|
-
- Changing getAgents -> listAgents, getTools -> listTools, getWorkflows -> listWorkflows ([#9495](https://github.com/mastra-ai/mastra/pull/9495))
|
|
402
|
-
|
|
403
|
-
- Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
|
|
404
|
-
|
|
405
|
-
- Renamed `MastraMessageV2` to `MastraDBMessage` ([#9255](https://github.com/mastra-ai/mastra/pull/9255))
|
|
406
|
-
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
|
|
407
|
-
|
|
408
|
-
- Remove legacy evals from Mastra ([#9491](https://github.com/mastra-ai/mastra/pull/9491))
|
|
284
|
+
## 6.8.0-alpha.0
|
|
409
285
|
|
|
410
286
|
### Minor Changes
|
|
411
287
|
|
|
412
|
-
-
|
|
413
|
-
|
|
414
|
-
- Update peer dependencies to match core package version bump (0.22.1) ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
|
|
415
|
-
|
|
416
|
-
- Toast error from workflow stream and resume stream ([#9431](https://github.com/mastra-ai/mastra/pull/9431))
|
|
417
|
-
Update peer dependencies to match core package version bump (0.22.3)
|
|
418
|
-
|
|
419
|
-
- 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))
|
|
420
289
|
|
|
421
290
|
### Patch Changes
|
|
422
291
|
|
|
423
|
-
- dependencies
|
|
424
|
-
-
|
|
425
|
-
|
|
426
|
-
-
|
|
427
|
-
|
|
428
|
-
- Update MainSidebar component to fit required changes in Cloud CTA link ([#9318](https://github.com/mastra-ai/mastra/pull/9318))
|
|
429
|
-
|
|
430
|
-
- Add enhance instruction capability + instruction tweak for experiment purpose ([#9302](https://github.com/mastra-ai/mastra/pull/9302))
|
|
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
|
|
431
296
|
|
|
432
|
-
|
|
297
|
+
## 6.7.2
|
|
433
298
|
|
|
434
|
-
|
|
299
|
+
### Patch Changes
|
|
435
300
|
|
|
436
|
-
-
|
|
301
|
+
- Update MainSidebar component to fit required changes in Cloud CTA link ([#9364](https://github.com/mastra-ai/mastra/pull/9364))
|
|
437
302
|
|
|
438
|
-
-
|
|
303
|
+
- Render zod unions and discriminated unions correctly in dynamic form. ([#9365](https://github.com/mastra-ai/mastra/pull/9365))
|
|
439
304
|
|
|
440
|
-
-
|
|
305
|
+
- Extract more components to playground-ui for sharing with cloud ([#9416](https://github.com/mastra-ai/mastra/pull/9416))
|
|
441
306
|
|
|
442
|
-
|
|
307
|
+
- Move some components to playground-ui for usage in cloud ([#9358](https://github.com/mastra-ai/mastra/pull/9358))
|
|
443
308
|
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
instructions: {
|
|
449
|
-
content: `
|
|
450
|
-
You are Michel, a practical and experienced home chef who helps people cook great meals with whatever
|
|
451
|
-
ingredients they have available. Your first priority is understanding what ingredients and equipment the user has access to, then suggesting achievable recipes.
|
|
452
|
-
You explain cooking steps clearly and offer substitutions when needed, maintaining a friendly and encouraging tone throughout.
|
|
453
|
-
`,
|
|
454
|
-
role: 'system',
|
|
455
|
-
providerOptions: {
|
|
456
|
-
openai: {
|
|
457
|
-
reasoning_effort: 'high',
|
|
458
|
-
},
|
|
459
|
-
},
|
|
460
|
-
},
|
|
461
|
-
model: openai('gpt-4o-mini'),
|
|
462
|
-
tools: {
|
|
463
|
-
cookingTool,
|
|
464
|
-
},
|
|
465
|
-
memory
|
|
466
|
-
});
|
|
467
|
-
```
|
|
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
|
|
468
313
|
|
|
469
|
-
|
|
314
|
+
## 6.7.2-alpha.1
|
|
470
315
|
|
|
471
|
-
|
|
316
|
+
### Patch Changes
|
|
472
317
|
|
|
473
|
-
-
|
|
318
|
+
- Extract more components to playground-ui for sharing with cloud ([#9416](https://github.com/mastra-ai/mastra/pull/9416))
|
|
474
319
|
|
|
475
|
-
-
|
|
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
|
|
476
324
|
|
|
477
|
-
|
|
325
|
+
## 6.7.2-alpha.0
|
|
478
326
|
|
|
479
|
-
|
|
327
|
+
### Patch Changes
|
|
480
328
|
|
|
481
|
-
-
|
|
329
|
+
- Update MainSidebar component to fit required changes in Cloud CTA link ([#9364](https://github.com/mastra-ai/mastra/pull/9364))
|
|
482
330
|
|
|
483
|
-
-
|
|
331
|
+
- Render zod unions and discriminated unions correctly in dynamic form. ([#9365](https://github.com/mastra-ai/mastra/pull/9365))
|
|
484
332
|
|
|
485
|
-
-
|
|
486
|
-
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))
|
|
487
334
|
|
|
488
|
-
|
|
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
|
|
489
339
|
|
|
490
|
-
|
|
491
|
-
z.discriminatedUnion('type', [
|
|
492
|
-
z.object({ type: z.literal('byCity'), city: z.string() }),
|
|
493
|
-
z.object({ type: z.literal('byCoords'), lat: z.number(), lon: z.number() }),
|
|
494
|
-
]).and(
|
|
495
|
-
z.object({ order: z.number() })
|
|
496
|
-
)
|
|
497
|
-
```
|
|
340
|
+
## 6.7.1
|
|
498
341
|
|
|
499
|
-
|
|
342
|
+
### Patch Changes
|
|
500
343
|
|
|
501
|
-
|
|
502
|
-
z.discriminatedUnion('type', [
|
|
503
|
-
z.object({ type: z.literal('byCity'), city: z.string() }).extend({ order: z.number() }),
|
|
504
|
-
z.object({ type: z.literal('byCoords'), lat: z.number(), lon: z.number() }).extend({ order: z.number() }),
|
|
505
|
-
]);
|
|
506
|
-
```
|
|
344
|
+
- Fix peerdependencies ([`eb7c1c8`](https://github.com/mastra-ai/mastra/commit/eb7c1c8c592d8fb16dfd250e337d9cdc73c8d5de))
|
|
507
345
|
|
|
508
|
-
-
|
|
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
|
|
509
350
|
|
|
510
|
-
|
|
351
|
+
## 6.7.0
|
|
511
352
|
|
|
512
|
-
|
|
353
|
+
### Minor Changes
|
|
513
354
|
|
|
514
|
-
-
|
|
355
|
+
- Update peer dependencies to match core package version bump (0.22.1) ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
|
|
515
356
|
|
|
516
|
-
|
|
357
|
+
### Patch Changes
|
|
517
358
|
|
|
518
|
-
-
|
|
519
|
-
- Moved `generateTitle` from `threads.generateTitle` to top-level memory option
|
|
520
|
-
- Changed default value from `true` to `false`
|
|
521
|
-
- Using `threads.generateTitle` now throws an error
|
|
359
|
+
- Add tool call approval ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
|
|
522
360
|
|
|
523
|
-
|
|
524
|
-
|
|
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
|
|
525
365
|
|
|
526
|
-
|
|
527
|
-
The playground UI now displays thread IDs instead of "Chat from" when titles aren't generated.
|
|
366
|
+
## 6.7.0-alpha.0
|
|
528
367
|
|
|
529
|
-
|
|
368
|
+
### Minor Changes
|
|
530
369
|
|
|
531
|
-
-
|
|
370
|
+
- Update peer dependencies to match core package version bump (0.22.1) ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
|
|
532
371
|
|
|
533
|
-
|
|
372
|
+
### Patch Changes
|
|
534
373
|
|
|
535
|
-
-
|
|
374
|
+
- Add tool call approval ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
|
|
536
375
|
|
|
537
|
-
- Updated dependencies [[`
|
|
538
|
-
- @mastra/core@
|
|
539
|
-
- @mastra/client-js@
|
|
540
|
-
- @mastra/
|
|
541
|
-
- @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
|
|
542
380
|
|
|
543
381
|
## 6.6.2
|
|
544
382
|
|