@mastra/mcp-docs-server 0.13.2-alpha.1 → 0.13.2-alpha.3

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.
Files changed (86) hide show
  1. package/.docs/organized/changelogs/%40mastra%2Fastra.md +14 -14
  2. package/.docs/organized/changelogs/%40mastra%2Fchroma.md +14 -14
  3. package/.docs/organized/changelogs/%40mastra%2Fclickhouse.md +14 -14
  4. package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +18 -18
  5. package/.docs/organized/changelogs/%40mastra%2Fcloudflare-d1.md +14 -14
  6. package/.docs/organized/changelogs/%40mastra%2Fcloudflare.md +14 -14
  7. package/.docs/organized/changelogs/%40mastra%2Fcore.md +15 -15
  8. package/.docs/organized/changelogs/%40mastra%2Fcouchbase.md +14 -14
  9. package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloudflare.md +20 -20
  10. package/.docs/organized/changelogs/%40mastra%2Fdeployer-netlify.md +24 -24
  11. package/.docs/organized/changelogs/%40mastra%2Fdeployer-vercel.md +24 -24
  12. package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +22 -22
  13. package/.docs/organized/changelogs/%40mastra%2Fdynamodb.md +21 -21
  14. package/.docs/organized/changelogs/%40mastra%2Flance.md +13 -0
  15. package/.docs/organized/changelogs/%40mastra%2Flibsql.md +14 -14
  16. package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +17 -17
  17. package/.docs/organized/changelogs/%40mastra%2Fmcp.md +9 -9
  18. package/.docs/organized/changelogs/%40mastra%2Fmemory.md +22 -22
  19. package/.docs/organized/changelogs/%40mastra%2Fmongodb.md +14 -14
  20. package/.docs/organized/changelogs/%40mastra%2Fopensearch.md +13 -0
  21. package/.docs/organized/changelogs/%40mastra%2Fpg.md +14 -14
  22. package/.docs/organized/changelogs/%40mastra%2Fpinecone.md +14 -14
  23. package/.docs/organized/changelogs/%40mastra%2Fplayground-ui.md +27 -27
  24. package/.docs/organized/changelogs/%40mastra%2Fqdrant.md +14 -14
  25. package/.docs/organized/changelogs/%40mastra%2Fserver.md +20 -20
  26. package/.docs/organized/changelogs/%40mastra%2Fturbopuffer.md +14 -14
  27. package/.docs/organized/changelogs/%40mastra%2Fupstash.md +14 -14
  28. package/.docs/organized/changelogs/%40mastra%2Fvectorize.md +14 -14
  29. package/.docs/organized/changelogs/mastra.md +22 -22
  30. package/.docs/organized/code-examples/agent.md +182 -5
  31. package/.docs/organized/code-examples/assistant-ui.md +1 -1
  32. package/.docs/organized/code-examples/bird-checker-with-nextjs-and-eval.md +1 -1
  33. package/.docs/organized/code-examples/bird-checker-with-nextjs.md +1 -1
  34. package/.docs/organized/code-examples/crypto-chatbot.md +2 -2
  35. package/.docs/organized/code-examples/openapi-spec-writer.md +1 -1
  36. package/.docs/raw/agents/using-tools-and-mcp.mdx +3 -2
  37. package/.docs/raw/course/01-first-agent/04-project-structure.md +8 -3
  38. package/.docs/raw/course/01-first-agent/07-creating-your-agent.md +5 -3
  39. package/.docs/raw/course/01-first-agent/08-exporting-your-agent.md +20 -6
  40. package/.docs/raw/course/01-first-agent/11-creating-transactions-tool.md +5 -3
  41. package/.docs/raw/course/01-first-agent/12-connecting-tool-to-agent.md +2 -2
  42. package/.docs/raw/course/04-workflows/01-introduction-to-workflows.md +44 -0
  43. package/.docs/raw/course/04-workflows/02-understanding-steps.md +53 -0
  44. package/.docs/raw/course/04-workflows/03-creating-your-first-step.md +57 -0
  45. package/.docs/raw/course/04-workflows/04-creating-a-second-step.md +58 -0
  46. package/.docs/raw/course/04-workflows/05-chaining-steps-together.md +56 -0
  47. package/.docs/raw/course/04-workflows/06-registering-with-mastra.md +24 -0
  48. package/.docs/raw/course/04-workflows/07-using-playground.md +58 -0
  49. package/.docs/raw/course/04-workflows/08-running-workflows-programmatically.md +77 -0
  50. package/.docs/raw/course/04-workflows/09-adding-a-third-step.md +70 -0
  51. package/.docs/raw/course/04-workflows/10-updating-the-workflow.md +55 -0
  52. package/.docs/raw/course/04-workflows/11-creating-an-ai-agent.md +67 -0
  53. package/.docs/raw/course/04-workflows/12-using-agent-in-workflow.md +91 -0
  54. package/.docs/raw/course/04-workflows/13-creating-ai-enhanced-workflow.md +75 -0
  55. package/.docs/raw/course/04-workflows/14-understanding-parallel-execution.md +38 -0
  56. package/.docs/raw/course/04-workflows/15-creating-parallel-steps.md +115 -0
  57. package/.docs/raw/course/04-workflows/16-building-parallel-workflow.md +100 -0
  58. package/.docs/raw/course/04-workflows/17-testing-parallel-performance.md +40 -0
  59. package/.docs/raw/course/04-workflows/18-understanding-conditional-branching.md +58 -0
  60. package/.docs/raw/course/04-workflows/19-creating-conditional-steps.md +128 -0
  61. package/.docs/raw/course/04-workflows/20-building-conditional-workflow.md +60 -0
  62. package/.docs/raw/course/04-workflows/21-testing-conditional-logic.md +58 -0
  63. package/.docs/raw/course/04-workflows/22-conclusion.md +58 -0
  64. package/.docs/raw/deployment/cloud-providers/digital-ocean.mdx +111 -0
  65. package/.docs/raw/deployment/cloud-providers/index.mdx +15 -0
  66. package/.docs/raw/memory/working-memory.mdx +56 -0
  67. package/.docs/raw/networks-vnext/complex-task-execution.mdx +137 -0
  68. package/.docs/raw/networks-vnext/overview.mdx +85 -0
  69. package/.docs/raw/networks-vnext/single-task-execution.mdx +131 -0
  70. package/.docs/raw/reference/client-js/agents.mdx +41 -0
  71. package/.docs/raw/reference/deployer/netlify.mdx +22 -68
  72. package/.docs/raw/reference/deployer/vercel.mdx +7 -77
  73. package/.docs/raw/reference/tools/mcp-client.mdx +244 -0
  74. package/.docs/raw/reference/tools/mcp-server.mdx +186 -0
  75. package/.docs/raw/reference/workflows/create-run.mdx +1 -1
  76. package/.docs/raw/reference/workflows/resume.mdx +1 -1
  77. package/.docs/raw/reference/workflows/start.mdx +1 -1
  78. package/.docs/raw/reference/workflows/stream.mdx +1 -1
  79. package/.docs/raw/reference/workflows/watch.mdx +1 -1
  80. package/.docs/raw/reference/workflows/workflow.mdx +6 -2
  81. package/.docs/raw/workflows/control-flow.mdx +42 -1
  82. package/.docs/raw/workflows/overview.mdx +73 -5
  83. package/.docs/raw/workflows/pausing-execution.mdx +1 -1
  84. package/.docs/raw/workflows/suspend-and-resume.mdx +68 -23
  85. package/.docs/raw/workflows/using-with-agents-and-tools.mdx +1 -1
  86. package/package.json +3 -3
