@mastra/deployer 1.59.0-alpha.0 → 1.59.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 +16 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/docs/references/docs-deployment-overview.md +3 -3
- package/dist/docs/references/docs-deployment-workflow-runners.md +1 -1
- package/dist/docs/references/reference-deployer.md +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @mastra/deployer
|
|
2
2
|
|
|
3
|
+
## 1.59.0-alpha.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`898bba4`](https://github.com/mastra-ai/mastra/commit/898bba46d4806dd255a44e5dc3a3d5827eaefdfe), [`f9aab1c`](https://github.com/mastra-ai/mastra/commit/f9aab1cfc3fda03238a7fd7bd8b794e07497878c), [`e31421b`](https://github.com/mastra-ai/mastra/commit/e31421bc9c11c03c6e74f447ecb5820000e2b9d7), [`aece0e7`](https://github.com/mastra-ai/mastra/commit/aece0e7cb124ae1eb1230689b887f5554b9a0bf0)]:
|
|
8
|
+
- @mastra/core@1.59.0-alpha.2
|
|
9
|
+
- @mastra/server@1.59.0-alpha.2
|
|
10
|
+
|
|
11
|
+
## 1.59.0-alpha.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [[`aa3e7be`](https://github.com/mastra-ai/mastra/commit/aa3e7be30f8addb0278ea74429f4df054517a287), [`90822db`](https://github.com/mastra-ai/mastra/commit/90822dba08fb2169c518e4a6d7f127c098eb46b8), [`3700208`](https://github.com/mastra-ai/mastra/commit/37002080c7838267803a7e579a7d58b908d62f36), [`8b7131e`](https://github.com/mastra-ai/mastra/commit/8b7131eb0407f58f5205e68fb27b81f026488f28), [`79c4f82`](https://github.com/mastra-ai/mastra/commit/79c4f8295f568752eeadf8a9b50010a7d9ec06ae)]:
|
|
16
|
+
- @mastra/core@1.59.0-alpha.1
|
|
17
|
+
- @mastra/server@1.59.0-alpha.1
|
|
18
|
+
|
|
3
19
|
## 1.59.0-alpha.0
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/docs/SKILL.md
CHANGED
|
@@ -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.59.0-alpha.
|
|
6
|
+
version: "1.59.0-alpha.2"
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
## When to use
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Deploy
|
|
4
4
|
|
|
5
|
-
Mastra applications can be deployed to any Node.js-compatible environment. You can deploy a Mastra server
|
|
5
|
+
Mastra applications can be deployed to any Node.js-compatible environment. You can deploy a Mastra server or integrate with an existing web framework. Other options include cloud providers and [Mastra platform](https://mastra.ai/docs/mastra-platform/overview) for observability, Studio, and server deployment.
|
|
6
6
|
|
|
7
7
|
## Runtime support
|
|
8
8
|
|
|
@@ -73,10 +73,10 @@ Use these guides when adding Mastra to an existing Next.js or Astro application.
|
|
|
73
73
|
|
|
74
74
|
## Workflow runners
|
|
75
75
|
|
|
76
|
-
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
|
|
76
|
+
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 and automatic retries, with real-time monitoring.
|
|
77
77
|
|
|
78
78
|
Visit the [Workflow Runners guide](https://mastra.ai/docs/deployment/workflow-runners) for execution options and the [Inngest deployment guide](https://mastra.ai/integrations/deploy/inngest) for setup instructions.
|
|
79
79
|
|
|
80
80
|
## Workers
|
|
81
81
|
|
|
82
|
-
For production deployments, Mastra can run workflow orchestration
|
|
82
|
+
For production deployments, Mastra can run workflow orchestration and cron scheduling, along with 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.
|
|
@@ -6,7 +6,7 @@ Mastra [workflows](https://mastra.ai/docs/workflows/overview) can be executed us
|
|
|
6
6
|
|
|
7
7
|
## Inngest
|
|
8
8
|
|
|
9
|
-
Inngest is a developer platform for running background workflows without managing infrastructure. Mastra workflows can be deployed to Inngest
|
|
9
|
+
Inngest is a developer platform for running background workflows without managing infrastructure. Mastra workflows can be deployed to Inngest for step memoization and automatic retries. Inngest also provides real-time monitoring and suspend/resume capabilities.
|
|
10
10
|
|
|
11
11
|
Visit the [Inngest deployment guide](https://mastra.ai/integrations/deploy/inngest) for setup instructions and the [Inngest workflow example](https://github.com/mastra-ai/mastra/tree/main/examples/inngest) for a complete implementation.
|
|
12
12
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Deployer
|
|
4
4
|
|
|
5
|
-
The Deployer handles the deployment of standalone Mastra applications by packaging code
|
|
5
|
+
The Deployer handles the deployment of standalone Mastra applications by packaging code and managing environment files while serving applications through the Hono framework. Concrete implementations must define the deploy method for specific deployment targets.
|
|
6
6
|
|
|
7
7
|
## Usage example
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/deployer",
|
|
3
|
-
"version": "1.59.0-alpha.
|
|
3
|
+
"version": "1.59.0-alpha.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"typescript-paths": "^1.5.2",
|
|
114
114
|
"ws": "^8.21.0",
|
|
115
115
|
"yaml": "^2.9.0",
|
|
116
|
-
"@mastra/server": "1.59.0-alpha.
|
|
116
|
+
"@mastra/server": "1.59.0-alpha.2"
|
|
117
117
|
},
|
|
118
118
|
"devDependencies": {
|
|
119
119
|
"@hono/node-server": "^2.0.0",
|
|
@@ -135,11 +135,11 @@
|
|
|
135
135
|
"zod": "^4.4.3",
|
|
136
136
|
"@internal/lint": "0.0.122",
|
|
137
137
|
"@internal/types-builder": "0.0.97",
|
|
138
|
+
"@mastra/mcp": "^1.16.0",
|
|
138
139
|
"@mastra/agent-browser": "0.5.1",
|
|
139
|
-
"@mastra/
|
|
140
|
-
"@mastra/
|
|
141
|
-
"@mastra/
|
|
142
|
-
"@mastra/mcp": "^1.16.0"
|
|
140
|
+
"@mastra/server": "1.59.0-alpha.2",
|
|
141
|
+
"@mastra/core": "1.59.0-alpha.2",
|
|
142
|
+
"@mastra/hono": "1.6.1-alpha.2"
|
|
143
143
|
},
|
|
144
144
|
"peerDependencies": {
|
|
145
145
|
"@mastra/core": ">=1.50.0-0 <2.0.0-0"
|