@mastra/deployer 1.13.0-alpha.0 → 1.13.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 +39 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @mastra/deployer
|
|
2
2
|
|
|
3
|
+
## 1.13.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 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))
|
|
8
|
+
|
|
9
|
+
- 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))
|
|
10
|
+
|
|
11
|
+
- Add dynamicPackages bundler config for runtime-loaded packages and auto-detect pino ([#11779](https://github.com/mastra-ai/mastra/pull/11779))
|
|
12
|
+
|
|
13
|
+
Adds a new `dynamicPackages` bundler config option for packages that are loaded
|
|
14
|
+
dynamically at runtime and cannot be detected by static analysis (e.g.,
|
|
15
|
+
`pino.transport({ target: "pino-opentelemetry-transport" })`).
|
|
16
|
+
|
|
17
|
+
**Usage:**
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
import { Mastra } from '@mastra/core';
|
|
21
|
+
|
|
22
|
+
export const mastra = new Mastra({
|
|
23
|
+
bundler: {
|
|
24
|
+
dynamicPackages: ['my-custom-transport', 'some-plugin'],
|
|
25
|
+
},
|
|
26
|
+
});
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Additionally, pino transport targets are now automatically detected from the
|
|
30
|
+
bundled code, so most pino users won't need any configuration.
|
|
31
|
+
|
|
32
|
+
This keeps `externals` for its intended purpose (packages to not bundle) and
|
|
33
|
+
provides a clear mechanism for dynamic packages that need to be in the output
|
|
34
|
+
package.json.
|
|
35
|
+
|
|
36
|
+
Fixes #10893
|
|
37
|
+
|
|
38
|
+
- 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)]:
|
|
39
|
+
- @mastra/core@1.13.0
|
|
40
|
+
- @mastra/server@1.13.0
|
|
41
|
+
|
|
3
42
|
## 1.13.0-alpha.0
|
|
4
43
|
|
|
5
44
|
### Patch Changes
|
package/dist/docs/SKILL.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/deployer",
|
|
3
|
-
"version": "1.13.0
|
|
3
|
+
"version": "1.13.0",
|
|
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
|
|
114
|
+
"@mastra/server": "1.13.0"
|
|
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.
|
|
135
|
-
"@mastra/core": "1.13.0
|
|
136
|
-
"@mastra/hono": "1.2.2
|
|
137
|
-
"@mastra/mcp": "^1.2.1
|
|
138
|
-
"@mastra/server": "1.13.0
|
|
139
|
-
"@internal/types-builder": "0.0.
|
|
134
|
+
"@internal/lint": "0.0.69",
|
|
135
|
+
"@mastra/core": "1.13.0",
|
|
136
|
+
"@mastra/hono": "1.2.2",
|
|
137
|
+
"@mastra/mcp": "^1.2.1",
|
|
138
|
+
"@mastra/server": "1.13.0",
|
|
139
|
+
"@internal/types-builder": "0.0.44"
|
|
140
140
|
},
|
|
141
141
|
"peerDependencies": {
|
|
142
142
|
"@mastra/core": ">=1.0.0-0 <2.0.0-0",
|