@@ -1,5 +1,13 @@
1
1
  # @mastra/mcp
2
2
 
3
+ ## 0.10.5-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - dc93062: Add elicitation support to MCPServer and MCPClient. Also fixes connectivity issues between multiple MCPClient instances and an MCPServer.
8
+ - Updated dependencies [a8b194f]
9
+ - @mastra/core@0.10.7-alpha.4
10
+
3
11
  ## 0.10.5-alpha.1
4
12
 
5
13
  ### Patch Changes
@@ -290,13 +298,5 @@
290
298
 
291
299
  ## 0.5.0-alpha.6
292
300
 
293
- ### Patch Changes
294
-
295
- - Updated dependencies [3e9c131]
296
- - @mastra/core@0.9.4-alpha.4
297
-
298
- ## 0.5.0-alpha.5
299
-
300
- ### Patch Changes
301
301
 
302
- ... 1778 more lines hidden. See full changelog in package directory.
302
+ ... 1786 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,26 @@
1
1
  # @mastra/memory
2
2
 
3
+ ## 0.11.0-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - a8b194f: Fix double tool call for working memory
8
+ - Updated dependencies [a8b194f]
9
+ - @mastra/core@0.10.7-alpha.4
10
+
11
+ ## 0.11.0-alpha.2
12
+
13
+ ### Minor Changes
14
+
15
+ - 8a3bfd2: Update peerdeps to latest core
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [792c4c0]
20
+ - Updated dependencies [502fe05]
21
+ - Updated dependencies [4efcfa0]
22
+ - @mastra/core@0.10.7-alpha.3
23
+
3
24
  ## 0.10.5-alpha.1
