@mastra/deployer 1.37.1 → 1.37.2-alpha.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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 1.37.2-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`9d87d68`](https://github.com/mastra-ai/mastra/commit/9d87d688371f5d1252ebb18d96890b51ade7de7c), [`49f8abc`](https://github.com/mastra-ai/mastra/commit/49f8abce8258e4f2f87bd326acfbdb641264a47c), [`9d87d68`](https://github.com/mastra-ai/mastra/commit/9d87d688371f5d1252ebb18d96890b51ade7de7c)]:
8
+ - @mastra/server@1.37.2-alpha.1
9
+ - @mastra/core@1.37.2-alpha.1
10
+
11
+ ## 1.37.2-alpha.0
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`07c3de7`](https://github.com/mastra-ai/mastra/commit/07c3de7f7bc418beccaea3b5e6b7f7cdda79d492)]:
16
+ - @mastra/core@1.37.2-alpha.0
17
+ - @mastra/server@1.37.2-alpha.0
18
+
3
19
  ## 1.37.1
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.37.1"
6
+ version: "1.37.2-alpha.1"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.37.1",
2
+ "version": "1.37.2-alpha.1",
3
3
  "package": "@mastra/deployer",
4
4
  "exports": {
5
5
  "Deps": {
@@ -3119,7 +3119,7 @@ var MastraServer = class extends serverAdapter.MastraServer {
3119
3119
  return streaming.stream(
3120
3120
  res,
3121
3121
  async (stream2) => {
3122
- if (streamFormat === "sse") {
3122
+ if (streamFormat === "sse" && route.sseFlushOnConnect) {
3123
3123
  await stream2.write(": connected\n\n");
3124
3124
  }
3125
3125
  const readableStream = result instanceof ReadableStream ? result : result.fullStream;