@mastra/core 0.16.1-alpha.3 → 0.16.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 +48 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# @mastra/core
|
|
2
2
|
|
|
3
|
+
## 0.16.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fixed ai tracing for workflows nested directly in agents ([#7599](https://github.com/mastra-ai/mastra/pull/7599))
|
|
8
|
+
|
|
9
|
+
- Fixed provider defined tools for stream/generate vnext ([#7642](https://github.com/mastra-ai/mastra/pull/7642))
|
|
10
|
+
|
|
11
|
+
- Made tracing context optional on tool execute() ([#7532](https://github.com/mastra-ai/mastra/pull/7532))
|
|
12
|
+
|
|
13
|
+
- Fixed ai tracing context propagation in tool calls ([#7531](https://github.com/mastra-ai/mastra/pull/7531))
|
|
14
|
+
|
|
15
|
+
- Call getMemoryMessages even during first turn in a thread when semantic recall scope is resource ([#7529](https://github.com/mastra-ai/mastra/pull/7529))
|
|
16
|
+
|
|
17
|
+
- add usage and total usage to streamVNext onFinish callback ([#7598](https://github.com/mastra-ai/mastra/pull/7598))
|
|
18
|
+
|
|
19
|
+
- Add prepareStep to generate/stream VNext options. ([#7646](https://github.com/mastra-ai/mastra/pull/7646))
|
|
20
|
+
|
|
21
|
+
- Change to createRunAsync ([#7632](https://github.com/mastra-ai/mastra/pull/7632))
|
|
22
|
+
|
|
23
|
+
- Fix type in worfklow ([#7519](https://github.com/mastra-ai/mastra/pull/7519))
|
|
24
|
+
|
|
25
|
+
- Execute tool calls in parallel in generate/stream VNext methods ([#7524](https://github.com/mastra-ai/mastra/pull/7524))
|
|
26
|
+
|
|
27
|
+
- Allow streamVNext and generateVNext to use structuredOutputs from the MastraClient ([#7597](https://github.com/mastra-ai/mastra/pull/7597))
|
|
28
|
+
|
|
29
|
+
- Use workflow streamVNext in playground ([#7575](https://github.com/mastra-ai/mastra/pull/7575))
|
|
30
|
+
|
|
31
|
+
- Revert "feat(mcp): add createMCPTool helper for proper execute types" ([#7513](https://github.com/mastra-ai/mastra/pull/7513))
|
|
32
|
+
|
|
33
|
+
- Fix InvalidDataContentError when using image messages with AI SDK ([#7542](https://github.com/mastra-ai/mastra/pull/7542))
|
|
34
|
+
|
|
35
|
+
Resolves an issue where passing image content in messages would throw an InvalidDataContentError. The fix properly handles multi-part content arrays containing both text and image parts when converting between Mastra and AI SDK message formats.
|
|
36
|
+
|
|
37
|
+
- Flatten loop config in stream options and pass to loop options ([#7643](https://github.com/mastra-ai/mastra/pull/7643))
|
|
38
|
+
|
|
39
|
+
- Pass mastra instance into MCP Server tools ([#7520](https://github.com/mastra-ai/mastra/pull/7520))
|
|
40
|
+
|
|
41
|
+
- Fix image input handling for Google Gemini models in AI SDK V5 ([#7490](https://github.com/mastra-ai/mastra/pull/7490))
|
|
42
|
+
|
|
43
|
+
Resolves issue #7362 where Gemini threw `AI_InvalidDataContentError` when receiving URLs in image parts. The fix properly handles V3 message file parts that contain both URL and data fields, ensuring URLs are passed as URLs rather than being incorrectly treated as base64 data.
|
|
44
|
+
|
|
45
|
+
- Vnext output schema injection ([#6990](https://github.com/mastra-ai/mastra/pull/6990))
|
|
46
|
+
|
|
47
|
+
- removed duplicate 'float' switch case ([#7516](https://github.com/mastra-ai/mastra/pull/7516))
|
|
48
|
+
|
|
49
|
+
- Fix issue with response message id consistency between stream/generate response and the message ids saveed in the DB. Also fixed the custom generatorId implementation to work with this. ([#7606](https://github.com/mastra-ai/mastra/pull/7606))
|
|
50
|
+
|
|
3
51
|
## 0.16.1-alpha.3
|
|
4
52
|
|
|
5
53
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/core",
|
|
3
|
-
"version": "0.16.1
|
|
3
|
+
"version": "0.16.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -227,8 +227,8 @@
|
|
|
227
227
|
"typescript": "^5.8.3",
|
|
228
228
|
"vitest": "^3.2.4",
|
|
229
229
|
"zod": "^3.25.76",
|
|
230
|
-
"@internal/lint": "0.0.
|
|
231
|
-
"@internal/types-builder": "0.0.
|
|
230
|
+
"@internal/lint": "0.0.37",
|
|
231
|
+
"@internal/types-builder": "0.0.12"
|
|
232
232
|
},
|
|
233
233
|
"engines": {
|
|
234
234
|
"node": ">=20"
|