@mastra/deployer 1.15.0-alpha.3 → 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 CHANGED
@@ -1,5 +1,43 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 1.15.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Add `server.studioHost`, `server.studioProtocol`, and `server.studioPort` options for Studio in cloud deployments ([#12899](https://github.com/mastra-ai/mastra/pull/12899))
8
+
9
+ When deploying to cloud environments (e.g., Google Cloud Run), `server.host` must be `0.0.0.0` for the container to accept traffic, and the internal port often differs from the external one (e.g., 8080 internally vs 443 externally). Studio needs the actual public domain, protocol, and port to make API calls from the browser. These new options decouple the server bind configuration from the Studio API URL.
10
+
11
+ ```typescript
12
+ export const mastra = new Mastra({
13
+ server: {
14
+ host: '0.0.0.0',
15
+ port: 8080,
16
+ studioHost: 'my-app.run.app',
17
+ studioProtocol: 'https',
18
+ studioPort: 443,
19
+ },
20
+ });
21
+ ```
22
+
23
+ All three options are optional and fall back to existing behavior when not set.
24
+
25
+ ### Patch Changes
26
+
27
+ - dependencies updates: ([#14084](https://github.com/mastra-ai/mastra/pull/14084))
28
+ - Updated dependency [`@rollup/plugin-commonjs@29.0.2` ↗︎](https://www.npmjs.com/package/@rollup/plugin-commonjs/v/29.0.2) (from `29.0.0`, in `dependencies`)
29
+ - 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), [`8ccbd39`](https://github.com/mastra-ai/mastra/commit/8ccbd39f7b1e76b0894db5ac4faa398ab885cedf), [`437fb10`](https://github.com/mastra-ai/mastra/commit/437fb10ca135d37bcae6817841f91a59691509de), [`0efe12a`](https://github.com/mastra-ai/mastra/commit/0efe12a5f008a939a1aac71699486ba40138054e)]:
30
+ - @mastra/core@1.15.0
31
+ - @mastra/server@1.15.0
32
+
33
+ ## 1.15.0-alpha.4
34
+
35
+ ### Patch Changes
36
+
37
+ - Updated dependencies [[`da93115`](https://github.com/mastra-ai/mastra/commit/da931155c1a9bc63d455d3d86b4ec984db5991fe), [`0efe12a`](https://github.com/mastra-ai/mastra/commit/0efe12a5f008a939a1aac71699486ba40138054e)]:
38
+ - @mastra/core@1.15.0-alpha.4
39
+ - @mastra/server@1.15.0-alpha.4
40
+
3
41
  ## 1.15.0-alpha.3
4
42
 
5
43
  ### 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.15.0-alpha.3"
6
+ version: "1.15.0"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.15.0-alpha.3",
2
+ "version": "1.15.0",
3
3
  "package": "@mastra/deployer",
4
4
  "exports": {
5
5
  "Deps": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/deployer",
3
- "version": "1.15.0-alpha.3",
3
+ "version": "1.15.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "files": [
@@ -111,7 +111,7 @@
111
111
  "strip-json-comments": "^5.0.3",
112
112
  "tinyglobby": "^0.2.15",
113
113
  "typescript-paths": "^1.5.1",
114
- "@mastra/server": "1.15.0-alpha.3"
114
+ "@mastra/server": "1.15.0"
115
115
  },
116
116
  "devDependencies": {
117
117
  "@hono/node-server": "^1.19.11",
@@ -131,12 +131,12 @@
131
131
  "typescript": "^5.9.3",
132
132
  "vitest": "4.0.18",
133
133
  "zod": "^4.3.6",
134
- "@internal/types-builder": "0.0.47",
135
- "@internal/lint": "0.0.72",
136
- "@mastra/core": "1.15.0-alpha.3",
137
- "@mastra/hono": "1.2.6-alpha.3",
138
- "@mastra/mcp": "^1.3.1-alpha.0",
139
- "@mastra/server": "1.15.0-alpha.3"
134
+ "@internal/types-builder": "0.0.48",
135
+ "@mastra/core": "1.15.0",
136
+ "@mastra/hono": "1.2.6",
137
+ "@mastra/mcp": "^1.3.1",
138
+ "@mastra/server": "1.15.0",
139
+ "@internal/lint": "0.0.73"
140
140
  },
141
141
  "peerDependencies": {
142
142
  "@mastra/core": ">=1.0.0-0 <2.0.0-0",