4
25
 
5
26
  ### Patch Changes
@@ -277,26 +298,5 @@
277
298
  - 3cd7aee: [MASTRA-3439] Working Memory tool call fix: Updated saveMessages to filter out workingmemory content from messages, rather than skip message completely
278
299
  - Updated dependencies [f53a6ac]
279
300
  - Updated dependencies [eabdcd9]
280
- - Updated dependencies [90be034]
281
- - Updated dependencies [99f050a]
282
- - Updated dependencies [d0ee3c6]
283
- - Updated dependencies [23f258c]
284
- - Updated dependencies [2672a05]
285
- - @mastra/core@0.9.5-alpha.0
286
-
287
- ## 0.3.4
288
-
289
- ### Patch Changes
290
301
 
291
- - Updated dependencies [396be50]
292
- - Updated dependencies [ab80e7e]
293
- - Updated dependencies [c3bd795]
294
- - Updated dependencies [da082f8]
295
- - Updated dependencies [a5810ce]
296
- - Updated dependencies [3e9c131]
297
- - Updated dependencies [3171b5b]
298
- - Updated dependencies [973e5ac]
299
- - Updated dependencies [daf942f]
300
- - Updated dependencies [0b8b868]
301
-
302
- ... 2139 more lines hidden. See full changelog in package directory.
302
+ ... 2160 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,18 @@
1
1
  # @mastra/mongodb
2
2
 
3
+ ## 0.12.0-alpha.3
4
+
5
+ ### Minor Changes
6
+
7
+ - 8a3bfd2: Update peerdeps to latest core
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [792c4c0]
12
+ - Updated dependencies [502fe05]
13
+ - Updated dependencies [4efcfa0]
14
+ - @mastra/core@0.10.7-alpha.3
15
+
3
16
  ## 0.11.1-alpha.2
4
17
 
5
18
  ### Patch Changes
@@ -285,18 +298,5 @@
285
298
  ### Patch Changes
286
299
 
287
300
  - d0ee3c6: Change all public functions and constructors in vector stores to use named args and prepare to phase out positional args
288
- - Updated dependencies [f53a6ac]
289
- - Updated dependencies [eabdcd9]
290
- - Updated dependencies [90be034]
291
- - Updated dependencies [99f050a]
292
- - Updated dependencies [d0ee3c6]
293
- - Updated dependencies [23f258c]
294
- - Updated dependencies [2672a05]
295
- - @mastra/core@0.9.5-alpha.0
296
-
297
- ## 0.0.5
298
-
299
- ### Patch Changes
300
-
301
301
 
302
- ... 274 more lines hidden. See full changelog in package directory.
302
+ ... 287 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,18 @@
1
1
  # @mastra/opensearch
2
2
 
3
+ ## 0.11.0-alpha.2
4
+
5
+ ### Minor Changes
6
+
7
+ - 8a3bfd2: Update peerdeps to latest core
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [792c4c0]
12
+ - Updated dependencies [502fe05]
13
+ - Updated dependencies [4efcfa0]
14
+ - @mastra/core@0.10.7-alpha.3
15
+
3
16
  ## 0.10.4-alpha.1
4
17
 
5
18
  ### Patch Changes
@@ -1,5 +1,18 @@
1
1
  # @mastra/pg
2
2
 
3
+ ## 0.12.0-alpha.3
4
+
5
+ ### Minor Changes
6
+
7
+ - 8a3bfd2: Update peerdeps to latest core
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [792c4c0]
12
+ - Updated dependencies [502fe05]
13
+ - Updated dependencies [4efcfa0]
14
+ - @mastra/core@0.10.7-alpha.3
15
+
3
16
  ## 0.11.1-alpha.2
4
17
 
5
18
  ### Patch Changes
@@ -286,17 +299,4 @@
286
299
 
