@mastra/editor 0.7.21-alpha.1 → 0.7.22-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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # @mastra/editor
2
2
 
3
+ ## 0.7.22-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`d587199`](https://github.com/mastra-ai/mastra/commit/d5871993c0371bde2b0717d6b47194755baa1443), [`4b2e4f3`](https://github.com/mastra-ai/mastra/commit/4b2e4f3bc9f5a63dcbfccfa54f9474340c3cea58)]:
8
+ - @mastra/core@1.29.2-alpha.0
9
+ - @mastra/memory@1.17.4-alpha.0
10
+
11
+ ## 0.7.21
12
+
13
+ ### Patch Changes
14
+
15
+ - Fixed template variable interpolation for arrays and objects. Previously, using {{products}} where products is an array of objects would render as [object Object],[object Object]. Now arrays and objects are automatically JSON-stringified, so {{products}} correctly renders the full JSON representation. ([#15927](https://github.com/mastra-ai/mastra/pull/15927))
16
+
17
+ - Updated dependencies [[`6db978c`](https://github.com/mastra-ai/mastra/commit/6db978c42e94e75540a504f7230086f0b5cd35f9), [`95b001f`](https://github.com/mastra-ai/mastra/commit/95b001f750af6947ad9d174cd47abffc776663a5), [`512a013`](https://github.com/mastra-ai/mastra/commit/512a013f285aa9c0aa8f08a35b2ce09f9938b017), [`e9becde`](https://github.com/mastra-ai/mastra/commit/e9becdeed9176b9f8392e557bde12b933f99cf7a), [`703a443`](https://github.com/mastra-ai/mastra/commit/703a44390c587d9c0b8ae94ec4edd8afb2a74044), [`808df1b`](https://github.com/mastra-ai/mastra/commit/808df1b39358b5f10b7317107e42b1fda7c87185)]:
18
+ - @mastra/core@1.29.1
19
+ - @mastra/memory@1.17.3
20
+
3
21
  ## 0.7.21-alpha.1
4
22
 
5
23
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -439,7 +439,7 @@ function buildWorkflow(entries, workflowId, ctx) {
439
439
  }
440
440
  const subWorkflow = buildWorkflow(branchEntries, `${workflowId}-parallel-branch-${branchIdx}`, ctx);
441
441
  return subWorkflow;
442
- }).filter(Boolean);
442
+ }).filter((s) => Boolean(s));
443
443
  if (branchSteps.length > 0) {
444
444
  workflow = workflow.parallel(branchSteps);
445
445
  workflow = workflow.map(mergeBranchOutputs);
package/dist/index.js CHANGED
@@ -391,7 +391,7 @@ function buildWorkflow(entries, workflowId, ctx) {
391
391
  }
392
392
  const subWorkflow = buildWorkflow(branchEntries, `${workflowId}-parallel-branch-${branchIdx}`, ctx);
393
393
  return subWorkflow;
394
- }).filter(Boolean);
394
+ }).filter((s) => Boolean(s));
395
395
  if (branchSteps.length > 0) {
396
396
  workflow = workflow.parallel(branchSteps);
397
397
  workflow = workflow.map(mergeBranchOutputs);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/editor",
3
- "version": "0.7.21-alpha.1",
3
+ "version": "0.7.22-alpha.0",
4
4
  "description": "Mastra Editor for agent management and instantiation",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
@@ -65,23 +65,23 @@
65
65
  "@arcadeai/arcadejs": "^2.3.0",
66
66
  "@composio/core": "^0.6.5",
67
67
  "@composio/mastra": "^0.6.5",
68
- "@mastra/memory": "1.17.3-alpha.0",
69
- "@mastra/schema-compat": "1.2.9"
68
+ "@mastra/schema-compat": "1.2.9",
69
+ "@mastra/memory": "1.17.4-alpha.0"
70
70
  },
71
71
  "devDependencies": {
72
72
  "@hono/node-server": "^1.19.11",
73
73
  "hono": "^4.12.8",
74
74
  "tsup": "^8.5.1",
75
- "typescript": "^5.9.3",
75
+ "typescript": "^6.0.3",
76
76
  "vitest": "4.1.5",
77
77
  "zod": "^3.25.76",
78
- "@internal/ai-sdk-v4": "0.0.34",
79
- "@internal/ai-sdk-v5": "0.0.34",
80
- "@internal/ai-v6": "0.0.34",
81
- "@mastra/core": "1.29.1-alpha.1",
82
- "@mastra/hono": "1.4.9-alpha.1",
78
+ "@internal/ai-sdk-v4": "0.0.35",
79
+ "@internal/ai-v6": "0.0.35",
80
+ "@mastra/core": "1.29.2-alpha.0",
81
+ "@mastra/hono": "1.4.10-alpha.0",
82
+ "@mastra/libsql": "1.9.0",
83
83
  "@mastra/mcp": "1.6.0",
84
- "@mastra/libsql": "1.9.0"
84
+ "@internal/ai-sdk-v5": "0.0.35"
85
85
  },
86
86
  "peerDependencies": {
87
87
  "@mastra/core": ">=1.7.1-0 <2.0.0-0",