create-mastra 0.0.0-safe-stringify-telemetry-20251205024938 → 0.0.0-salesman-20260127182805

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,88 +1,296 @@
1
1
  # create-mastra
2
2
 
3
- ## 0.0.0-safe-stringify-telemetry-20251205024938
3
+ ## 0.0.0-salesman-20260127182805
4
+
5
+ ## 1.0.1
6
+
7
+ ## 1.0.1-alpha.0
8
+
9
+ ## 1.0.0
10
+
11
+ ### Major Changes
12
+
13
+ - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
14
+
15
+ - Removed old tracing code based on OpenTelemetry ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
16
+
17
+ - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
18
+
19
+ ### Minor Changes
20
+
21
+ - 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))
22
+
23
+ ### Patch Changes
24
+
25
+ - Remove `streamVNext`, `resumeStreamVNext`, and `observeStreamVNext` methods, call `stream`, `resumeStream` and `observeStream` directly ([#11499](https://github.com/mastra-ai/mastra/pull/11499))
26
+
27
+ ```diff
28
+ + const run = await workflow.createRun({ runId: '123' });
29
+ - const stream = await run.streamVNext({ inputData: { ... } });
30
+ + const stream = await run.stream({ inputData: { ... } });
31
+ ```
32
+
33
+ - Replace deprecated client.getTraces with a client.listTraces ([#11711](https://github.com/mastra-ai/mastra/pull/11711))
34
+
35
+ - Fix select options overflow when list is long by adding maximum height ([#10813](https://github.com/mastra-ai/mastra/pull/10813))
36
+
37
+ - dependencies updates: ([#10111](https://github.com/mastra-ai/mastra/pull/10111))
38
+ - Updated dependency [`pino@^10.1.0` ↗︎](https://www.npmjs.com/package/pino/v/10.1.0) (from `^9.7.0`, in `dependencies`)
39
+
40
+ - dependencies updates: ([#11642](https://github.com/mastra-ai/mastra/pull/11642))
41
+ - Updated dependency [`fs-extra@^11.3.3` ↗︎](https://www.npmjs.com/package/fs-extra/v/11.3.3) (from `^11.3.2`, in `dependencies`)
42
+
43
+ - dependencies updates: ([#9781](https://github.com/mastra-ai/mastra/pull/9781))
44
+ - Updated dependency [`posthog-node@^5.11.2` ↗︎](https://www.npmjs.com/package/posthog-node/v/5.11.2) (from `^4.18.0`, in `dependencies`)
45
+
46
+ - Update MainSidebar component to fit required changes in Cloud CTA link ([#9318](https://github.com/mastra-ai/mastra/pull/9318))
47
+
48
+ - Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
49
+
50
+ - Auto resume suspended tools if `autoResumeSuspendedTools: true` ([#11157](https://github.com/mastra-ai/mastra/pull/11157))
51
+
52
+ The flag can be added to `defaultAgentOptions` when creating the agent or to options in `agent.stream` or `agent.generate`
53
+
54
+ ```typescript
55
+ const agent = new Agent({
56
+ //...agent information,
57
+ defaultAgentOptions: {
58
+ autoResumeSuspendedTools: true,
59
+ },
60
+ });
61
+ ```
62
+
63
+ - Make MainSidebar toggle button sticky to bottom, always visible ([#9682](https://github.com/mastra-ai/mastra/pull/9682))
64
+
65
+ - Add human-in-the-loop (HITL) support to agent networks ([#11678](https://github.com/mastra-ai/mastra/pull/11678))
66
+ - Add suspend/resume capabilities to agent network
67
+ - Enable auto-resume for suspended network execution via `autoResumeSuspendedTools`
68
+
69
+ `agent.resumeNetwork`, `agent.approveNetworkToolCall`, `agent.declineNetworkToolCall`
70
+
71
+ - 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))
72
+ - Updated `dotenv` from `^17.2.1` to `^16.4.5`
73
+ - Updated `zod` from `^3.25.76` to `^3.25.67`
74
+
75
+ This ensures `npx create-mastra@latest --template browsing-agent` can be installed and run without peer dependency errors.
76
+
77
+ - Detect bun runtime and cleanup on failure ([#10242](https://github.com/mastra-ai/mastra/pull/10242))
78
+
79
+ - 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))
80
+ With this change, run methods cannot be called directly on workflow instance anymore
81
+
82
+ ```diff
83
+ - const result = await workflow.stream({ runId: '123', inputData: { ... } });
84
+ + const run = await workflow.createRun({ runId: '123' });
85
+ + const stream = await run.stream({ inputData: { ... } });
86
+ ```
87
+
88
+ - Add timeTravel APIs and add timeTravel feature to studio ([#10361](https://github.com/mastra-ai/mastra/pull/10361))
89
+
90
+ - Add debugger-like click-through UI to workflow graph ([#11350](https://github.com/mastra-ai/mastra/pull/11350))
91
+
92
+ - Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
93
+
94
+ ```typescript
95
+ await workflow.deleteWorkflowRunById(runId);
96
+ ```
97
+
98
+ - Add initial state input to workflow form in studio ([#11560](https://github.com/mastra-ai/mastra/pull/11560))
99
+
100
+ - Make initialState optional in studio ([#11744](https://github.com/mastra-ai/mastra/pull/11744))
101
+
102
+ - Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
103
+
104
+ - Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
105
+
106
+ - 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))
107
+
108
+ - Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
109
+
110
+ - Fix scorer filtering for SpanScoring, add error and info message for user ([#10160](https://github.com/mastra-ai/mastra/pull/10160))
111
+
112
+ - Hide time travel on map steps in Studio ([#10631](https://github.com/mastra-ai/mastra/pull/10631))
113
+
114
+ - Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
115
+
116
+ - Display network completion validation results and scorer feedback in the Playground when viewing agent network runs, letting users see pass/fail status and actionable feedback from completion scorers ([#11562](https://github.com/mastra-ai/mastra/pull/11562))
117
+
118
+ - 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))
119
+
120
+ ## 1.0.0-beta.19
121
+
122
+ ## 1.0.0-beta.18
123
+
124
+ ## 1.0.0-beta.17
125
+
126
+ ## 1.0.0-beta.16
127
+
128
+ ## 1.0.0-beta.15
129
+
130
+ ### Patch Changes
131
+
132
+ - Add human-in-the-loop (HITL) support to agent networks ([#11678](https://github.com/mastra-ai/mastra/pull/11678))
133
+ - Add suspend/resume capabilities to agent network
134
+ - Enable auto-resume for suspended network execution via `autoResumeSuspendedTools`
135
+
136
+ `agent.resumeNetwork`, `agent.approveNetworkToolCall`, `agent.declineNetworkToolCall`
137
+
138
+ ## 1.0.0-beta.14
4
139
 
5
140
  ### Patch Changes
6
141
 
7
- - Fix select options overflow when list is long by adding maximum height ([#10833](https://github.com/mastra-ai/mastra/pull/10833))
142
+ - Replace deprecated client.getTraces with a client.listTraces ([#11711](https://github.com/mastra-ai/mastra/pull/11711))
143
+
144
+ - dependencies updates: ([#11642](https://github.com/mastra-ai/mastra/pull/11642))
145
+ - Updated dependency [`fs-extra@^11.3.3` ↗︎](https://www.npmjs.com/package/fs-extra/v/11.3.3) (from `^11.3.2`, in `dependencies`)
8
146
 
9
- - Add timeTravel APIs and add timeTravel feature to studio ([#10757](https://github.com/mastra-ai/mastra/pull/10757))
147
+ - Make initialState optional in studio ([#11744](https://github.com/mastra-ai/mastra/pull/11744))
10
148
 
11
- - Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10764](https://github.com/mastra-ai/mastra/pull/10764))
149
+ ## 1.0.0-beta.13
12
150
 
13
- ## 0.18.7-alpha.0
151
+ ### Patch Changes
152
+
153
+ - Remove `streamVNext`, `resumeStreamVNext`, and `observeStreamVNext` methods, call `stream`, `resumeStream` and `observeStream` directly ([#11499](https://github.com/mastra-ai/mastra/pull/11499))
14
154
 
15
- ## 0.18.6
155
+ ```diff
156
+ + const run = await workflow.createRun({ runId: '123' });
157
+ - const stream = await run.streamVNext({ inputData: { ... } });
158
+ + const stream = await run.stream({ inputData: { ... } });
159
+ ```
16
160
 
17
- ## 0.18.6-alpha.0
161
+ - 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))
162
+ - Updated `dotenv` from `^17.2.1` to `^16.4.5`
163
+ - Updated `zod` from `^3.25.76` to `^3.25.67`
18
164
 
19
- ## 0.18.5
165
+ This ensures `npx create-mastra@latest --template browsing-agent` can be installed and run without peer dependency errors.
20
166
 
21
- ## 0.18.5-alpha.0
167
+ - Add initial state input to workflow form in studio ([#11560](https://github.com/mastra-ai/mastra/pull/11560))
22
168
 
23
- ## 0.18.4
169
+ - Display network completion validation results and scorer feedback in the Playground when viewing agent network runs, letting users see pass/fail status and actionable feedback from completion scorers ([#11562](https://github.com/mastra-ai/mastra/pull/11562))
24
170
 
25
- ## 0.18.4-alpha.0
171
+ ## 1.0.0-beta.12
26
172
 
27
- ## 0.18.3
173
+ ### Minor Changes
174
+
175
+ - 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))
28
176
 
29
177
  ### Patch Changes
30
178
 
31
- - fix: detect bun runtime and cleanup on failure ([#10307](https://github.com/mastra-ai/mastra/pull/10307))
179
+ - Add debugger-like click-through UI to workflow graph ([#11350](https://github.com/mastra-ai/mastra/pull/11350))
180
+
181
+ ## 1.0.0-beta.11
32
182
 
33
- ## 0.18.3-alpha.0
183
+ ## 1.0.0-beta.10
34
184
 
35
185
  ### Patch Changes
36
186
 
37
- - fix: detect bun runtime and cleanup on failure ([#10307](https://github.com/mastra-ai/mastra/pull/10307))
187
+ - Auto resume suspended tools if `autoResumeSuspendedTools: true` ([#11157](https://github.com/mastra-ai/mastra/pull/11157))
188
+
189
+ The flag can be added to `defaultAgentOptions` when creating the agent or to options in `agent.stream` or `agent.generate`
190
+
191
+ ```typescript
192
+ const agent = new Agent({
193
+ //...agent information,
194
+ defaultAgentOptions: {
195
+ autoResumeSuspendedTools: true,
196
+ },
197
+ });
198
+ ```
199
+
200
+ - 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))
201
+ With this change, run methods cannot be called directly on workflow instance anymore
38
202
 
39
- ## 0.18.2
203
+ ```diff
204
+ - const result = await workflow.stream({ runId: '123', inputData: { ... } });
205
+ + const run = await workflow.createRun({ runId: '123' });
206
+ + const stream = await run.stream({ inputData: { ... } });
207
+ ```
40
208
 
41
- ## 0.18.2-alpha.0
209
+ - 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))
42
210
 
43
- ## 0.18.1
211
+ ## 1.0.0-beta.9
44
212
 
45
- ## 0.18.1-alpha.0
213
+ ## 1.0.0-beta.8
46
214
 
47
- ## 0.18.0
215
+ ### Patch Changes
216
+
217
+ - Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
218
+
219
+ ```typescript
220
+ await workflow.deleteWorkflowRunById(runId);
221
+ ```
222
+
223
+ ## 1.0.0-beta.7
48
224
 
49
225
  ### Patch Changes
50
226
 
51
- - update peerdeps ([`5ca1cca`](https://github.com/mastra-ai/mastra/commit/5ca1ccac61ffa7141e6d9fa8f22d3ad4d03bf5dc))
227
+ - Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
228
+
229
+ - Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
230
+
231
+ - 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
232
 
53
- ## 0.18.0-alpha.0
233
+ - Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
234
+
235
+ ## 1.0.0-beta.6
54
236
 
55
237
  ### Patch Changes
56
238
 
57
- - update peerdeps ([`5ca1cca`](https://github.com/mastra-ai/mastra/commit/5ca1ccac61ffa7141e6d9fa8f22d3ad4d03bf5dc))
239
+ - Fix select options overflow when list is long by adding maximum height ([#10813](https://github.com/mastra-ai/mastra/pull/10813))
240
+
241
+ ## 1.0.0-beta.5
58
242
 
59
- ## 0.17.7
243
+ ### Patch Changes
60
244
 
61
- ## 0.17.7-alpha.0
245
+ - Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
62
246
 
63
- ## 0.17.6
247
+ - Hide time travel on map steps in Studio ([#10631](https://github.com/mastra-ai/mastra/pull/10631))
248
+
249
+ ## 1.0.0-beta.4
64
250
 
65
251
  ### Patch Changes
66
252
 
67
- - Update MainSidebar component to fit required changes in Cloud CTA link ([#9364](https://github.com/mastra-ai/mastra/pull/9364))
253
+ - Add timeTravel APIs and add timeTravel feature to studio ([#10361](https://github.com/mastra-ai/mastra/pull/10361))
254
+
255
+ ## 1.0.0-beta.3
68
256
 
69
- ## 0.17.6-alpha.1
257
+ ### Patch Changes
258
+
259
+ - fix: detect bun runtime and cleanup on failure ([#10242](https://github.com/mastra-ai/mastra/pull/10242))
70
260
 
71
- ## 0.17.6-alpha.0
261
+ ## 1.0.0-beta.2
72
262
 
73
263
  ### Patch Changes
74
264
 
75
- - Update MainSidebar component to fit required changes in Cloud CTA link ([#9364](https://github.com/mastra-ai/mastra/pull/9364))
265
+ - dependencies updates: ([#10111](https://github.com/mastra-ai/mastra/pull/10111))
266
+ - Updated dependency [`pino@^10.1.0` ↗︎](https://www.npmjs.com/package/pino/v/10.1.0) (from `^9.7.0`, in `dependencies`)
267
+
268
+ - dependencies updates: ([#9781](https://github.com/mastra-ai/mastra/pull/9781))
269
+ - Updated dependency [`posthog-node@^5.11.2` ↗︎](https://www.npmjs.com/package/posthog-node/v/5.11.2) (from `^4.18.0`, in `dependencies`)
76
270
 
77
- ## 0.17.5
271
+ - Fix scorer filtering for SpanScoring, add error and info message for user ([#10160](https://github.com/mastra-ai/mastra/pull/10160))
272
+
273
+ - Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
274
+
275
+ ## 1.0.0-beta.1
78
276
 
79
277
  ### Patch Changes
80
278
 
81
- - Fix peerdependencies ([`eb7c1c8`](https://github.com/mastra-ai/mastra/commit/eb7c1c8c592d8fb16dfd250e337d9cdc73c8d5de))
279
+ - Make MainSidebar toggle button sticky to bottom, always visible ([#9682](https://github.com/mastra-ai/mastra/pull/9682))
280
+
281
+ ## 1.0.0-beta.0
82
282
 
83
- ## 0.17.4
283
+ ### Major Changes
284
+
285
+ - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
286
+
287
+ - Removed old tracing code based on OpenTelemetry ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
288
+
289
+ - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
290
+
291
+ ### Patch Changes
84
292
 
85
- ## 0.17.4-alpha.0
293
+ - Update MainSidebar component to fit required changes in Cloud CTA link ([#9318](https://github.com/mastra-ai/mastra/pull/9318))
86
294
 
87
295
  ## 0.17.3
88
296
 
package/README.md CHANGED
@@ -9,7 +9,7 @@ It includes everything you need to go from early prototypes to production-ready
9
9
  ## Usage
10
10
 
11
11
  > [!IMPORTANT]
12
- > Make sure that you have Node.js 20 or later installed on your system.
12
+ > Make sure that you have Node.js 22.13.0 or later installed on your system.
13
13
 
14
14
  Using npm:
15
15