287
300
  ## 0.4.0-alpha.1
288
301
 
289
- ### Minor Changes
290
-
291
- - 83da932: Move @mastra/core to peerdeps
292
-
293
- ### Patch Changes
294
-
295
- - b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
296
- - a7292b0: BREAKING(@mastra/core, all vector stores): Vector store breaking changes (remove deprecated functions and positional arguments)
297
- - Updated dependencies [b3a3d63]
298
- - Updated dependencies [344f453]
299
- - Updated dependencies [0a3ae6d]
300
- - Updated dependencies [95911be]
301
-
302
- ... 1606 more lines hidden. See full changelog in package directory.
302
+ ... 1619 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,18 @@
1
1
  # @mastra/pinecone
2
2
 
3
+ ## 0.11.0-alpha.1
4
+
5
+ ### Minor Changes
6
+
7
+ - 8a3bfd2: Update peerdeps to latest core
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [792c4c0]
12
+ - Updated dependencies [502fe05]
13
+ - Updated dependencies [4efcfa0]
14
+ - @mastra/core@0.10.7-alpha.3
15
+
3
16
  ## 0.10.3-alpha.0
4
17
 
5
18
  ### Patch Changes
@@ -286,17 +299,4 @@
286
299
 
287
300
  ### Patch Changes
288
301
 
