@mastra/deployer 0.23.0-alpha.0 → 0.23.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 +28 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @mastra/deployer
|
|
2
2
|
|
|
3
|
+
## 0.23.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix peerdependencies ([`eb7c1c8`](https://github.com/mastra-ai/mastra/commit/eb7c1c8c592d8fb16dfd250e337d9cdc73c8d5de))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`eb7c1c8`](https://github.com/mastra-ai/mastra/commit/eb7c1c8c592d8fb16dfd250e337d9cdc73c8d5de)]:
|
|
10
|
+
- @mastra/server@0.23.1
|
|
11
|
+
- @mastra/core@0.23.1
|
|
12
|
+
|
|
13
|
+
## 0.23.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- Update peer dependencies to match core package version bump (0.22.1) ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
|
|
18
|
+
|
|
19
|
+
- Update peer dependencies to match core package version bump (0.22.3) ([#9192](https://github.com/mastra-ai/mastra/pull/9192))
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Add tool call approval ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
|
|
24
|
+
|
|
25
|
+
- Fix error handling and serialization in agent streaming to ensure errors are consistently exposed and preserved. ([#9192](https://github.com/mastra-ai/mastra/pull/9192))
|
|
26
|
+
|
|
27
|
+
- Updated dependencies [[`f743dbb`](https://github.com/mastra-ai/mastra/commit/f743dbb8b40d1627b5c10c0e6fc154f4ebb6e394), [`5df9cce`](https://github.com/mastra-ai/mastra/commit/5df9cce1a753438413f64c11eeef8f845745c2a8), [`5df9cce`](https://github.com/mastra-ai/mastra/commit/5df9cce1a753438413f64c11eeef8f845745c2a8), [`2060766`](https://github.com/mastra-ai/mastra/commit/20607667bf78ea104cca3e15dfb93ae0b62c9d18), [`2c4438b`](https://github.com/mastra-ai/mastra/commit/2c4438b87817ab7eed818c7990fef010475af1a3)]:
|
|
28
|
+
- @mastra/core@0.23.0
|
|
29
|
+
- @mastra/server@0.23.0
|
|
30
|
+
|
|
3
31
|
## 0.23.0-alpha.0
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/deployer",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"rollup-plugin-node-externals": "^8.0.1",
|
|
115
115
|
"tinyglobby": "^0.2.15",
|
|
116
116
|
"typescript-paths": "^1.5.1",
|
|
117
|
-
"@mastra/server": "^0.23.
|
|
117
|
+
"@mastra/server": "^0.23.1"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
120
|
"@hono/node-server": "^1.19.5",
|
|
@@ -134,10 +134,10 @@
|
|
|
134
134
|
"typescript": "^5.8.3",
|
|
135
135
|
"vitest": "^3.2.4",
|
|
136
136
|
"zod": "^3.25.76",
|
|
137
|
-
"@internal/
|
|
138
|
-
"@
|
|
139
|
-
"@mastra/mcp": "^0.14.
|
|
140
|
-
"@
|
|
137
|
+
"@internal/types-builder": "0.0.30",
|
|
138
|
+
"@mastra/core": "0.23.1",
|
|
139
|
+
"@mastra/mcp": "^0.14.1",
|
|
140
|
+
"@internal/lint": "0.0.55"
|
|
141
141
|
},
|
|
142
142
|
"peerDependencies": {
|
|
143
143
|
"@mastra/core": ">=0.22.1-0 <0.24.0-0",
|