@mastra/deployer 1.23.0-alpha.9 → 1.23.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,19 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 1.23.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed `mastra build` so deploy output keeps its installed dependencies, preventing `mastra start` and `wrangler dev` from failing on missing packages. ([#15077](https://github.com/mastra-ai/mastra/pull/15077))
8
+
9
+ - Added `mastra studio deploy` command for deploying studio to the Mastra platform. Includes `deploy`, `deploy list`, `deploy status`, `deploy logs`, and `projects` subcommands. Also generates a `package-lock.json` during build for faster deploys. ([#15067](https://github.com/mastra-ai/mastra/pull/15067))
10
+
11
+ - Fixed `mastra build` hanging sporadically during dependency installation when using bun. The child process stdin was left as an open pipe, causing bun to block when it attempted to read from stdin. Also fixed a potential crash (ERR_STREAM_WRITE_AFTER_END) when both stdout and stderr piped to a shared stream. ([#14876](https://github.com/mastra-ai/mastra/pull/14876))
12
+
13
+ - Updated dependencies [[`f32b9e1`](https://github.com/mastra-ai/mastra/commit/f32b9e115a3c754d1c8cfa3f4256fba87b09cfb7), [`7d6f521`](https://github.com/mastra-ai/mastra/commit/7d6f52164d0cca099f0b07cb2bba334360f1c8ab), [`a50d220`](https://github.com/mastra-ai/mastra/commit/a50d220b01ecbc5644d489a3d446c3bd4ab30245), [`665477b`](https://github.com/mastra-ai/mastra/commit/665477bc104fd52cfef8e7610d7664781a70c220), [`4cc2755`](https://github.com/mastra-ai/mastra/commit/4cc2755a7194cb08720ff2ab4dffb4b4a5103dfd), [`ac7baf6`](https://github.com/mastra-ai/mastra/commit/ac7baf66ef1db15e03975ef4ebb02724f015a391), [`ed425d7`](https://github.com/mastra-ai/mastra/commit/ed425d78e7c66cbda8209fee910856f98c6c6b82), [`1371703`](https://github.com/mastra-ai/mastra/commit/1371703835080450ef3f9aea58059a95d0da2e5a), [`0df8321`](https://github.com/mastra-ai/mastra/commit/0df832196eeb2450ab77ce887e8553abdd44c5a6), [`531973a`](https://github.com/mastra-ai/mastra/commit/531973a13b931f957bf981400018bbf277db252c), [`98f8a8b`](https://github.com/mastra-ai/mastra/commit/98f8a8bdf5761b9982f3ad3acbe7f1cc3efa71f3), [`ba6f7e9`](https://github.com/mastra-ai/mastra/commit/ba6f7e9086d8281393f2acae60fda61de3bff1f9), [`ba6f7e9`](https://github.com/mastra-ai/mastra/commit/ba6f7e9086d8281393f2acae60fda61de3bff1f9), [`7eb2596`](https://github.com/mastra-ai/mastra/commit/7eb25960d607e07468c9a10c5437abd2deaf1e9a), [`4ed04d1`](https://github.com/mastra-ai/mastra/commit/4ed04d19cf3e98f4e93ded5d2732f759535854f3), [`1805ddc`](https://github.com/mastra-ai/mastra/commit/1805ddc9c9b3b14b63749735a13c05a45af43a80), [`fff91cf`](https://github.com/mastra-ai/mastra/commit/fff91cf914de0e731578aacebffdeebef82f0440), [`61109b3`](https://github.com/mastra-ai/mastra/commit/61109b34feb0e38d54bee4b8ca83eb7345b1d557), [`5c68a70`](https://github.com/mastra-ai/mastra/commit/5c68a70a5a8983daae1299f45bbbdf5f64b2adbf), [`33f1ead`](https://github.com/mastra-ai/mastra/commit/33f1eadfa19c86953f593478e5fa371093b33779)]:
14
+ - @mastra/core@1.23.0
15
+ - @mastra/server@1.23.0
16
+
3
17
  ## 1.23.0-alpha.9
4
18
 
5
19
  ### 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.23.0-alpha.9"
6
+ version: "1.23.0"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.23.0-alpha.9",
2
+ "version": "1.23.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.23.0-alpha.9",
3
+ "version": "1.23.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "files": [
@@ -113,7 +113,7 @@
113
113
  "tinyglobby": "^0.2.15",
114
114
  "typescript-paths": "^1.5.1",
115
115
  "ws": "^8.18.0",
116
- "@mastra/server": "1.23.0-alpha.9"
116
+ "@mastra/server": "1.23.0"
117
117
  },
118
118
  "devDependencies": {
119
119
  "@hono/node-server": "^1.19.11",
@@ -133,13 +133,13 @@
133
133
  "typescript": "^5.9.3",
134
134
  "vitest": "4.0.18",
135
135
  "zod": "^4.3.6",
136
- "@internal/lint": "0.0.79",
137
- "@internal/types-builder": "0.0.54",
138
- "@mastra/core": "1.23.0-alpha.9",
139
- "@mastra/hono": "1.4.1-alpha.9",
140
- "@mastra/mcp": "^1.4.1",
141
136
  "@mastra/agent-browser": "0.1.0",
142
- "@mastra/server": "1.23.0-alpha.9"
137
+ "@internal/types-builder": "0.0.55",
138
+ "@mastra/hono": "1.4.1",
139
+ "@mastra/core": "1.23.0",
140
+ "@internal/lint": "0.0.80",
141
+ "@mastra/mcp": "^1.4.1",
142
+ "@mastra/server": "1.23.0"
143
143
  },
144
144
  "peerDependencies": {
145
145
  "@mastra/core": ">=1.0.0-0 <2.0.0-0",