@mastra/core 0.20.2-alpha.1 → 0.20.2
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 +12 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @mastra/core
|
|
2
2
|
|
|
3
|
+
## 0.20.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Pass through input/output processors to the server agent endpoints ([#8546](https://github.com/mastra-ai/mastra/pull/8546))
|
|
8
|
+
|
|
9
|
+
- Add structuredOutput data to response message metadata so it will be persisted. ([#8588](https://github.com/mastra-ai/mastra/pull/8588))
|
|
10
|
+
|
|
11
|
+
- Add shouldPersistSnapshot to control when to persist run snapshot ([#8617](https://github.com/mastra-ai/mastra/pull/8617))
|
|
12
|
+
|
|
13
|
+
- moved ai tracing startup logs to debug level ([#8625](https://github.com/mastra-ai/mastra/pull/8625))
|
|
14
|
+
|
|
3
15
|
## 0.20.2-alpha.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/core",
|
|
3
|
-
"version": "0.20.2
|
|
3
|
+
"version": "0.20.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -244,8 +244,8 @@
|
|
|
244
244
|
"typescript": "^5.8.3",
|
|
245
245
|
"vitest": "^3.2.4",
|
|
246
246
|
"zod": "^3.25.76",
|
|
247
|
-
"@internal/
|
|
248
|
-
"@internal/
|
|
247
|
+
"@internal/types-builder": "0.0.23",
|
|
248
|
+
"@internal/lint": "0.0.48"
|
|
249
249
|
},
|
|
250
250
|
"engines": {
|
|
251
251
|
"node": ">=20"
|