@mastra/deployer 1.56.0-alpha.5 → 1.56.0-alpha.7

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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 1.56.0-alpha.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`d94b8e1`](https://github.com/mastra-ai/mastra/commit/d94b8e1cee67416d518a8c30099040061bef6a1c)]:
8
+ - @mastra/core@1.56.0-alpha.7
9
+ - @mastra/server@1.56.0-alpha.7
10
+
11
+ ## 1.56.0-alpha.6
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`82201f7`](https://github.com/mastra-ai/mastra/commit/82201f75fae8e050a8de2df08b74875ee74c6b83), [`fb18da5`](https://github.com/mastra-ai/mastra/commit/fb18da56fc35689ae370621a8f10b5b0d8606e20), [`fb18da5`](https://github.com/mastra-ai/mastra/commit/fb18da56fc35689ae370621a8f10b5b0d8606e20), [`0a6598b`](https://github.com/mastra-ai/mastra/commit/0a6598bde80bde008986ad6616bed9632b9294cb), [`19ccefa`](https://github.com/mastra-ai/mastra/commit/19ccefa628dc971b4bfa2058a324a6ac9b846358), [`9e1dad8`](https://github.com/mastra-ai/mastra/commit/9e1dad8f7b1cab2bb7ade90e5b7561f24577b88a), [`2f43145`](https://github.com/mastra-ai/mastra/commit/2f4314504c03cbba280414ac81ba3197448ee6b0), [`34d34d8`](https://github.com/mastra-ai/mastra/commit/34d34d8c811df512fef4dd5459f79b7821be1866)]:
16
+ - @mastra/core@1.56.0-alpha.6
17
+ - @mastra/server@1.56.0-alpha.6
18
+
3
19
  ## 1.56.0-alpha.5
4
20
 
5
21
  ### Patch Changes
@@ -3,7 +3,7 @@ name: mastra-deployer
3
3
  description: Documentation for @mastra/deployer. Use when working with @mastra/deployer APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/deployer"
6
- version: "1.56.0-alpha.5"
6
+ version: "1.56.0-alpha.7"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.56.0-alpha.5",
2
+ "version": "1.56.0-alpha.7",
3
3
  "package": "@mastra/deployer",
4
4
  "exports": {},
5
5
  "modules": {}
@@ -2457,7 +2457,7 @@ var MastraServer = class extends _mastra_server_server_adapter.MastraServer {
2457
2457
  if (streamFormat === "sse" && route.sseFlushOnConnect) await stream.write(": connected\n\n");
2458
2458
  const reader = (result instanceof ReadableStream ? result : result.fullStream).getReader();
2459
2459
  stream.onAbort(() => {
2460
- reader.cancel("request aborted");
2460
+ reader.cancel("request aborted").catch(() => {});
2461
2461
  });
2462
2462
  try {
2463
2463
  while (true) {