@mastra/core 0.24.4-alpha.0 → 0.24.4
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 +11 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @mastra/core
|
|
2
2
|
|
|
3
|
+
## 0.24.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix providerMetadata preservation for Gemini function calls ([#10365](https://github.com/mastra-ai/mastra/pull/10365))
|
|
8
|
+
- Convert stream chunks directly to MastraMessageV2 format in loop steps to preserve providerMetadata
|
|
9
|
+
- Add message-level providerMetadata support to MastraMessageContentV2 and V3 types
|
|
10
|
+
- Fix sanitizeV5UIMessages filtering to match original 0.x behavior
|
|
11
|
+
- Hydrate threadId and resourceId from memoryInfo when missing
|
|
12
|
+
- Update test utilities for 0.x compatibility
|
|
13
|
+
|
|
3
14
|
## 0.24.4-alpha.0
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/core",
|
|
3
|
-
"version": "0.24.4
|
|
3
|
+
"version": "0.24.4",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -247,9 +247,9 @@
|
|
|
247
247
|
"vitest": "^3.2.4",
|
|
248
248
|
"zod": "^3.25.76",
|
|
249
249
|
"zod-v4": "npm:zod@4.1.12",
|
|
250
|
-
"@internal/lint": "0.0.
|
|
251
|
-
"@internal/external-types": "0.0.
|
|
252
|
-
"@internal/types-builder": "0.0.
|
|
250
|
+
"@internal/lint": "0.0.62",
|
|
251
|
+
"@internal/external-types": "0.0.12",
|
|
252
|
+
"@internal/types-builder": "0.0.37"
|
|
253
253
|
},
|
|
254
254
|
"engines": {
|
|
255
255
|
"node": ">=20"
|