create-mastra 1.0.0-beta.0 → 1.0.0-beta.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,103 @@
1
1
  # create-mastra
2
2
 
3
+ ## 1.0.0-beta.10
4
+
5
+ ### Patch Changes
6
+
7
+ - Auto resume suspended tools if `autoResumeSuspendedTools: true` ([#11157](https://github.com/mastra-ai/mastra/pull/11157))
8
+
9
+ The flag can be added to `defaultAgentOptions` when creating the agent or to options in `agent.stream` or `agent.generate`
10
+
11
+ ```typescript
12
+ const agent = new Agent({
13
+ //...agent information,
14
+ defaultAgentOptions: {
15
+ autoResumeSuspendedTools: true,
16
+ },
17
+ });
18
+ ```
19
+
20
+ - Add `Run` instance to client-js. `workflow.createRun` returns the `Run` instance which can be used for the different run methods. ([#11207](https://github.com/mastra-ai/mastra/pull/11207))
21
+ With this change, run methods cannot be called directly on workflow instance anymore
22
+
23
+ ```diff
24
+ - const result = await workflow.stream({ runId: '123', inputData: { ... } });
25
+ + const run = await workflow.createRun({ runId: '123' });
26
+ + const stream = await run.stream({ inputData: { ... } });
27
+ ```
28
+
29
+ - fix isTopLevelSpan value definition on SpanScoring to properly recognize lack of span?.parentSpanId value (null or empty string) ([#11083](https://github.com/mastra-ai/mastra/pull/11083))
30
+
31
+ ## 1.0.0-beta.9
32
+
33
+ ## 1.0.0-beta.8
34
+
35
+ ### Patch Changes
36
+
37
+ - Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
38
+
39
+ ```typescript
40
+ await workflow.deleteWorkflowRunById(runId);
41
+ ```
42
+
43
+ ## 1.0.0-beta.7
44
+
45
+ ### Patch Changes
46
+
47
+ - Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
48
+
49
+ - Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
50
+
51
+ - Update Observability Trace Spans list UI, so a user can expand/collapse span children/descendants and can filter the list by span type or name ([#10378](https://github.com/mastra-ai/mastra/pull/10378))
52
+
53
+ - Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
54
+
55
+ ## 1.0.0-beta.6
56
+
57
+ ### Patch Changes
58
+
59
+ - Fix select options overflow when list is long by adding maximum height ([#10813](https://github.com/mastra-ai/mastra/pull/10813))
60
+
61
+ ## 1.0.0-beta.5
62
+
63
+ ### Patch Changes
64
+
65
+ - Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
66
+
67
+ - Hide time travel on map steps in Studio ([#10631](https://github.com/mastra-ai/mastra/pull/10631))
68
+
69
+ ## 1.0.0-beta.4
70
+
71
+ ### Patch Changes
72
+
73
+ - Add timeTravel APIs and add timeTravel feature to studio ([#10361](https://github.com/mastra-ai/mastra/pull/10361))
74
+
75
+ ## 1.0.0-beta.3
76
+
77
+ ### Patch Changes
78
+
79
+ - fix: detect bun runtime and cleanup on failure ([#10242](https://github.com/mastra-ai/mastra/pull/10242))
80
+
81
+ ## 1.0.0-beta.2
82
+
83
+ ### Patch Changes
84
+
85
+ - dependencies updates: ([#10111](https://github.com/mastra-ai/mastra/pull/10111))
86
+ - Updated dependency [`pino@^10.1.0` ↗︎](https://www.npmjs.com/package/pino/v/10.1.0) (from `^9.7.0`, in `dependencies`)
87
+
88
+ - dependencies updates: ([#9781](https://github.com/mastra-ai/mastra/pull/9781))
89
+ - Updated dependency [`posthog-node@^5.11.2` ↗︎](https://www.npmjs.com/package/posthog-node/v/5.11.2) (from `^4.18.0`, in `dependencies`)
90
+
91
+ - Fix scorer filtering for SpanScoring, add error and info message for user ([#10160](https://github.com/mastra-ai/mastra/pull/10160))
92
+
93
+ - Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
94
+
95
+ ## 1.0.0-beta.1
96
+
97
+ ### Patch Changes
98
+
99
+ - Make MainSidebar toggle button sticky to bottom, always visible ([#9682](https://github.com/mastra-ai/mastra/pull/9682))
100
+
3
101
  ## 1.0.0-beta.0
4
102
 
5
103
  ### Major Changes