@mastra/server 0.24.9-alpha.1 → 0.24.10-alpha.0
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 +16 -0
- package/dist/{chunk-NFNRHEOX.cjs → chunk-74G3IPI4.cjs} +3 -3
- package/dist/{chunk-NFNRHEOX.cjs.map → chunk-74G3IPI4.cjs.map} +1 -1
- package/dist/{chunk-SVZOWK6I.js → chunk-CU5ZKNKX.js} +3 -3
- package/dist/{chunk-SVZOWK6I.js.map → chunk-CU5ZKNKX.js.map} +1 -1
- package/dist/server/handlers/agent-builder.cjs +16 -16
- package/dist/server/handlers/agent-builder.js +1 -1
- package/dist/server/handlers.cjs +2 -2
- package/dist/server/handlers.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @mastra/server
|
|
2
2
|
|
|
3
|
+
## 0.24.10-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`b5581fb`](https://github.com/mastra-ai/mastra/commit/b5581fbcead57443c885f5397d651bf5df20b14a), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`0ebadd2`](https://github.com/mastra-ai/mastra/commit/0ebadd21d449bd743e5839e875a745afff9f8b0a)]:
|
|
8
|
+
- @mastra/core@0.24.10-alpha.0
|
|
9
|
+
|
|
10
|
+
## 0.24.9
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Add execution metadata to A2A message/send responses. The A2A protocol now returns detailed execution information including tool calls, tool results, token usage, and finish reason in the task metadata. This allows clients to inspect which tools were invoked during agent execution and access execution statistics without additional queries. ([#11268](https://github.com/mastra-ai/mastra/pull/11268))
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`c56f64b`](https://github.com/mastra-ai/mastra/commit/c56f64b0d7365d744cfe99f54369795917c057b7)]:
|
|
17
|
+
- @mastra/core@0.24.9
|
|
18
|
+
|
|
3
19
|
## 0.24.9-alpha.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -15162,7 +15162,7 @@ export const mastra = new Mastra({
|
|
|
15162
15162
|
const output = data.toString();
|
|
15163
15163
|
const lines = output.split("\n").filter((line) => line.trim());
|
|
15164
15164
|
stdoutLines.push(...lines);
|
|
15165
|
-
if (output.includes("Mastra API running on
|
|
15165
|
+
if (output.includes("Mastra API running on ")) {
|
|
15166
15166
|
clearTimeout(timeout);
|
|
15167
15167
|
resolve4({
|
|
15168
15168
|
success: true,
|
|
@@ -19561,5 +19561,5 @@ exports.startAsyncAgentBuilderActionHandler = startAsyncAgentBuilderActionHandle
|
|
|
19561
19561
|
exports.streamAgentBuilderActionHandler = streamAgentBuilderActionHandler;
|
|
19562
19562
|
exports.streamVNextAgentBuilderActionHandler = streamVNextAgentBuilderActionHandler;
|
|
19563
19563
|
exports.watchAgentBuilderActionHandler = watchAgentBuilderActionHandler;
|
|
19564
|
-
//# sourceMappingURL=chunk-
|
|
19565
|
-
//# sourceMappingURL=chunk-
|
|
19564
|
+
//# sourceMappingURL=chunk-74G3IPI4.cjs.map
|
|
19565
|
+
//# sourceMappingURL=chunk-74G3IPI4.cjs.map
|