@mastra/deployer 1.13.0-alpha.0 → 1.13.1

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,52 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 1.13.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`4cd4544`](https://github.com/mastra-ai/mastra/commit/4cd45448d66f98076fc63aa430dd1a591a993ac4), [`205e76c`](https://github.com/mastra-ai/mastra/commit/205e76c3ba652205dafb037f50a4a8eea73f6736)]:
8
+ - @mastra/server@1.13.1
9
+ - @mastra/core@1.13.1
10
+
11
+ ## 1.13.0
12
+
13
+ ### Patch Changes
14
+
15
+ - Bump esbuild from ^0.25.10 to ^0.27.3 to resolve Go stdlib CVEs (CVE-2025-22871, CVE-2025-61729) flagged by npm audit in consumer projects. ([#13124](https://github.com/mastra-ai/mastra/pull/13124))
16
+
17
+ - Fixed Agent-to-Agent requests to return a clear error message when the agent ID parameter is missing. ([#14229](https://github.com/mastra-ai/mastra/pull/14229))
18
+
19
+ - Add dynamicPackages bundler config for runtime-loaded packages and auto-detect pino ([#11779](https://github.com/mastra-ai/mastra/pull/11779))
20
+
21
+ Adds a new `dynamicPackages` bundler config option for packages that are loaded
22
+ dynamically at runtime and cannot be detected by static analysis (e.g.,
23
+ `pino.transport({ target: "pino-opentelemetry-transport" })`).
24
+
25
+ **Usage:**
26
+
27
+ ```typescript
28
+ import { Mastra } from '@mastra/core';
29
+
30
+ export const mastra = new Mastra({
31
+ bundler: {
32
+ dynamicPackages: ['my-custom-transport', 'some-plugin'],
33
+ },
34
+ });
35
+ ```
36
+
37
+ Additionally, pino transport targets are now automatically detected from the
38
+ bundled code, so most pino users won't need any configuration.
39
+
40
+ This keeps `externals` for its intended purpose (packages to not bundle) and
41
+ provides a clear mechanism for dynamic packages that need to be in the output
42
+ package.json.
43
+
44
+ Fixes #10893
45
+
46
+ - Updated dependencies [[`ea86967`](https://github.com/mastra-ai/mastra/commit/ea86967449426e0a3673253bd1c2c052a99d970d), [`db21c21`](https://github.com/mastra-ai/mastra/commit/db21c21a6ae5f33539262cc535342fa8757eb359), [`11f5dbe`](https://github.com/mastra-ai/mastra/commit/11f5dbe9a1e7ad8ef3b1ea34fb4a9fa3631d1587), [`ff39787`](https://github.com/mastra-ai/mastra/commit/ff39787482b44c9fb45402f8152cd5dbb31a046e), [`6751354`](https://github.com/mastra-ai/mastra/commit/67513544d1a64be891d9de7624d40aadc895d56e), [`b12501e`](https://github.com/mastra-ai/mastra/commit/b12501e815006f318108b62676f58ac3a8147683), [`c958cd3`](https://github.com/mastra-ai/mastra/commit/c958cd36627c1eea122ec241b2b15492977a263a), [`9eb9486`](https://github.com/mastra-ai/mastra/commit/9eb9486a475497f650ce14d210ba7c4bc119e036), [`86f2426`](https://github.com/mastra-ai/mastra/commit/86f242631d252a172d2f9f9a2ea0feb8647a76b0), [`950eb07`](https://github.com/mastra-ai/mastra/commit/950eb07b7e7354629630e218d49550fdd299c452)]:
47
+ - @mastra/core@1.13.0
48
+ - @mastra/server@1.13.0
49
+
3
50
  ## 1.13.0-alpha.0
4
51
 
5
52
  ### 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.13.0-alpha.0"
6
+ version: "1.13.1"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.13.0-alpha.0",
2
+ "version": "1.13.1",
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.13.0-alpha.0",
3
+ "version": "1.13.1",
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.13.0-alpha.0"
114
+ "@mastra/server": "1.13.1"
115
115
  },
116
116
  "devDependencies": {
117
117
  "@hono/node-server": "^1.19.9",
@@ -131,12 +131,12 @@
131
131
  "typescript": "^5.9.3",
132
132
  "vitest": "4.0.18",
133
133
  "zod": "^4.3.6",
134
- "@internal/lint": "0.0.68",
135
- "@mastra/core": "1.13.0-alpha.0",
136
- "@mastra/hono": "1.2.2-alpha.0",
137
- "@mastra/mcp": "^1.2.1-alpha.0",
138
- "@mastra/server": "1.13.0-alpha.0",
139
- "@internal/types-builder": "0.0.43"
134
+ "@internal/lint": "0.0.70",
135
+ "@internal/types-builder": "0.0.45",
136
+ "@mastra/core": "1.13.1",
137
+ "@mastra/hono": "1.2.3",
138
+ "@mastra/mcp": "^1.2.1",
139
+ "@mastra/server": "1.13.1"
140
140
  },
141
141
  "peerDependencies": {
142
142
  "@mastra/core": ">=1.0.0-0 <2.0.0-0",