@mastra/deployer 1.54.0 → 1.55.0-alpha.2

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,29 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 1.55.0-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`55c9e24`](https://github.com/mastra-ai/mastra/commit/55c9e248c27c1d72b5bb7e94ea6b8a3999eee49f), [`7a34274`](https://github.com/mastra-ai/mastra/commit/7a34274124c156b7303a18fb6d749f9f0b4b9bf8), [`07f5b4b`](https://github.com/mastra-ai/mastra/commit/07f5b4ba9d608d88865030732e580298296adf99)]:
8
+ - @mastra/core@1.55.0-alpha.2
9
+ - @mastra/server@1.55.0-alpha.2
10
+
11
+ ## 1.55.0-alpha.1
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`ba369f2`](https://github.com/mastra-ai/mastra/commit/ba369f2a0aaf998da0d6aa033d26f64f96bef8ac), [`dcfed93`](https://github.com/mastra-ai/mastra/commit/dcfed93e1e256c6abfa792cbb7ca836f5d0e8638), [`2876e15`](https://github.com/mastra-ai/mastra/commit/2876e15b4d2f616a3bc1ed3af57d546c268384ce), [`598080f`](https://github.com/mastra-ai/mastra/commit/598080f224edb3f0f5b801035b067fac50a56a03)]:
16
+ - @mastra/core@1.55.0-alpha.1
17
+ - @mastra/server@1.55.0-alpha.1
18
+
19
+ ## 1.55.0-alpha.0
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [[`3f472b4`](https://github.com/mastra-ai/mastra/commit/3f472b468892a1ff14ccb43cc0343b86f7d8fd7d), [`35b929b`](https://github.com/mastra-ai/mastra/commit/35b929b7abc3d20d85c7985880960ac2d04a6c86), [`9b3626a`](https://github.com/mastra-ai/mastra/commit/9b3626aeb1d16fcd34b0a8e94c114ddb80a3b240)]:
24
+ - @mastra/core@1.55.0-alpha.0
25
+ - @mastra/server@1.55.0-alpha.0
26
+
3
27
  ## 1.54.0
4
28
 
5
29
  ### 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.54.0"
6
+ version: "1.55.0-alpha.2"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.54.0",
2
+ "version": "1.55.0-alpha.2",
3
3
  "package": "@mastra/deployer",
4
4
  "exports": {},
5
5
  "modules": {}
@@ -80,7 +80,7 @@ export const mastra = new Mastra({
80
80
  })
81
81
  ```
82
82
 
83
- The value of each option can come from a variable, import, or function call. The option itself must remain a direct property. Do not hide build-time options behind a factory call or an object spread:
83
+ The value of each option can come from a variable, import, or function call. The option itself must remain a direct property. Don't hide build-time options behind a factory call or an object spread:
84
84
 
85
85
  ```typescript
86
86
  const options = {
@@ -32,7 +32,7 @@ Read about [monorepo deployment](https://mastra.ai/docs/deployment/monorepo).
32
32
  The [Mastra platform](https://mastra.ai/docs/mastra-platform/overview) provides three products for deploying, monitoring, and managing AI applications built with the Mastra framework:
33
33
 
34
34
  - [**Observability**](https://mastra.ai/docs/mastra-platform/observability): A standalone hosted product for searchable traces, logs, and metrics across Mastra projects and deploys
35
- - [**Studio**](https://mastra.ai/docs/mastra-platform/studio): A hosted visual environment for testing agents, running workflows, and inspecting traces
35
+ - [**Studio**](https://mastra.ai/docs/mastra-platform/studio): A hosted visual environment for testing agents and running workflows, plus inspecting traces
36
36
  - [**Server**](https://mastra.ai/docs/mastra-platform/server): A production deployment target that runs your Mastra application as an API server
37
37
 
38
38
  Learn more in the [Mastra platform overview](https://mastra.ai/docs/mastra-platform/overview).
@@ -72,4 +72,8 @@ Use these guides when adding Mastra to an existing Next.js or Astro application.
72
72
 
73
73
  Mastra workflows run using the built-in execution engine by default. For production workloads requiring managed infrastructure, workflows can also be deployed to specialized platforms like [Inngest](https://www.inngest.com) that provide step memoization, automatic retries, and real-time monitoring.
74
74
 
75
- Visit the [Workflow Runners guide](https://mastra.ai/docs/deployment/workflow-runners) for execution options and the [Inngest deployment guide](https://mastra.ai/guides/deployment/inngest) for setup instructions.
75
+ Visit the [Workflow Runners guide](https://mastra.ai/docs/deployment/workflow-runners) for execution options and the [Inngest deployment guide](https://mastra.ai/guides/deployment/inngest) for setup instructions.
76
+
77
+ ## Workers
78
+
79
+ For production deployments, Mastra can run workflow orchestration, cron scheduling, and background tool execution in dedicated worker processes separate from the API server. This lets you scale each concern independently and isolate failures. See [Workers](https://mastra.ai/docs/deployment/workers) for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/deployer",
3
- "version": "1.54.0",
3
+ "version": "1.55.0-alpha.2",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "files": [
@@ -112,7 +112,7 @@
112
112
  "tinyglobby": "^0.2.17",
113
113
  "typescript-paths": "^1.5.2",
114
114
  "ws": "^8.21.0",
115
- "@mastra/server": "1.54.0"
115
+ "@mastra/server": "1.55.0-alpha.2"
116
116
  },
117
117
  "devDependencies": {
118
118
  "@hono/node-server": "^1.19.14",
@@ -133,12 +133,12 @@
133
133
  "vitest": "4.1.10",
134
134
  "zod": "^4.4.3",
135
135
  "@internal/lint": "0.0.118",
136
- "@mastra/core": "1.54.0",
136
+ "@internal/types-builder": "0.0.93",
137
137
  "@mastra/agent-browser": "0.4.1",
138
- "@mastra/hono": "1.5.11",
139
- "@mastra/server": "1.54.0",
138
+ "@mastra/hono": "1.5.12-alpha.2",
140
139
  "@mastra/mcp": "^1.15.0",
141
- "@internal/types-builder": "0.0.93"
140
+ "@mastra/server": "1.55.0-alpha.2",
141
+ "@mastra/core": "1.55.0-alpha.2"
142
142
  },
143
143
  "peerDependencies": {
144
144
  "@mastra/core": ">=1.50.0-0 <2.0.0-0"