@mastra/express 1.3.3-alpha.0 → 1.3.4-alpha.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @mastra/express
2
2
 
3
+ ## 1.3.4-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`9a43b47`](https://github.com/mastra-ai/mastra/commit/9a43b476465e86c9aca381c2831066b5c33c999a), [`edf8f9d`](https://github.com/mastra-ai/mastra/commit/edf8f9d9cd671ffbc8533ac154da6c3386799b33)]:
8
+ - @mastra/core@1.21.0-alpha.0
9
+ - @mastra/server@1.21.0-alpha.0
10
+
11
+ ## 1.3.3
12
+
13
+ ### Patch Changes
14
+
15
+ - Added error handling for datastream-response stream processing. The read loop now catches reader.read() rejections and logs them with context instead of silently terminating the response. Also added a listener on the response stream for socket-level write errors (backpressure, connection resets), which cancels the reader gracefully. ([#14862](https://github.com/mastra-ai/mastra/pull/14862))
16
+
17
+ - Updated dependencies [[`cbeec24`](https://github.com/mastra-ai/mastra/commit/cbeec24b3c97a1a296e7e461e66cc7f7d215dc50), [`cee146b`](https://github.com/mastra-ai/mastra/commit/cee146b5d858212e1df2b2730fc36d3ceda0e08d), [`aa0aeff`](https://github.com/mastra-ai/mastra/commit/aa0aeffa11efbef5e219fbd97bf43d263cfe3afe), [`2bcec65`](https://github.com/mastra-ai/mastra/commit/2bcec652d62b07eab15e9eb9822f70184526eede), [`ad9bded`](https://github.com/mastra-ai/mastra/commit/ad9bdedf86a824801f49928a8d40f6e31ff5450f), [`cbeec24`](https://github.com/mastra-ai/mastra/commit/cbeec24b3c97a1a296e7e461e66cc7f7d215dc50), [`208c0bb`](https://github.com/mastra-ai/mastra/commit/208c0bbacbf5a1da6318f2a0e0c544390e542ddc), [`f566ee7`](https://github.com/mastra-ai/mastra/commit/f566ee7d53a3da33a01103e2a5ac2070ddefe6b0)]:
18
+ - @mastra/core@1.20.0
19
+ - @mastra/server@1.20.0
20
+
3
21
  ## 1.3.3-alpha.0
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/express",
3
- "version": "1.3.3-alpha.0",
3
+ "version": "1.3.4-alpha.0",
4
4
  "description": "Mastra Express 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.20.0-alpha.0"
24
+ "@mastra/server": "1.21.0-alpha.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@ai-sdk/openai": "^2.0.99",
@@ -37,15 +37,15 @@
37
37
  "typescript": "^5.9.3",
38
38
  "vitest": "4.0.18",
39
39
  "zod": "^4.3.6",
40
- "@internal/lint": "0.0.76",
40
+ "@internal/lint": "0.0.77",
41
41
  "@internal/server-adapter-test-utils": "0.0.9",
42
- "@internal/storage-test-utils": "0.0.72",
43
- "@internal/types-builder": "0.0.51",
44
- "@mastra/core": "1.20.0-alpha.0",
42
+ "@internal/storage-test-utils": "0.0.73",
43
+ "@internal/types-builder": "0.0.52",
45
44
  "@mastra/evals": "1.2.0",
46
45
  "@mastra/libsql": "1.7.3",
47
- "@mastra/memory": "1.12.1-alpha.0",
48
- "@mastra/observability": "1.7.0-alpha.0"
46
+ "@mastra/memory": "1.12.1",
47
+ "@mastra/observability": "1.7.0",
48
+ "@mastra/core": "1.21.0-alpha.0"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "@mastra/core": ">=1.0.0-0 <2.0.0-0",