@mastra/fastify 1.3.11-alpha.1 → 1.3.11
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 +18 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @mastra/fastify
|
|
2
2
|
|
|
3
|
+
## 1.3.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix custom route handlers on the Fastify adapter silently overwriting request-body fields named `tools` (e.g. `POST /stored/agents`, `POST /stored/workspaces`). The adapter now exposes registered tools as `registeredTools` in handler params, matching the Express and Hono adapters and the `@mastra/server` handler contract. ([#15635](https://github.com/mastra-ai/mastra/pull/15635))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`f112db1`](https://github.com/mastra-ai/mastra/commit/f112db179557ae9b5a0f1d25dc47f928d7d61cd9), [`2a87046`](https://github.com/mastra-ai/mastra/commit/2a87046c1898506300a6eb1ae2488020daea89dd), [`21d9706`](https://github.com/mastra-ai/mastra/commit/21d970604d89eee970cbf8013d26d7551aff6ea5), [`0a0aa94`](https://github.com/mastra-ai/mastra/commit/0a0aa94729592e99885af2efb90c56aaada62247), [`ed07df3`](https://github.com/mastra-ai/mastra/commit/ed07df32a9d539c8261e892fc1bade783f5b41a6), [`01a7d51`](https://github.com/mastra-ai/mastra/commit/01a7d513493d21562f677f98550f7ceb165ba78c), [`0a0aa94`](https://github.com/mastra-ai/mastra/commit/0a0aa94729592e99885af2efb90c56aaada62247)]:
|
|
10
|
+
- @mastra/core@1.27.0
|
|
11
|
+
- @mastra/server@1.27.0
|
|
12
|
+
|
|
13
|
+
## 1.3.11-alpha.2
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [[`ed07df3`](https://github.com/mastra-ai/mastra/commit/ed07df32a9d539c8261e892fc1bade783f5b41a6)]:
|
|
18
|
+
- @mastra/core@1.27.0-alpha.2
|
|
19
|
+
- @mastra/server@1.27.0-alpha.2
|
|
20
|
+
|
|
3
21
|
## 1.3.11-alpha.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/fastify",
|
|
3
|
-
"version": "1.3.11
|
|
3
|
+
"version": "1.3.11",
|
|
4
4
|
"description": "Mastra Fastify adapter for the server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"license": "Apache-2.0",
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@fastify/busboy": "^3.2.0",
|
|
24
|
-
"@mastra/server": "1.27.0
|
|
24
|
+
"@mastra/server": "1.27.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@ai-sdk/openai": "^2.0.99",
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"typescript": "^5.9.3",
|
|
35
35
|
"vitest": "4.1.4",
|
|
36
36
|
"zod": "^4.3.6",
|
|
37
|
-
"@internal/lint": "0.0.
|
|
38
|
-
"@internal/
|
|
39
|
-
"@
|
|
40
|
-
"@
|
|
37
|
+
"@internal/lint": "0.0.85",
|
|
38
|
+
"@internal/types-builder": "0.0.60",
|
|
39
|
+
"@mastra/core": "1.27.0",
|
|
40
|
+
"@internal/storage-test-utils": "0.0.81",
|
|
41
41
|
"@mastra/evals": "1.2.1",
|
|
42
|
-
"@internal/server-adapter-test-utils": "0.0.13",
|
|
43
42
|
"@mastra/libsql": "1.9.0",
|
|
44
|
-
"@
|
|
45
|
-
"@mastra/memory": "1.17.0
|
|
43
|
+
"@internal/server-adapter-test-utils": "0.0.14",
|
|
44
|
+
"@mastra/memory": "1.17.0",
|
|
45
|
+
"@mastra/observability": "1.10.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"@mastra/core": ">=1.0.0-0 <2.0.0-0",
|