@mastra/playground-ui 6.6.0 → 6.6.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,31 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 6.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix subagent link not working in agents overview pane ([#9099](https://github.com/mastra-ai/mastra/pull/9099))
8
+
9
+ - Fix wrong MCP link in playground ([#9103](https://github.com/mastra-ai/mastra/pull/9103))
10
+
11
+ - Updated dependencies []:
12
+ - @mastra/core@0.22.1
13
+ - @mastra/client-js@0.16.3
14
+ - @mastra/react@0.0.9
15
+
16
+ ## 6.6.1-alpha.0
17
+
18
+ ### Patch Changes
19
+
20
+ - Fix subagent link not working in agents overview pane ([#9099](https://github.com/mastra-ai/mastra/pull/9099))
21
+
22
+ - Fix wrong MCP link in playground ([#9103](https://github.com/mastra-ai/mastra/pull/9103))
23
+
24
+ - Updated dependencies []:
25
+ - @mastra/core@0.22.1-alpha.0
26
+ - @mastra/client-js@0.16.3-alpha.0
27
+ - @mastra/react@0.0.9-alpha.0
28
+
3
29
  ## 6.6.0
4
30
 
5
31
  ### Minor Changes
package/dist/index.cjs.js CHANGED
@@ -13953,7 +13953,7 @@ const AgentMetadata = ({
13953
13953
  modelVersion
13954
13954
  }) => {
13955
13955
  const networkAgentsMap = agent.agents ?? {};
13956
- const networkAgents = Object.values(networkAgentsMap);
13956
+ const networkAgents = Object.keys(networkAgentsMap).map((key) => ({ ...networkAgentsMap[key], id: key }));
13957
13957
  const agentTools = agent.tools ?? {};
13958
13958
  const tools = Object.keys(agentTools).map((key) => agentTools[key]);
13959
13959
  const agentWorkflows = agent.workflows ?? {};
@@ -17867,7 +17867,7 @@ const EmptyMCPTable = () => /* @__PURE__ */ jsxRuntime.jsx("div", { className: "
17867
17867
  className: "w-full",
17868
17868
  variant: "light",
17869
17869
  as: "a",
17870
- href: "https://mastra.ai/en/docs/getting-started/mcp-docs-server",
17870
+ href: "https://mastra.ai/en/docs/tools-mcp/mcp-overview",
17871
17871
  target: "_blank",
17872
17872
  children: [
17873
17873
  /* @__PURE__ */ jsxRuntime.jsx(Icon, { children: /* @__PURE__ */ jsxRuntime.jsx(McpServerIcon, {}) }),