create-mastra 1.0.0-beta.12 → 1.0.0-beta.14
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 +33 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# create-mastra
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Replace deprecated client.getTraces with a client.listTraces ([#11711](https://github.com/mastra-ai/mastra/pull/11711))
|
|
8
|
+
|
|
9
|
+
- dependencies updates: ([#11642](https://github.com/mastra-ai/mastra/pull/11642))
|
|
10
|
+
- Updated dependency [`fs-extra@^11.3.3` ↗︎](https://www.npmjs.com/package/fs-extra/v/11.3.3) (from `^11.3.2`, in `dependencies`)
|
|
11
|
+
|
|
12
|
+
- Make initialState optional in studio ([#11744](https://github.com/mastra-ai/mastra/pull/11744))
|
|
13
|
+
|
|
14
|
+
## 1.0.0-beta.13
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Remove `streamVNext`, `resumeStreamVNext`, and `observeStreamVNext` methods, call `stream`, `resumeStream` and `observeStream` directly ([#11499](https://github.com/mastra-ai/mastra/pull/11499))
|
|
19
|
+
|
|
20
|
+
```diff
|
|
21
|
+
+ const run = await workflow.createRun({ runId: '123' });
|
|
22
|
+
- const stream = await run.streamVNext({ inputData: { ... } });
|
|
23
|
+
+ const stream = await run.stream({ inputData: { ... } });
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
- 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))
|
|
27
|
+
- Updated `dotenv` from `^17.2.1` to `^16.4.5`
|
|
28
|
+
- Updated `zod` from `^3.25.76` to `^3.25.67`
|
|
29
|
+
|
|
30
|
+
This ensures `npx create-mastra@latest --template browsing-agent` can be installed and run without peer dependency errors.
|
|
31
|
+
|
|
32
|
+
- Add initial state input to workflow form in studio ([#11560](https://github.com/mastra-ai/mastra/pull/11560))
|
|
33
|
+
|
|
34
|
+
- 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))
|
|
35
|
+
|
|
3
36
|
## 1.0.0-beta.12
|
|
4
37
|
|
|
5
38
|
### Minor Changes
|
package/dist/index.js
CHANGED
|
@@ -1233,7 +1233,7 @@ var PinoLogger = class _PinoLogger extends MastraLogger {
|
|
|
1233
1233
|
};
|
|
1234
1234
|
|
|
1235
1235
|
var package_default = {
|
|
1236
|
-
version: "1.0.0-beta.
|
|
1236
|
+
version: "1.0.0-beta.14"};
|
|
1237
1237
|
function getPackageManagerAddCommand(pm) {
|
|
1238
1238
|
switch (pm) {
|
|
1239
1239
|
case "npm":
|