289
- - Updated dependencies [ccef9f9]
290
- - Updated dependencies [51e6923]
291
- - @mastra/core@0.9.2-alpha.4
292
-
293
- ## 0.2.11-alpha.3
294
-
295
- ### Patch Changes
296
-
297
- - Updated dependencies [967b41c]
298
- - Updated dependencies [4155f47]
299
- - Updated dependencies [17826a9]
300
- - @mastra/core@0.9.2-alpha.3
301
-
302
- ... 1563 more lines hidden. See full changelog in package directory.
302
+ ... 1576 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,31 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 5.1.7-alpha.5
4
+
5
+ ### Patch Changes
6
+
7
+ - d569c16: dependencies updates:
8
+ - Updated dependency [`react-code-block@1.1.3` ↗︎](https://www.npmjs.com/package/react-code-block/v/1.1.3) (from `1.1.1`, in `dependencies`)
9
+
10
+ ## 5.1.7-alpha.4
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [a8b194f]
15
+ - @mastra/core@0.10.7-alpha.4
16
+ - @mastra/client-js@0.10.6-alpha.4
17
+
18
+ ## 5.1.7-alpha.3
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [18a5d59]
23
+ - Updated dependencies [792c4c0]
24
+ - Updated dependencies [502fe05]
25
+ - Updated dependencies [4efcfa0]
26
+ - @mastra/client-js@0.10.6-alpha.3
27
+ - @mastra/core@0.10.7-alpha.3
28
+
3
29
  ## 5.1.7-alpha.2
4
30
 
5
31
  ### Patch Changes
@@ -273,30 +299,4 @@
273
299
 
274
300
  - e719504: don't start posthog when the browser is Brave
275
301
 
276
- ## 5.1.4-alpha.1
277
-
278
- ### Patch Changes
279
-
280
- - 1ccccff: dependencies updates:
281
- - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
282
- - 1ccccff: dependencies updates:
283
- - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
284
- - Updated dependencies [1ccccff]
285
- - Updated dependencies [1ccccff]
286
- - Updated dependencies [f6fd25f]
287
- - Updated dependencies [dffb67b]
288
- - Updated dependencies [f1309d3]
289
- - Updated dependencies [f7f8293]
290
- - @mastra/client-js@0.10.3-alpha.1
291
- - @mastra/core@0.10.4-alpha.1
292
-
293
- ## 5.1.4-alpha.0
294
-
295
- ### Patch Changes
296
-
297
- - 5c68759: Update vite to fix CVE-2025-31125
298
- - 8f60de4: fix workflow output when the schema is a primitive
299
- - Updated dependencies [d1ed912]
300
- - Updated dependencies [f1f1f1b]
301
-
302
- ... 1630 more lines hidden. See full changelog in package directory.
302
+ ... 1656 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,18 @@
1
1
  # @mastra/qdrant
2
2
 
3
+ ## 0.11.0-alpha.1
4
+
5
+ ### Minor Changes
6
+
7
+ - 8a3bfd2: Update peerdeps to latest core
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [792c4c0]
12
+ - Updated dependencies [502fe05]
13
+ - Updated dependencies [4efcfa0]
14
+ - @mastra/core@0.10.7-alpha.3
15
+
3
16
  ## 0.10.4-alpha.0
4
17
 
5
18
  ### Patch Changes
@@ -285,18 +298,5 @@
285
298
  - Updated dependencies [7eeb2bc]
286
299
  - Updated dependencies [b804723]
287
300
  - Updated dependencies [8607972]
288
- - Updated dependencies [ccef9f9]
289
- - Updated dependencies [0097d50]
290
- - Updated dependencies [7eeb2bc]
291
- - Updated dependencies [17826a9]
292
- - Updated dependencies [7d8b7c7]
293
- - Updated dependencies [fba031f]
294
- - Updated dependencies [3a5f1e1]
295
- - Updated dependencies [51e6923]
296
- - Updated dependencies [8398d89]
297
- - @mastra/core@0.9.2
298
-
299
- ## 0.2.12-alpha.6
300
-
301
301
 
302
- ... 1594 more lines hidden. See full changelog in package directory.
302
+ ... 1607 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,24 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 0.10.7-alpha.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [a8b194f]
8
+ - @mastra/core@0.10.7-alpha.4
9
+
10
+ ## 0.10.7-alpha.3
11
+
12
+ ### Patch Changes
13
+
14
+ - 502fe05: createRun() -> createRunAsync()
15
+ - 4afab04: fix: getAgentsHandler return type
16
+ - 10a4f10: Cancel agent generate/stream when request aborts
17
+ - Updated dependencies [792c4c0]
18
+ - Updated dependencies [502fe05]
19
+ - Updated dependencies [4efcfa0]
20
+ - @mastra/core@0.10.7-alpha.3
21
+
3
22
  ## 0.10.7-alpha.2
4
23
 
5
24
  ### Patch Changes
@@ -280,23 +299,4 @@
280
299
 
281
300
  ### Patch Changes
282
301
 
283
- - 422ee9e: Fix a2a getTask to be undefined
284
- - Updated dependencies [ab5adbe]
285
- - Updated dependencies [195c428]
286
- - Updated dependencies [f73e11b]
287
- - @mastra/core@0.10.2-alpha.3
288
-
289
- ## 0.10.2-alpha.2
290
-
291
- ### Patch Changes
292
-
293
- - f0d559f: Fix peerdeps for alpha channel
294
- - a0ebc3f: Do not throw on lack of storage
295
- - Updated dependencies [1e8bb40]
296
- - @mastra/core@0.10.2-alpha.2
297
-
298
- ## 0.10.2-alpha.1
299
-
300
- ### Patch Changes
301
-
302
- ... 2095 more lines hidden. See full changelog in package directory.
302
+ ... 2114 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,18 @@
1
1
  # @mastra/turbopuffer
2
2
 
3
+ ## 0.11.0-alpha.1
4
+
5
+ ### Minor Changes
6
+
7
+ - 8a3bfd2: Update peerdeps to latest core
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [792c4c0]
12
+ - Updated dependencies [502fe05]
13
+ - Updated dependencies [4efcfa0]
14
+ - @mastra/core@0.10.7-alpha.3
15
+
3
16
  ## 0.10.4-alpha.0
4
17
 
5
18
  ### Patch Changes
@@ -285,18 +298,5 @@
285
298
  - Updated dependencies [8607972]
286
299
  - Updated dependencies [ccef9f9]
287
300
  - Updated dependencies [0097d50]
288
- - Updated dependencies [7eeb2bc]
289
- - Updated dependencies [17826a9]
290
- - Updated dependencies [7d8b7c7]
291
- - Updated dependencies [fba031f]
292
- - Updated dependencies [3a5f1e1]
293
- - Updated dependencies [51e6923]
294
- - Updated dependencies [8398d89]
295
- - @mastra/core@0.9.2
296
-
297
- ## 0.0.13-alpha.6
298
-
299
- ### Patch Changes
300
-
301
301
 
302
- ... 641 more lines hidden. See full changelog in package directory.
302
+ ... 654 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,18 @@
1
1
  # @mastra/upstash
2
2
 
3
+ ## 0.12.0-alpha.3
4
+
5
+ ### Minor Changes
6
+
7
+ - 8a3bfd2: Update peerdeps to latest core
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [792c4c0]
12
+ - Updated dependencies [502fe05]
13
+ - Updated dependencies [4efcfa0]
14
+ - @mastra/core@0.10.7-alpha.3
15
+
3
16
  ## 0.11.1-alpha.2
4
17
 
5
18
  ### Patch Changes
@@ -285,18 +298,5 @@
285
298
  - Updated dependencies [90be034]
286
299
  - Updated dependencies [99f050a]
287
300
  - Updated dependencies [d0ee3c6]
288
- - Updated dependencies [b2ae5aa]
289
- - Updated dependencies [23f258c]
290
- - Updated dependencies [a7292b0]
291
- - Updated dependencies [0dcb9f0]
292
- - Updated dependencies [2672a05]
293
- - @mastra/core@0.10.0
294
-
295
- ## 0.4.0-alpha.1
296
-
297
- ### Minor Changes
298
-
299
- - 83da932: Move @mastra/core to peerdeps
300
-
301
301
 
302
- ... 1547 more lines hidden. See full changelog in package directory.
302
+ ... 1560 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,18 @@
1
1
  # @mastra/vectorize
2
2
 
3
+ ## 0.11.0-alpha.1
4
+
5
+ ### Minor Changes
6
+
7
+ - 8a3bfd2: Update peerdeps to latest core
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [792c4c0]
12
+ - Updated dependencies [502fe05]
13
+ - Updated dependencies [4efcfa0]
14
+ - @mastra/core@0.10.7-alpha.3
15
+
3
16
  ## 0.10.3-alpha.0
4
17
 
5
18
  ### Patch Changes
@@ -285,18 +298,5 @@
285
298
  - Updated dependencies [6052aa6]
286
299
  - Updated dependencies [7d8b7c7]
287
300
  - Updated dependencies [3a5f1e1]
288
- - Updated dependencies [8398d89]
289
- - @mastra/core@0.9.2-alpha.6
290
-
291
- ## 0.2.8-alpha.5
292
-
293
- ### Patch Changes
294
-
295
- - Updated dependencies [3d2fb5c]
296
- - Updated dependencies [7eeb2bc]
297
- - Updated dependencies [8607972]
298
- - Updated dependencies [7eeb2bc]
299
- - Updated dependencies [fba031f]
300
- - @mastra/core@0.9.2-alpha.5
301
301
 
302
- ... 1584 more lines hidden. See full changelog in package directory.
302
+ ... 1597 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,26 @@
1
1
  # mastra
2
2
 
3
+ ## 0.10.7-alpha.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [a8b194f]
8
+ - Updated dependencies [dc93062]
9
+ - @mastra/core@0.10.7-alpha.4
10
+ - @mastra/mcp@0.10.5-alpha.2
11
+ - @mastra/deployer@0.10.7-alpha.4
12
+
13
+ ## 0.10.7-alpha.3
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [792c4c0]
18
+ - Updated dependencies [502fe05]
19
+ - Updated dependencies [10a4f10]
20
+ - Updated dependencies [4efcfa0]
21
+ - @mastra/core@0.10.7-alpha.3
22
+ - @mastra/deployer@0.10.7-alpha.3
23
+
3
24
  ## 0.10.7-alpha.2
4
25
 
5
26
  ### Patch Changes
@@ -277,26 +298,5 @@
277
298
  - Updated dependencies [9597ee5]
278
299
  - Updated dependencies [f9816ae]
279
300
  - Updated dependencies [82090c1]
280
- - Updated dependencies [69f6101]
281
- - Updated dependencies [1b443fd]
282
- - Updated dependencies [ce97900]
283
- - Updated dependencies [fc579cd]
284
- - Updated dependencies [514fdde]
285
- - Updated dependencies [f1309d3]
286
- - Updated dependencies [bebd27c]
287
- - Updated dependencies [14a2566]
288
- - Updated dependencies [f7f8293]
289
- - Updated dependencies [48eddb9]
290
- - Updated dependencies [66f4424]
291
- - @mastra/core@0.10.4
292
- - @mastra/deployer@0.10.4
293
- - @mastra/loggers@0.10.2
294
- - @mastra/mcp@0.10.3
295
-
296
- ## 0.10.4-alpha.5
297
-
298
- ### Patch Changes
299
-
300
- - 4c4ee43: [fix] recreate resizable sidebar on workflow
301
301
 
302
- ... 3949 more lines hidden. See full changelog in package directory.
302
+ ... 3970 more lines hidden. See full changelog in package directory.