@mastra/editor 0.10.1-alpha.0 → 0.10.2-alpha.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 +28 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @mastra/editor
|
|
2
2
|
|
|
3
|
+
## 0.10.2-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`d779de3`](https://github.com/mastra-ai/mastra/commit/d779de3cd9d2e7ed8110547190e2f15e786a0e41), [`1750c97`](https://github.com/mastra-ai/mastra/commit/1750c975d6179fbf6db2813b15229d4f8f23fc55), [`0e32507`](https://github.com/mastra-ai/mastra/commit/0e32507962cdfa5569b7bda5bc6fb3dd34e40b03), [`3a081c1`](https://github.com/mastra-ai/mastra/commit/3a081c1255c5ae8c99f6dad91cc612934ef6f2bd), [`fe9eacd`](https://github.com/mastra-ai/mastra/commit/fe9eacd9545a0a9d64aad31c9fa90294a425289e), [`f79df90`](https://github.com/mastra-ai/mastra/commit/f79df90e922c7985677c07d49d8fcf3afd2080c2), [`db79c86`](https://github.com/mastra-ai/mastra/commit/db79c86c60723d57e02f9636ca2611bd4515f194)]:
|
|
8
|
+
- @mastra/core@1.38.0-alpha.2
|
|
9
|
+
- @mastra/memory@1.20.1-alpha.0
|
|
10
|
+
|
|
11
|
+
## 0.10.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Added optional constructor argument support to `createBuilderAgent()` so callers can override agent defaults while the canonical `id`, `name`, and `description` are preserved. ([#17109](https://github.com/mastra-ai/mastra/pull/17109))
|
|
16
|
+
|
|
17
|
+
```ts
|
|
18
|
+
// Before — could only use the built-in defaults
|
|
19
|
+
const builder = createBuilderAgent();
|
|
20
|
+
|
|
21
|
+
// After — pass overrides while keeping the canonical identity
|
|
22
|
+
const builder = createBuilderAgent({
|
|
23
|
+
model: openai('gpt-4o'),
|
|
24
|
+
instructions: 'Custom instructions for this deployment',
|
|
25
|
+
});
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [[`21db1a4`](https://github.com/mastra-ai/mastra/commit/21db1a4b8ac058d5a4fbe38b516cc1b81e526915)]:
|
|
29
|
+
- @mastra/core@1.37.1
|
|
30
|
+
|
|
3
31
|
## 0.10.1-alpha.0
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/editor",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2-alpha.0",
|
|
4
4
|
"description": "Mastra Editor for agent management and instantiation",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"@arcadeai/arcadejs": "^2.3.0",
|
|
76
76
|
"@composio/core": "^0.6.5",
|
|
77
77
|
"@composio/mastra": "^0.6.5",
|
|
78
|
-
"@mastra/memory": "1.20.0",
|
|
78
|
+
"@mastra/memory": "1.20.1-alpha.0",
|
|
79
79
|
"@mastra/schema-compat": "1.2.10"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
@@ -85,12 +85,12 @@
|
|
|
85
85
|
"typescript": "^6.0.3",
|
|
86
86
|
"vitest": "4.1.5",
|
|
87
87
|
"zod": "^3.25.76",
|
|
88
|
-
"@internal/ai-
|
|
89
|
-
"@internal/ai-
|
|
90
|
-
"@
|
|
88
|
+
"@internal/ai-sdk-v5": "0.0.46",
|
|
89
|
+
"@internal/ai-v6": "0.0.46",
|
|
90
|
+
"@internal/ai-sdk-v4": "0.0.46",
|
|
91
|
+
"@mastra/hono": "1.4.21-alpha.2",
|
|
91
92
|
"@mastra/libsql": "1.11.1",
|
|
92
|
-
"@mastra/core": "1.
|
|
93
|
-
"@internal/ai-sdk-v4": "0.0.45",
|
|
93
|
+
"@mastra/core": "1.38.0-alpha.2",
|
|
94
94
|
"@mastra/mcp": "1.8.1"
|
|
95
95
|
},
|
|
96
96
|
"peerDependencies": {
|