@mastra/agent-builder 1.0.27 → 1.0.28-alpha.1

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,5 +1,22 @@
1
1
  # @mastra/agent-builder
2
2
 
3
+ ## 1.0.28-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`0a0aa94`](https://github.com/mastra-ai/mastra/commit/0a0aa94729592e99885af2efb90c56aaada62247), [`01a7d51`](https://github.com/mastra-ai/mastra/commit/01a7d513493d21562f677f98550f7ceb165ba78c), [`6e9ab07`](https://github.com/mastra-ai/mastra/commit/6e9ab07b7120e0f4ed1e117c45db0f94840f4afd)]:
8
+ - @mastra/core@1.27.0-alpha.1
9
+ - @mastra/memory@1.17.0-alpha.0
10
+
11
+ ## 1.0.28-alpha.0
12
+
13
+ ### Patch Changes
14
+
15
+ - Hide internal log during `mastra dev` startup (that was previously already hidden but got exposed again by a recent change) ([#15616](https://github.com/mastra-ai/mastra/pull/15616))
16
+
17
+ - Updated dependencies [[`f112db1`](https://github.com/mastra-ai/mastra/commit/f112db179557ae9b5a0f1d25dc47f928d7d61cd9), [`21d9706`](https://github.com/mastra-ai/mastra/commit/21d970604d89eee970cbf8013d26d7551aff6ea5)]:
18
+ - @mastra/core@1.26.1-alpha.0
19
+
3
20
  ## 1.0.27
4
21
 
5
22
  ### Patch Changes
package/dist/index.js CHANGED
@@ -1828,7 +1828,7 @@ export const mastra = new Mastra({
1828
1828
  const output = data.toString();
1829
1829
  const lines = output.split("\n").filter((line) => line.trim());
1830
1830
  stdoutLines.push(...lines);
1831
- if (output.includes("Mastra API running on ")) {
1831
+ if (output.includes("Mastra API running")) {
1832
1832
  clearTimeout(timeout);
1833
1833
  resolve5({
1834
1834
  success: true,