@mastra/schema-compat 0.11.4-alpha.0 → 0.11.5
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 +11 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @mastra/schema-compat
|
|
2
2
|
|
|
3
|
+
## 0.11.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix peerdependencies ([`eb7c1c8`](https://github.com/mastra-ai/mastra/commit/eb7c1c8c592d8fb16dfd250e337d9cdc73c8d5de))
|
|
8
|
+
|
|
9
|
+
## 0.11.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Fixes an issue when the OpenAI reasoning schema compatibility layer was calling defaultValue() as a function, which works in Zod v3 but fails in Zod v4 where defaultValue is stored directly as a value. ([#8090](https://github.com/mastra-ai/mastra/pull/8090))
|
|
14
|
+
|
|
3
15
|
## 0.11.4-alpha.0
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/schema-compat",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.5",
|
|
4
4
|
"description": "Tool schema compatibility layer for Mastra.ai",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -55,13 +55,13 @@
|
|
|
55
55
|
"@types/json-schema": "^7.0.15",
|
|
56
56
|
"@types/node": "^20.19.0",
|
|
57
57
|
"ai": "4.3.16",
|
|
58
|
-
"eslint": "^9.
|
|
58
|
+
"eslint": "^9.37.0",
|
|
59
59
|
"tsup": "^8.5.0",
|
|
60
60
|
"typescript": "^5.8.3",
|
|
61
61
|
"vitest": "^3.2.4",
|
|
62
62
|
"zod": "^3.25.76",
|
|
63
|
-
"@internal/lint": "0.0.
|
|
64
|
-
"@internal/types-builder": "0.0.
|
|
63
|
+
"@internal/lint": "0.0.55",
|
|
64
|
+
"@internal/types-builder": "0.0.30"
|
|
65
65
|
},
|
|
66
66
|
"homepage": "https://mastra.ai",
|
|
67
67
|
"repository": {
|
|
@@ -72,6 +72,13 @@
|
|
|
72
72
|
"bugs": {
|
|
73
73
|
"url": "https://github.com/mastra-ai/mastra/issues"
|
|
74
74
|
},
|
|
75
|
+
"publishConfig": {
|
|
76
|
+
"access": "public",
|
|
77
|
+
"publish-branch": [
|
|
78
|
+
"main",
|
|
79
|
+
"0.x"
|
|
80
|
+
]
|
|
81
|
+
},
|
|
75
82
|
"scripts": {
|
|
76
83
|
"build": "tsup --silent --config tsup.config.ts",
|
|
77
84
|
"build:watch": "tsup --watch --silent --config tsup.config.ts",
|