@mastra/deployer 1.63.3-alpha.0 → 1.64.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.
@@ -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.63.3-alpha.0"
6
+ version: "1.64.0-alpha.2"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -16,16 +16,16 @@ Read the individual reference documents for detailed explanations and code examp
16
16
 
17
17
  ### Docs
18
18
 
19
- - [Cloud providers](references/docs-deployment-cloud-providers.md) - Deploy your Mastra applications to cloud providers
20
- - [Mastra server](references/docs-deployment-mastra-server.md) - Learn how to build and deploy a Mastra server.
21
- - [Monorepo](references/docs-deployment-monorepo.md) - Learn how to deploy Mastra applications that are part of a monorepo setup
22
- - [Deploy](references/docs-deployment-overview.md) - Learn about different deployment options for your Mastra applications
23
- - [Web framework](references/docs-deployment-web-framework.md) - Learn how Mastra can be deployed when integrated with a Web Framework
24
- - [Workflow runners](references/docs-deployment-workflow-runners.md) - Deploy Mastra workflows to specialized workflow execution platforms
19
+ - [Cloud providers](references/docs-deployment-cloud-providers.md) - Compare deployment options for Mastra applications across Mastra platform and supported cloud providers, then follow the provider-specific setup guide.
20
+ - [Mastra server](references/docs-deployment-mastra-server.md) - Build and deploy a production Mastra server, configure build output and public assets, run the generated application, and manage build-time settings.
21
+ - [Monorepo](references/docs-deployment-monorepo.md) - Deploy Mastra applications from pnpm, npm, Yarn, or Bun monorepos by configuring workspace packages, build commands, dependencies, and environment variables.
22
+ - [Deploy](references/docs-deployment-overview.md) - Choose how to deploy a Mastra application as a server, framework integration, monorepo service, cloud deployment, platform project, or sandbox.
23
+ - [Web framework](references/docs-deployment-web-framework.md) - Deploy Mastra alongside a Next.js or Astro application using the framework’s standard Vercel or Netlify build and deployment workflow.
24
+ - [Workflow runners](references/docs-deployment-workflow-runners.md) - Deploy Mastra workflows to specialized orchestration platforms such as Inngest or Temporal for durable execution, retries, monitoring, and resumption.
25
25
 
26
26
  ### Reference
27
27
 
28
- - [Reference: Deployer](references/reference-deployer.md) - Documentation for the Deployer abstract class, which handles packaging and deployment of Mastra applications.
28
+ - [Reference: Deployer](references/reference-deployer.md) - The Deployer handles the deployment of standalone Mastra applications by packaging code and managing environment files while serving applications through the Hono framework.
29
29
 
30
30
 
31
31
  Read [assets/SOURCE_MAP.json](assets/SOURCE_MAP.json) for source code references.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.63.3-alpha.0",
2
+ "version": "1.64.0-alpha.2",
3
3
  "package": "@mastra/deployer",
4
4
  "exports": {},
5
5
  "modules": {}
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@mastra/deployer",
3
- "version": "1.63.3-alpha.0",
3
+ "version": "1.64.0-alpha.2",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "files": [
7
- "dist",
8
- "CHANGELOG.md"
7
+ "dist"
9
8
  ],
10
9
  "main": "dist/index.js",
11
10
  "types": "dist/index.d.ts",
@@ -112,7 +111,7 @@
112
111
  "typescript-paths": "^1.5.2",
113
112
  "ws": "^8.21.0",
114
113
  "yaml": "^2.9.0",
115
- "@mastra/server": "1.63.3-alpha.0"
114
+ "@mastra/server": "1.64.0-alpha.2"
116
115
  },
117
116
  "devDependencies": {
118
117
  "@hono/node-server": "^2.0.0",
@@ -132,13 +131,13 @@
132
131
  "typescript": "^6.0.3",
133
132
  "vitest": "4.1.10",
134
133
  "zod": "^4.4.3",
135
- "@internal/lint": "0.0.129",
136
134
  "@internal/types-builder": "0.0.104",
137
- "@mastra/agent-browser": "0.5.1",
138
- "@mastra/core": "1.63.3-alpha.0",
139
- "@mastra/server": "1.63.3-alpha.0",
140
- "@mastra/mcp": "^1.17.2",
141
- "@mastra/hono": "1.7.6-alpha.0"
135
+ "@internal/lint": "0.0.129",
136
+ "@mastra/agent-browser": "0.5.2-alpha.0",
137
+ "@mastra/hono": "1.7.6-alpha.2",
138
+ "@mastra/mcp": "^1.17.3-alpha.0",
139
+ "@mastra/server": "1.64.0-alpha.2",
140
+ "@mastra/core": "1.64.0-alpha.2"
142
141
  },
143
142
  "peerDependencies": {
144
143
  "@mastra/core": ">=1.50.0-0 <2.0.0-0"