@mastra/server 1.15.0-alpha.4 → 1.15.0
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 +21 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @mastra/server
|
|
2
2
|
|
|
3
|
+
## 1.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Added version query parameters to GET /api/agents/:agentId endpoint. Code-defined agents can now be resolved with specific stored config versions using ?status=draft (latest, default), ?status=published (active version), or ?versionId=<id> (specific version). ([#14156](https://github.com/mastra-ai/mastra/pull/14156))
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Added missing route "GET_METRICS_BREAKDOWN" to observability server domain. ([#14457](https://github.com/mastra-ai/mastra/pull/14457))
|
|
12
|
+
|
|
13
|
+
- fix: remove explicit Transfer-Encoding header to prevent duplicate headers in Bun runtime ([#11545](https://github.com/mastra-ai/mastra/pull/11545))
|
|
14
|
+
|
|
15
|
+
Removes explicit `Transfer-Encoding: chunked` header from `toTextStreamResponse()` and `toDataStreamResponse()` calls in agent streaming handlers. When deploying with Bun, the runtime automatically adds this header for `ReadableStream` responses. Setting it explicitly caused duplicate headers, which broke HTTP protocol compliance and resulted in 502 errors.
|
|
16
|
+
|
|
17
|
+
Node.js runtimes will continue to automatically add the `Transfer-Encoding` header for chunked responses, so this change has no impact on Node.js deployments.
|
|
18
|
+
|
|
19
|
+
Fixes #11510
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [[`cb611a1`](https://github.com/mastra-ai/mastra/commit/cb611a1e89a4f4cf74c97b57e0c27bb56f2eceb5), [`da93115`](https://github.com/mastra-ai/mastra/commit/da931155c1a9bc63d455d3d86b4ec984db5991fe), [`62d1d3c`](https://github.com/mastra-ai/mastra/commit/62d1d3cc08fe8182e7080237fd975de862ec8c91), [`9e1a3ed`](https://github.com/mastra-ai/mastra/commit/9e1a3ed07cfafb5e8e19a796ce0bee817002d7c0), [`8681ecb`](https://github.com/mastra-ai/mastra/commit/8681ecb86184d5907267000e4576cc442a9a83fc), [`28d0249`](https://github.com/mastra-ai/mastra/commit/28d0249295782277040ad1e0d243e695b7ab1ce4), [`681ee1c`](https://github.com/mastra-ai/mastra/commit/681ee1c811359efd1b8bebc4bce35b9bb7b14bec), [`bb0f09d`](https://github.com/mastra-ai/mastra/commit/bb0f09dbac58401b36069f483acf5673202db5b5), [`a579f7a`](https://github.com/mastra-ai/mastra/commit/a579f7a31e582674862b5679bc79af7ccf7429b8), [`5f7e9d0`](https://github.com/mastra-ai/mastra/commit/5f7e9d0db664020e1f3d97d7d18c6b0b9d4843d0), [`d7f14c3`](https://github.com/mastra-ai/mastra/commit/d7f14c3285cd253ecdd5f58139b7b6cbdf3678b5), [`0efe12a`](https://github.com/mastra-ai/mastra/commit/0efe12a5f008a939a1aac71699486ba40138054e)]:
|
|
22
|
+
- @mastra/core@1.15.0
|
|
23
|
+
|
|
3
24
|
## 1.15.0-alpha.4
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/dist/docs/SKILL.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/server",
|
|
3
|
-
"version": "1.15.0
|
|
3
|
+
"version": "1.15.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -102,14 +102,14 @@
|
|
|
102
102
|
"typescript": "^5.9.3",
|
|
103
103
|
"vitest": "4.0.18",
|
|
104
104
|
"zod": "^4.3.6",
|
|
105
|
-
"@internal/lint": "0.0.72",
|
|
106
105
|
"@internal/core": "0.0.0",
|
|
107
|
-
"@internal/storage-test-utils": "0.0.
|
|
108
|
-
"@internal/test-utils": "0.0.
|
|
109
|
-
"@internal/types-builder": "0.0.
|
|
110
|
-
"@mastra/agent-builder": "1.0.17
|
|
111
|
-
"@mastra/
|
|
112
|
-
"@
|
|
106
|
+
"@internal/storage-test-utils": "0.0.69",
|
|
107
|
+
"@internal/test-utils": "0.0.9",
|
|
108
|
+
"@internal/types-builder": "0.0.48",
|
|
109
|
+
"@mastra/agent-builder": "1.0.17",
|
|
110
|
+
"@mastra/schema-compat": "1.2.6",
|
|
111
|
+
"@internal/lint": "0.0.73",
|
|
112
|
+
"@mastra/core": "1.15.0"
|
|
113
113
|
},
|
|
114
114
|
"homepage": "https://mastra.ai",
|
|
115
115
|
"repository": {
|