create-mastra 0.0.0-remove-unused-model-providers-api-20251030210744 → 0.0.0-remove-ai-peer-dep-from-evals-20260105220639

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,11 +1,221 @@
1
1
  # create-mastra
2
2
 
3
- ## 0.0.0-remove-unused-model-providers-api-20251030210744
3
+ ## 0.0.0-remove-ai-peer-dep-from-evals-20260105220639
4
4
 
5
5
  ### Major Changes
6
6
 
7
+ - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
8
+
9
+ - Removed old tracing code based on OpenTelemetry ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
10
+
11
+ - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
12
+
13
+ ### Minor Changes
14
+
15
+ - Add Antigravity IDE support to create-mastra CLI. Users can now select Antigravity during project initialization and automatically configure the global Mastra MCP server for the IDE, reducing manual setup and enabling immediate use of Mastra agents. ([#11374](https://github.com/mastra-ai/mastra/pull/11374))
16
+
17
+ ### Patch Changes
18
+
19
+ - Remove `streamVNext`, `resumeStreamVNext`, and `observeStreamVNext` methods, call `stream`, `resumeStream` and `observeStream` directly ([#11499](https://github.com/mastra-ai/mastra/pull/11499))
20
+
21
+ ```diff
22
+ + const run = await workflow.createRun({ runId: '123' });
23
+ - const stream = await run.streamVNext({ inputData: { ... } });
24
+ + const stream = await run.stream({ inputData: { ... } });
25
+ ```
26
+
27
+ - Fix select options overflow when list is long by adding maximum height ([#10813](https://github.com/mastra-ai/mastra/pull/10813))
28
+
29
+ - dependencies updates: ([#10111](https://github.com/mastra-ai/mastra/pull/10111))
30
+ - Updated dependency [`pino@^10.1.0` ↗︎](https://www.npmjs.com/package/pino/v/10.1.0) (from `^9.7.0`, in `dependencies`)
31
+
32
+ - dependencies updates: ([#9781](https://github.com/mastra-ai/mastra/pull/9781))
33
+ - Updated dependency [`posthog-node@^5.11.2` ↗︎](https://www.npmjs.com/package/posthog-node/v/5.11.2) (from `^4.18.0`, in `dependencies`)
34
+
35
+ - Update MainSidebar component to fit required changes in Cloud CTA link ([#9318](https://github.com/mastra-ai/mastra/pull/9318))
36
+
37
+ - Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
38
+
39
+ - Auto resume suspended tools if `autoResumeSuspendedTools: true` ([#11157](https://github.com/mastra-ai/mastra/pull/11157))
40
+
41
+ The flag can be added to `defaultAgentOptions` when creating the agent or to options in `agent.stream` or `agent.generate`
42
+
43
+ ```typescript
44
+ const agent = new Agent({
45
+ //...agent information,
46
+ defaultAgentOptions: {
47
+ autoResumeSuspendedTools: true,
48
+ },
49
+ });
50
+ ```
51
+
52
+ - Make MainSidebar toggle button sticky to bottom, always visible ([#9682](https://github.com/mastra-ai/mastra/pull/9682))
53
+
54
+ - Fix peer dependency conflicts in browsing-agent template. Updated template dependencies to align with @browserbasehq/stagehand@2.5.6 requirements: ([#11346](https://github.com/mastra-ai/mastra/pull/11346))
55
+ - Updated `dotenv` from `^17.2.1` to `^16.4.5`
56
+ - Updated `zod` from `^3.25.76` to `^3.25.67`
57
+
58
+ This ensures `npx create-mastra@latest --template browsing-agent` can be installed and run without peer dependency errors.
59
+
60
+ - Detect bun runtime and cleanup on failure ([#10242](https://github.com/mastra-ai/mastra/pull/10242))
61
+
62
+ - 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))
63
+ With this change, run methods cannot be called directly on workflow instance anymore
64
+
65
+ ```diff
66
+ - const result = await workflow.stream({ runId: '123', inputData: { ... } });
67
+ + const run = await workflow.createRun({ runId: '123' });
68
+ + const stream = await run.stream({ inputData: { ... } });
69
+ ```
70
+
71
+ - Add timeTravel APIs and add timeTravel feature to studio ([#10361](https://github.com/mastra-ai/mastra/pull/10361))
72
+
73
+ - Add debugger-like click-through UI to workflow graph ([#11350](https://github.com/mastra-ai/mastra/pull/11350))
74
+
75
+ - Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
76
+
77
+ ```typescript
78
+ await workflow.deleteWorkflowRunById(runId);
79
+ ```
80
+
81
+ - Add initial state input to workflow form in studio ([#11560](https://github.com/mastra-ai/mastra/pull/11560))
82
+
83
+ - Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
84
+
85
+ - Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
86
+
87
+ - 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))
88
+
89
+ - Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
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
+ - Hide time travel on map steps in Studio ([#10631](https://github.com/mastra-ai/mastra/pull/10631))
94
+
95
+ - Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
96
+
97
+ - 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))
98
+
99
+ ## 1.0.0-beta.12
100
+
101
+ ### Minor Changes
102
+
103
+ - Add Antigravity IDE support to create-mastra CLI. Users can now select Antigravity during project initialization and automatically configure the global Mastra MCP server for the IDE, reducing manual setup and enabling immediate use of Mastra agents. ([#11374](https://github.com/mastra-ai/mastra/pull/11374))
104
+
105
+ ### Patch Changes
106
+
107
+ - Add debugger-like click-through UI to workflow graph ([#11350](https://github.com/mastra-ai/mastra/pull/11350))
108
+
109
+ ## 1.0.0-beta.11
110
+
111
+ ## 1.0.0-beta.10
112
+
113
+ ### Patch Changes
114
+
115
+ - Auto resume suspended tools if `autoResumeSuspendedTools: true` ([#11157](https://github.com/mastra-ai/mastra/pull/11157))
116
+
117
+ The flag can be added to `defaultAgentOptions` when creating the agent or to options in `agent.stream` or `agent.generate`
118
+
119
+ ```typescript
120
+ const agent = new Agent({
121
+ //...agent information,
122
+ defaultAgentOptions: {
123
+ autoResumeSuspendedTools: true,
124
+ },
125
+ });
126
+ ```
127
+
128
+ - 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))
129
+ With this change, run methods cannot be called directly on workflow instance anymore
130
+
131
+ ```diff
132
+ - const result = await workflow.stream({ runId: '123', inputData: { ... } });
133
+ + const run = await workflow.createRun({ runId: '123' });
134
+ + const stream = await run.stream({ inputData: { ... } });
135
+ ```
136
+
137
+ - 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))
138
+
139
+ ## 1.0.0-beta.9
140
+
141
+ ## 1.0.0-beta.8
142
+
143
+ ### Patch Changes
144
+
145
+ - Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
146
+
147
+ ```typescript
148
+ await workflow.deleteWorkflowRunById(runId);
149
+ ```
150
+
151
+ ## 1.0.0-beta.7
152
+
153
+ ### Patch Changes
154
+
155
+ - Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
156
+
157
+ - Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
158
+
159
+ - 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))
160
+
161
+ - Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
162
+
163
+ ## 1.0.0-beta.6
164
+
165
+ ### Patch Changes
166
+
167
+ - Fix select options overflow when list is long by adding maximum height ([#10813](https://github.com/mastra-ai/mastra/pull/10813))
168
+
169
+ ## 1.0.0-beta.5
170
+
171
+ ### Patch Changes
172
+
173
+ - Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
174
+
175
+ - Hide time travel on map steps in Studio ([#10631](https://github.com/mastra-ai/mastra/pull/10631))
176
+
177
+ ## 1.0.0-beta.4
178
+
179
+ ### Patch Changes
180
+
181
+ - Add timeTravel APIs and add timeTravel feature to studio ([#10361](https://github.com/mastra-ai/mastra/pull/10361))
182
+
183
+ ## 1.0.0-beta.3
184
+
185
+ ### Patch Changes
186
+
187
+ - fix: detect bun runtime and cleanup on failure ([#10242](https://github.com/mastra-ai/mastra/pull/10242))
188
+
189
+ ## 1.0.0-beta.2
190
+
191
+ ### Patch Changes
192
+
193
+ - dependencies updates: ([#10111](https://github.com/mastra-ai/mastra/pull/10111))
194
+ - Updated dependency [`pino@^10.1.0` ↗︎](https://www.npmjs.com/package/pino/v/10.1.0) (from `^9.7.0`, in `dependencies`)
195
+
196
+ - dependencies updates: ([#9781](https://github.com/mastra-ai/mastra/pull/9781))
197
+ - Updated dependency [`posthog-node@^5.11.2` ↗︎](https://www.npmjs.com/package/posthog-node/v/5.11.2) (from `^4.18.0`, in `dependencies`)
198
+
199
+ - Fix scorer filtering for SpanScoring, add error and info message for user ([#10160](https://github.com/mastra-ai/mastra/pull/10160))
200
+
201
+ - Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
202
+
203
+ ## 1.0.0-beta.1
204
+
205
+ ### Patch Changes
206
+
207
+ - Make MainSidebar toggle button sticky to bottom, always visible ([#9682](https://github.com/mastra-ai/mastra/pull/9682))
208
+
209
+ ## 1.0.0-beta.0
210
+
211
+ ### Major Changes
212
+
213
+ - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
214
+
7
215
  - Removed old tracing code based on OpenTelemetry ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
8
216
 
217
+ - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
218
+
9
219
  ### Patch Changes
10
220
 
11
221
  - Update MainSidebar component to fit required changes in Cloud CTA link ([#9318](https://github.com/mastra-ai/mastra/pull/9318))