create-mastra 0.0.0-feat-mcp-embedded-docs-tools-clean-20260102174212 → 0.0.0-feat-mcp-embedded-docs-tools-clean-20260108110334

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,6 +1,6 @@
1
1
  # create-mastra
2
2
 
3
- ## 0.0.0-feat-mcp-embedded-docs-tools-clean-20260102174212
3
+ ## 0.0.0-feat-mcp-embedded-docs-tools-clean-20260108110334
4
4
 
5
5
  ### Major Changes
6
6
 
@@ -51,6 +51,12 @@
51
51
 
52
52
  - Make MainSidebar toggle button sticky to bottom, always visible ([#9682](https://github.com/mastra-ai/mastra/pull/9682))
53
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
+
54
60
  - Detect bun runtime and cleanup on failure ([#10242](https://github.com/mastra-ai/mastra/pull/10242))
55
61
 
56
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))
@@ -72,6 +78,8 @@
72
78
  await workflow.deleteWorkflowRunById(runId);
73
79
  ```
74
80
 
81
+ - Add initial state input to workflow form in studio ([#11560](https://github.com/mastra-ai/mastra/pull/11560))
82
+
75
83
  - Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
76
84
 
77
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,8 +94,32 @@
86
94
 
87
95
  - Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
88
96
 
97
+ - 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))
98
+
89
99
  - 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))
90
100
 
101
+ ## 1.0.0-beta.13
102
+
103
+ ### Patch Changes
104
+
105
+ - Remove `streamVNext`, `resumeStreamVNext`, and `observeStreamVNext` methods, call `stream`, `resumeStream` and `observeStream` directly ([#11499](https://github.com/mastra-ai/mastra/pull/11499))
106
+
107
+ ```diff
108
+ + const run = await workflow.createRun({ runId: '123' });
109
+ - const stream = await run.streamVNext({ inputData: { ... } });
110
+ + const stream = await run.stream({ inputData: { ... } });
111
+ ```
112
+
113
+ - 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))
114
+ - Updated `dotenv` from `^17.2.1` to `^16.4.5`
115
+ - Updated `zod` from `^3.25.76` to `^3.25.67`
116
+
117
+ This ensures `npx create-mastra@latest --template browsing-agent` can be installed and run without peer dependency errors.
118
+
119
+ - Add initial state input to workflow form in studio ([#11560](https://github.com/mastra-ai/mastra/pull/11560))
120
+
121
+ - 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))
122
+
91
123
  ## 1.0.0-beta.12
92
124
 
93
125
  ### 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.12"};
1236
+ version: "1.0.0-beta.13"};
1237
1237
  function getPackageManagerAddCommand(pm) {
1238
1238
  switch (pm) {
1239
1239
  case "npm":