create-mastra 0.0.0-bump-snapshot-attempt-20251015082400 → 0.0.0-bundle-studio-cloud-20251222034739
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 +229 -1
- package/dist/index.js +602 -261
- package/dist/index.js.map +1 -1
- package/dist/starter-files/tools.ts +2 -2
- package/dist/templates/dev.entry.js +2 -45
- package/package.json +18 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,234 @@
|
|
|
1
1
|
# create-mastra
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-bundle-studio-cloud-20251222034739
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
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
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Fix select options overflow when list is long by adding maximum height ([#10813](https://github.com/mastra-ai/mastra/pull/10813))
|
|
16
|
+
|
|
17
|
+
- dependencies updates: ([#10111](https://github.com/mastra-ai/mastra/pull/10111))
|
|
18
|
+
- Updated dependency [`pino@^10.1.0` ↗︎](https://www.npmjs.com/package/pino/v/10.1.0) (from `^9.7.0`, in `dependencies`)
|
|
19
|
+
|
|
20
|
+
- dependencies updates: ([#9781](https://github.com/mastra-ai/mastra/pull/9781))
|
|
21
|
+
- Updated dependency [`posthog-node@^5.11.2` ↗︎](https://www.npmjs.com/package/posthog-node/v/5.11.2) (from `^4.18.0`, in `dependencies`)
|
|
22
|
+
|
|
23
|
+
- Update MainSidebar component to fit required changes in Cloud CTA link ([#9318](https://github.com/mastra-ai/mastra/pull/9318))
|
|
24
|
+
|
|
25
|
+
- Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
|
|
26
|
+
|
|
27
|
+
- Auto resume suspended tools if `autoResumeSuspendedTools: true` ([#11157](https://github.com/mastra-ai/mastra/pull/11157))
|
|
28
|
+
|
|
29
|
+
The flag can be added to `defaultAgentOptions` when creating the agent or to options in `agent.stream` or `agent.generate`
|
|
30
|
+
|
|
31
|
+
```typescript
|
|
32
|
+
const agent = new Agent({
|
|
33
|
+
//...agent information,
|
|
34
|
+
defaultAgentOptions: {
|
|
35
|
+
autoResumeSuspendedTools: true,
|
|
36
|
+
},
|
|
37
|
+
});
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
- Make MainSidebar toggle button sticky to bottom, always visible ([#9682](https://github.com/mastra-ai/mastra/pull/9682))
|
|
41
|
+
|
|
42
|
+
- Detect bun runtime and cleanup on failure ([#10242](https://github.com/mastra-ai/mastra/pull/10242))
|
|
43
|
+
|
|
44
|
+
- 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))
|
|
45
|
+
With this change, run methods cannot be called directly on workflow instance anymore
|
|
46
|
+
|
|
47
|
+
```diff
|
|
48
|
+
- const result = await workflow.stream({ runId: '123', inputData: { ... } });
|
|
49
|
+
+ const run = await workflow.createRun({ runId: '123' });
|
|
50
|
+
+ const stream = await run.stream({ inputData: { ... } });
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
- Add timeTravel APIs and add timeTravel feature to studio ([#10361](https://github.com/mastra-ai/mastra/pull/10361))
|
|
54
|
+
|
|
55
|
+
- Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
|
|
56
|
+
|
|
57
|
+
```typescript
|
|
58
|
+
await workflow.deleteWorkflowRunById(runId);
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
- Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
|
|
62
|
+
|
|
63
|
+
- Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
|
|
64
|
+
|
|
65
|
+
- 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))
|
|
66
|
+
|
|
67
|
+
- Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
|
|
68
|
+
|
|
69
|
+
- Fix scorer filtering for SpanScoring, add error and info message for user ([#10160](https://github.com/mastra-ai/mastra/pull/10160))
|
|
70
|
+
|
|
71
|
+
- Hide time travel on map steps in Studio ([#10631](https://github.com/mastra-ai/mastra/pull/10631))
|
|
72
|
+
|
|
73
|
+
- Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
|
|
74
|
+
|
|
75
|
+
- 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))
|
|
76
|
+
|
|
77
|
+
## 1.0.0-beta.11
|
|
78
|
+
|
|
79
|
+
## 1.0.0-beta.10
|
|
80
|
+
|
|
81
|
+
### Patch Changes
|
|
82
|
+
|
|
83
|
+
- Auto resume suspended tools if `autoResumeSuspendedTools: true` ([#11157](https://github.com/mastra-ai/mastra/pull/11157))
|
|
84
|
+
|
|
85
|
+
The flag can be added to `defaultAgentOptions` when creating the agent or to options in `agent.stream` or `agent.generate`
|
|
86
|
+
|
|
87
|
+
```typescript
|
|
88
|
+
const agent = new Agent({
|
|
89
|
+
//...agent information,
|
|
90
|
+
defaultAgentOptions: {
|
|
91
|
+
autoResumeSuspendedTools: true,
|
|
92
|
+
},
|
|
93
|
+
});
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
- 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))
|
|
97
|
+
With this change, run methods cannot be called directly on workflow instance anymore
|
|
98
|
+
|
|
99
|
+
```diff
|
|
100
|
+
- const result = await workflow.stream({ runId: '123', inputData: { ... } });
|
|
101
|
+
+ const run = await workflow.createRun({ runId: '123' });
|
|
102
|
+
+ const stream = await run.stream({ inputData: { ... } });
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
- 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))
|
|
106
|
+
|
|
107
|
+
## 1.0.0-beta.9
|
|
108
|
+
|
|
109
|
+
## 1.0.0-beta.8
|
|
110
|
+
|
|
111
|
+
### Patch Changes
|
|
112
|
+
|
|
113
|
+
- Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
|
|
114
|
+
|
|
115
|
+
```typescript
|
|
116
|
+
await workflow.deleteWorkflowRunById(runId);
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
## 1.0.0-beta.7
|
|
120
|
+
|
|
121
|
+
### Patch Changes
|
|
122
|
+
|
|
123
|
+
- Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
|
|
124
|
+
|
|
125
|
+
- Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
|
|
126
|
+
|
|
127
|
+
- 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))
|
|
128
|
+
|
|
129
|
+
- Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
|
|
130
|
+
|
|
131
|
+
## 1.0.0-beta.6
|
|
132
|
+
|
|
133
|
+
### Patch Changes
|
|
134
|
+
|
|
135
|
+
- Fix select options overflow when list is long by adding maximum height ([#10813](https://github.com/mastra-ai/mastra/pull/10813))
|
|
136
|
+
|
|
137
|
+
## 1.0.0-beta.5
|
|
138
|
+
|
|
139
|
+
### Patch Changes
|
|
140
|
+
|
|
141
|
+
- Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
|
|
142
|
+
|
|
143
|
+
- Hide time travel on map steps in Studio ([#10631](https://github.com/mastra-ai/mastra/pull/10631))
|
|
144
|
+
|
|
145
|
+
## 1.0.0-beta.4
|
|
146
|
+
|
|
147
|
+
### Patch Changes
|
|
148
|
+
|
|
149
|
+
- Add timeTravel APIs and add timeTravel feature to studio ([#10361](https://github.com/mastra-ai/mastra/pull/10361))
|
|
150
|
+
|
|
151
|
+
## 1.0.0-beta.3
|
|
152
|
+
|
|
153
|
+
### Patch Changes
|
|
154
|
+
|
|
155
|
+
- fix: detect bun runtime and cleanup on failure ([#10242](https://github.com/mastra-ai/mastra/pull/10242))
|
|
156
|
+
|
|
157
|
+
## 1.0.0-beta.2
|
|
158
|
+
|
|
159
|
+
### Patch Changes
|
|
160
|
+
|
|
161
|
+
- dependencies updates: ([#10111](https://github.com/mastra-ai/mastra/pull/10111))
|
|
162
|
+
- Updated dependency [`pino@^10.1.0` ↗︎](https://www.npmjs.com/package/pino/v/10.1.0) (from `^9.7.0`, in `dependencies`)
|
|
163
|
+
|
|
164
|
+
- dependencies updates: ([#9781](https://github.com/mastra-ai/mastra/pull/9781))
|
|
165
|
+
- Updated dependency [`posthog-node@^5.11.2` ↗︎](https://www.npmjs.com/package/posthog-node/v/5.11.2) (from `^4.18.0`, in `dependencies`)
|
|
166
|
+
|
|
167
|
+
- Fix scorer filtering for SpanScoring, add error and info message for user ([#10160](https://github.com/mastra-ai/mastra/pull/10160))
|
|
168
|
+
|
|
169
|
+
- Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
|
|
170
|
+
|
|
171
|
+
## 1.0.0-beta.1
|
|
172
|
+
|
|
173
|
+
### Patch Changes
|
|
174
|
+
|
|
175
|
+
- Make MainSidebar toggle button sticky to bottom, always visible ([#9682](https://github.com/mastra-ai/mastra/pull/9682))
|
|
176
|
+
|
|
177
|
+
## 1.0.0-beta.0
|
|
178
|
+
|
|
179
|
+
### Major Changes
|
|
180
|
+
|
|
181
|
+
- Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
|
|
182
|
+
|
|
183
|
+
- Removed old tracing code based on OpenTelemetry ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
|
|
184
|
+
|
|
185
|
+
- Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
|
|
186
|
+
|
|
187
|
+
### Patch Changes
|
|
188
|
+
|
|
189
|
+
- Update MainSidebar component to fit required changes in Cloud CTA link ([#9318](https://github.com/mastra-ai/mastra/pull/9318))
|
|
190
|
+
|
|
191
|
+
## 0.17.3
|
|
192
|
+
|
|
193
|
+
## 0.17.3-alpha.0
|
|
194
|
+
|
|
195
|
+
## 0.17.2
|
|
196
|
+
|
|
197
|
+
## 0.17.2-alpha.0
|
|
198
|
+
|
|
199
|
+
## 0.17.1
|
|
200
|
+
|
|
201
|
+
### Patch Changes
|
|
202
|
+
|
|
203
|
+
- Add scorers to the default weather agent in the create command. ([#9042](https://github.com/mastra-ai/mastra/pull/9042))
|
|
204
|
+
|
|
205
|
+
- Fix tool result in playground ([#9087](https://github.com/mastra-ai/mastra/pull/9087))
|
|
206
|
+
|
|
207
|
+
## 0.17.1-alpha.1
|
|
208
|
+
|
|
209
|
+
### Patch Changes
|
|
210
|
+
|
|
211
|
+
- Add scorers to the default weather agent in the create command. ([#9042](https://github.com/mastra-ai/mastra/pull/9042))
|
|
212
|
+
|
|
213
|
+
- Fix tool result in playground ([#9087](https://github.com/mastra-ai/mastra/pull/9087))
|
|
214
|
+
|
|
215
|
+
## 0.17.1-alpha.0
|
|
216
|
+
|
|
217
|
+
## 0.17.0
|
|
218
|
+
|
|
219
|
+
### Patch Changes
|
|
220
|
+
|
|
221
|
+
- Pin `@rollup/*` dependencies to fixed versions (instead of using `^`) to: ([#8900](https://github.com/mastra-ai/mastra/pull/8900))
|
|
222
|
+
- Hotfix a bug inside `@rollup/plugin-commonjs`
|
|
223
|
+
- Have more control over the versions in the future to not have breakages over night
|
|
224
|
+
|
|
225
|
+
## 0.17.0-alpha.0
|
|
226
|
+
|
|
227
|
+
### Patch Changes
|
|
228
|
+
|
|
229
|
+
- Pin `@rollup/*` dependencies to fixed versions (instead of using `^`) to: ([#8900](https://github.com/mastra-ai/mastra/pull/8900))
|
|
230
|
+
- Hotfix a bug inside `@rollup/plugin-commonjs`
|
|
231
|
+
- Have more control over the versions in the future to not have breakages over night
|
|
4
232
|
|
|
5
233
|
## 0.16.0
|
|
6
234
|
|