@mastra/mcp-docs-server 0.13.11 → 0.13.12-alpha.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.
Files changed (73) hide show
  1. package/.docs/organized/changelogs/%40internal%2Fstorage-test-utils.md +19 -19
  2. package/.docs/organized/changelogs/%40internal%2Ftypes-builder.md +2 -0
  3. package/.docs/organized/changelogs/%40mastra%2Fchroma.md +14 -14
  4. package/.docs/organized/changelogs/%40mastra%2Fclickhouse.md +14 -14
  5. package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +42 -42
  6. package/.docs/organized/changelogs/%40mastra%2Fcloudflare-d1.md +14 -14
  7. package/.docs/organized/changelogs/%40mastra%2Fcore.md +45 -45
  8. package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloudflare.md +53 -53
  9. package/.docs/organized/changelogs/%40mastra%2Fdeployer-netlify.md +49 -49
  10. package/.docs/organized/changelogs/%40mastra%2Fdeployer-vercel.md +49 -49
  11. package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +54 -54
  12. package/.docs/organized/changelogs/%40mastra%2Fdynamodb.md +20 -20
  13. package/.docs/organized/changelogs/%40mastra%2Fevals.md +14 -14
  14. package/.docs/organized/changelogs/%40mastra%2Ffirecrawl.md +21 -21
  15. package/.docs/organized/changelogs/%40mastra%2Flance.md +22 -22
  16. package/.docs/organized/changelogs/%40mastra%2Flibsql.md +34 -34
  17. package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +41 -41
  18. package/.docs/organized/changelogs/%40mastra%2Fmcp.md +33 -33
  19. package/.docs/organized/changelogs/%40mastra%2Fmemory.md +23 -23
  20. package/.docs/organized/changelogs/%40mastra%2Fmongodb.md +20 -20
  21. package/.docs/organized/changelogs/%40mastra%2Fpg.md +37 -37
  22. package/.docs/organized/changelogs/%40mastra%2Fplayground-ui.md +49 -49
  23. package/.docs/organized/changelogs/%40mastra%2Fqdrant.md +21 -21
  24. package/.docs/organized/changelogs/%40mastra%2Frag.md +20 -20
  25. package/.docs/organized/changelogs/%40mastra%2Fschema-compat.md +8 -0
  26. package/.docs/organized/changelogs/%40mastra%2Fserver.md +44 -44
  27. package/.docs/organized/changelogs/%40mastra%2Fvoice-google-gemini-live.md +14 -0
  28. package/.docs/organized/changelogs/create-mastra.md +26 -26
  29. package/.docs/organized/changelogs/mastra.md +63 -63
  30. package/.docs/organized/code-examples/agent.md +292 -275
  31. package/.docs/raw/agents/input-processors.mdx +25 -19
  32. package/.docs/raw/agents/output-processors.mdx +376 -0
  33. package/.docs/raw/agents/overview.mdx +165 -188
  34. package/.docs/raw/agents/streaming.mdx +11 -5
  35. package/.docs/raw/community/contributing-templates.mdx +1 -1
  36. package/.docs/raw/deployment/cloud-providers/amazon-ec2.mdx +9 -9
  37. package/.docs/raw/deployment/cloud-providers/aws-lambda.mdx +27 -33
  38. package/.docs/raw/deployment/cloud-providers/azure-app-services.mdx +12 -12
  39. package/.docs/raw/deployment/cloud-providers/digital-ocean.mdx +17 -17
  40. package/.docs/raw/getting-started/templates.mdx +1 -1
  41. package/.docs/raw/rag/vector-databases.mdx +9 -1
  42. package/.docs/raw/reference/agents/agent.mdx +9 -3
  43. package/.docs/raw/reference/agents/generate.mdx +80 -3
  44. package/.docs/raw/reference/agents/getDefaultGenerateOptions.mdx +1 -1
  45. package/.docs/raw/reference/agents/getDefaultStreamOptions.mdx +1 -1
  46. package/.docs/raw/reference/agents/getDefaultVNextStreamOptions.mdx +1 -1
  47. package/.docs/raw/reference/agents/getLLM.mdx +1 -1
  48. package/.docs/raw/reference/agents/streamVNext.mdx +88 -5
  49. package/.docs/raw/reference/cli/scorers.mdx +160 -0
  50. package/.docs/raw/reference/rag/chroma.mdx +158 -17
  51. package/.docs/raw/reference/templates.mdx +3 -3
  52. package/.docs/raw/reference/tools/create-tool.mdx +2 -2
  53. package/.docs/raw/reference/tools/mcp-client.mdx +9 -9
  54. package/.docs/raw/reference/tools/mcp-server.mdx +5 -5
  55. package/.docs/raw/reference/workflows/branch.mdx +1 -1
  56. package/.docs/raw/reference/workflows/create-run.mdx +4 -4
  57. package/.docs/raw/reference/workflows/execute.mdx +2 -2
  58. package/.docs/raw/reference/workflows/foreach.mdx +1 -1
  59. package/.docs/raw/reference/workflows/run-methods/cancel.mdx +58 -0
  60. package/.docs/raw/reference/workflows/{resume.mdx → run-methods/resume.mdx} +7 -5
  61. package/.docs/raw/reference/workflows/{start.mdx → run-methods/start.mdx} +5 -5
  62. package/.docs/raw/reference/workflows/{stream.mdx → run-methods/stream.mdx} +6 -3
  63. package/.docs/raw/reference/workflows/{streamVNext.mdx → run-methods/streamVNext.mdx} +14 -9
  64. package/.docs/raw/reference/workflows/{watch.mdx → run-methods/watch.mdx} +12 -12
  65. package/.docs/raw/reference/workflows/run.mdx +104 -0
  66. package/.docs/raw/reference/workflows/step.mdx +0 -1
  67. package/.docs/raw/reference/workflows/workflow.mdx +3 -2
  68. package/.docs/raw/{reference/workflows → server-db}/snapshots.mdx +2 -2
  69. package/.docs/raw/voice/overview.mdx +81 -2
  70. package/.docs/raw/voice/speech-to-speech.mdx +45 -0
  71. package/.docs/raw/workflows/overview.mdx +11 -4
  72. package/.docs/raw/workflows-legacy/overview.mdx +8 -8
  73. package/package.json +4 -4
@@ -1,5 +1,41 @@
1
1
  # @mastra/pg
2
2
 
3
+ ## 0.14.1-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - d6e39da: Load most recent snapshot from storage
8
+ - Updated dependencies [6faaee5]
9
+ - Updated dependencies [4232b14]
10
+ - Updated dependencies [a89de7e]
11
+ - Updated dependencies [cf4f357]
12
+ - Updated dependencies [a722c0b]
13
+ - Updated dependencies [3b5fec7]
14
+ - @mastra/core@0.14.0-alpha.1
15
+
16
+ ## 0.14.0
17
+
18
+ ### Minor Changes
19
+
20
+ - 79d34ce: improve cloudflare workers compatibility
21
+
22
+ ### Patch Changes
23
+
24
+ - b32c50d: Filter scores by source
25
+ - Updated dependencies [d5330bf]
26
+ - Updated dependencies [2e74797]
27
+ - Updated dependencies [8388649]
28
+ - Updated dependencies [a239d41]
29
+ - Updated dependencies [dd94a26]
30
+ - Updated dependencies [3ba6772]
31
+ - Updated dependencies [b5cf2a3]
32
+ - Updated dependencies [2fff911]
33
+ - Updated dependencies [b32c50d]
34
+ - Updated dependencies [63449d0]
35
+ - Updated dependencies [121a3f8]
36
+ - Updated dependencies [ec510e7]
37
+ - @mastra/core@0.13.2
38
+
3
39
  ## 0.14.0-alpha.0
4
40
 
5
41
  ### Minor Changes
@@ -262,41 +298,5 @@
262
298
  - Updated dependencies [c3a30de]
263
299
  - Updated dependencies [37c1acd]
264
300
  - Updated dependencies [1aa60b1]
265
- - Updated dependencies [89ec9d4]
266
- - Updated dependencies [cf3a184]
267
- - Updated dependencies [d6bfd60]
268
- - Updated dependencies [626b0f4]
269
- - Updated dependencies [c22a91f]
270
- - Updated dependencies [f7403ab]
271
- - Updated dependencies [6c89d7f]
272
- - @mastra/core@0.10.15
273
-
274
- ## 0.12.3-alpha.0
275
-
276
- ### Patch Changes
277
-
278
- - ca52f88: dependencies updates:
279
- - Updated dependency [`pg-promise@^11.15.0` ↗︎](https://www.npmjs.com/package/pg-promise/v/11.15.0) (from `^11.14.0`, in `dependencies`)
280
- - 00c57ff: fix: pg storage should select resourceId when getMessages
281
- - Updated dependencies [db5cc15]
282
- - Updated dependencies [5237998]
283
- - Updated dependencies [37c1acd]
284
- - Updated dependencies [1aa60b1]
285
- - Updated dependencies [89ec9d4]
286
- - Updated dependencies [626b0f4]
287
- - Updated dependencies [c22a91f]
288
- - Updated dependencies [f7403ab]
289
- - Updated dependencies [6c89d7f]
290
- - @mastra/core@0.10.15-alpha.0
291
-
292
- ## 0.12.2
293
-
294
- ### Patch Changes
295
-
296
- - fb2a1b9: dependencies updates:
297
- - Updated dependency [`pg@^8.16.3` ↗︎](https://www.npmjs.com/package/pg/v/8.16.3) (from `^8.16.0`, in `dependencies`)
298
- - Updated dependencies [2873c7f]
299
- - Updated dependencies [1c1c6a1]
300
- - Updated dependencies [f8ce2cc]
301
301
 
302
- ... 2019 more lines hidden. See full changelog in package directory.
302
+ ... 2055 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,53 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 5.1.21-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 6313063: Implement model switcher in playground
8
+ - Updated dependencies [6faaee5]
9
+ - Updated dependencies [4232b14]
10
+ - Updated dependencies [6313063]
11
+ - Updated dependencies [a89de7e]
12
+ - Updated dependencies [cf4f357]
13
+ - Updated dependencies [a722c0b]
14
+ - Updated dependencies [3b5fec7]
15
+ - @mastra/core@0.14.0-alpha.1
16
+ - @mastra/client-js@0.10.22-alpha.1
17
+
18
+ ## 5.1.21-alpha.0
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [c30bca8]
23
+ - @mastra/core@0.13.3-alpha.0
24
+ - @mastra/client-js@0.10.22-alpha.0
25
+
26
+ ## 5.1.20
27
+
28
+ ### Patch Changes
29
+
30
+ - 0d32203: dependencies updates:
31
+ - Updated dependency [`zustand@^5.0.7` ↗︎](https://www.npmjs.com/package/zustand/v/5.0.7) (from `^5.0.6`, in `dependencies`)
32
+ - c6d2603: Properly set baseUrl in playground when user sets the host or port in Mastra instance.
33
+ - 7aad750: Fix tool ui showing after message when chat is refreshed
34
+ - Updated dependencies [d5330bf]
35
+ - Updated dependencies [2e74797]
36
+ - Updated dependencies [8388649]
37
+ - Updated dependencies [a239d41]
38
+ - Updated dependencies [dd94a26]
39
+ - Updated dependencies [3ba6772]
40
+ - Updated dependencies [96169cc]
41
+ - Updated dependencies [b5cf2a3]
42
+ - Updated dependencies [2fff911]
43
+ - Updated dependencies [b32c50d]
44
+ - Updated dependencies [63449d0]
45
+ - Updated dependencies [121a3f8]
46
+ - Updated dependencies [ce04175]
47
+ - Updated dependencies [ec510e7]
48
+ - @mastra/core@0.13.2
49
+ - @mastra/client-js@0.10.21
50
+
3
51
  ## 5.1.20-alpha.1
4
52
 
5
53
  ### Patch Changes
@@ -250,53 +298,5 @@
250
298
  - f6c4d75: fix date picker on change
251
299
  - 59f0dcd: Add light background color for step statuses
252
300
  - 35b1155: Added "Semantic recall search" to playground UI chat sidebar, to search for messages and find them in the chat list
253
- - 8aa97c7: Show docs link in place of semantic recall + working memory in playground if they're not enabled
254
- - cf8d497: factorize tabs component between cloud and core
255
- - 7827943: Handle streaming large data
256
- - 808b493: wrap runtime context with tooltip provider for usage in cloud
257
- - 09464dd: Share AgentMetadata component with cloud
258
- - 65e3395: Add Scores playground-ui and add scorer hooks
259
- - 80692d5: refactor: sharing only the UI and not data fetching for traces
260
- - 80c2b06: Fix agent chat stop button to cancel stream/generate reqs in the playground
261
- - Updated dependencies [4832752]
262
- - Updated dependencies [f248d53]
263
- - Updated dependencies [2affc57]
264
- - Updated dependencies [66e13e3]
265
- - Updated dependencies [edd9482]
266
- - Updated dependencies [18344d7]
267
- - Updated dependencies [9d372c2]
268
- - Updated dependencies [40c2525]
269
- - Updated dependencies [e473f27]
270
- - Updated dependencies [032cb66]
271
- - Updated dependencies [703ac71]
272
- - Updated dependencies [a723d69]
273
- - Updated dependencies [7827943]
274
- - Updated dependencies [5889a31]
275
- - Updated dependencies [bf1e7e7]
276
- - Updated dependencies [65e3395]
277
- - Updated dependencies [4933192]
278
- - Updated dependencies [d1c77a4]
279
- - Updated dependencies [bea9dd1]
280
- - Updated dependencies [dcd4802]
281
- - Updated dependencies [cbddd18]
282
- - Updated dependencies [80c2b06]
283
- - Updated dependencies [7ba91fa]
284
- - Updated dependencies [6f6e651]
285
- - @mastra/client-js@0.10.15
286
- - @mastra/core@0.11.0
287
-
288
- ## 5.1.14-alpha.3
289
-
290
- ### Patch Changes
291
-
292
- - 8aa97c7: Show docs link in place of semantic recall + working memory in playground if they're not enabled
293
-
294
- ## 5.1.14-alpha.2
295
-
296
- ### Patch Changes
297
-
298
- - dd2a4c9: change the way we start the dev process of playground
299
- - af1f902: share thread list between agent, network and cloud
300
- - f6c4d75: fix date picker on change
301
301
 
302
- ... 2410 more lines hidden. See full changelog in package directory.
302
+ ... 2458 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,25 @@
1
1
  # @mastra/qdrant
2
2
 
3
+ ## 0.11.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 0885aef: dependencies updates:
8
+ - Updated dependency [`@qdrant/js-client-rest@^1.15.0` ↗︎](https://www.npmjs.com/package/@qdrant/js-client-rest/v/1.15.0) (from `^1.14.1`, in `dependencies`)
9
+ - Updated dependencies [d5330bf]
10
+ - Updated dependencies [2e74797]
11
+ - Updated dependencies [8388649]
12
+ - Updated dependencies [a239d41]
13
+ - Updated dependencies [dd94a26]
14
+ - Updated dependencies [3ba6772]
15
+ - Updated dependencies [b5cf2a3]
16
+ - Updated dependencies [2fff911]
17
+ - Updated dependencies [b32c50d]
18
+ - Updated dependencies [63449d0]
19
+ - Updated dependencies [121a3f8]
20
+ - Updated dependencies [ec510e7]
21
+ - @mastra/core@0.13.2
22
+
3
23
  ## 0.11.4-alpha.0
4
24
 
5
25
  ### Patch Changes
@@ -278,25 +298,5 @@
278
298
  - a7292b0: BREAKING(@mastra/core, all vector stores): Vector store breaking changes (remove deprecated functions and positional arguments)
279
299
  - Updated dependencies [b3a3d63]
280
300
  - Updated dependencies [344f453]
281
- - Updated dependencies [0a3ae6d]
282
- - Updated dependencies [95911be]
283
- - Updated dependencies [5eb5a99]
284
- - Updated dependencies [7e632c5]
285
- - Updated dependencies [1e9fbfa]
286
- - Updated dependencies [b2ae5aa]
287
- - Updated dependencies [a7292b0]
288
- - Updated dependencies [0dcb9f0]
289
- - @mastra/core@0.10.0-alpha.1
290
-
291
- ## 0.2.15-alpha.0
292
-
293
- ### Patch Changes
294
-
295
- - d0ee3c6: Change all public functions and constructors in vector stores to use named args and prepare to phase out positional args
296
- - Updated dependencies [f53a6ac]
297
- - Updated dependencies [eabdcd9]
298
- - Updated dependencies [90be034]
299
- - Updated dependencies [99f050a]
300
- - Updated dependencies [d0ee3c6]
301
301
 
302
- ... 1724 more lines hidden. See full changelog in package directory.
302
+ ... 1744 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,24 @@
1
1
  # @mastra/rag
2
2
 
3
+ ## 1.0.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 1be6004: Added semantic markdown chunking strategy.
8
+ - Updated dependencies [d5330bf]
9
+ - Updated dependencies [2e74797]
10
+ - Updated dependencies [8388649]
11
+ - Updated dependencies [a239d41]
12
+ - Updated dependencies [dd94a26]
13
+ - Updated dependencies [3ba6772]
14
+ - Updated dependencies [b5cf2a3]
15
+ - Updated dependencies [2fff911]
16
+ - Updated dependencies [b32c50d]
17
+ - Updated dependencies [63449d0]
18
+ - Updated dependencies [121a3f8]
19
+ - Updated dependencies [ec510e7]
20
+ - @mastra/core@0.13.2
21
+
3
22
  ## 1.0.8-alpha.0
4
23
 
5
24
  ### Patch Changes
@@ -279,24 +298,5 @@
279
298
  - Updated dependencies [d70c420]
280
299
  - Updated dependencies [ee9af57]
281
300
  - Updated dependencies [36f1c36]
282
- - Updated dependencies [2a16996]
283
- - Updated dependencies [10d352e]
284
- - Updated dependencies [9589624]
285
- - Updated dependencies [53d3c37]
286
- - Updated dependencies [751c894]
287
- - Updated dependencies [577ce3a]
288
- - Updated dependencies [9260b3a]
289
- - @mastra/core@0.10.6
290
-
291
- ## 1.0.0-alpha.0
292
-
293
- ### Major Changes
294
-
295
- - 75136cd: Add LaTeX chunking support by adding a case for Language.LATEX in getSeparatorsForLanguage.
296
-
297
- ### Patch Changes
298
-
299
- - 63f6b7d: dependencies updates:
300
- - Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
301
301
 
302
- ... 2396 more lines hidden. See full changelog in package directory.
302
+ ... 2415 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,13 @@
1
1
  # @mastra/schema-compat
2
2
 
3
+ ## 0.10.7
4
+
5
+ ### Patch Changes
6
+
7
+ - dd94a26: Dont rely on the full language model for schema compat
8
+ - 2fff911: Fix vnext working memory tool schema when model is incompatible with schema
9
+ - ae2eb63: Handle regex checks better, return description as a string rather than an object with pattern and flags.
10
+
3
11
  ## 0.10.7-alpha.1
4
12
 
5
13
  ### Patch Changes
@@ -1,4 +1,46 @@
1
- # @mastra/deployer
1
+ # @mastra/server
2
+
3
+ ## 0.14.0-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 6313063: Implement model switcher in playground
8
+ - a89de7e: Adding a new agentic loop and streaming workflow system while working towards AI SDK v5 support.
9
+ - Updated dependencies [6faaee5]
10
+ - Updated dependencies [4232b14]
11
+ - Updated dependencies [a89de7e]
12
+ - Updated dependencies [cf4f357]
13
+ - Updated dependencies [a722c0b]
14
+ - Updated dependencies [3b5fec7]
15
+ - @mastra/core@0.14.0-alpha.1
16
+
17
+ ## 0.13.3-alpha.0
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [c30bca8]
22
+ - @mastra/core@0.13.3-alpha.0
23
+
24
+ ## 0.13.2
25
+
26
+ ### Patch Changes
27
+
28
+ - a239d41: Updated A2A syntax to v0.3.0
29
+ - f6a1ae7: Return correct `agentIds` for `/api/scores/scorers` and `/api/scores/scorers/${scorerId}` endpoints
30
+ - ce04175: Add update agent model handler
31
+ - Updated dependencies [d5330bf]
32
+ - Updated dependencies [2e74797]
33
+ - Updated dependencies [8388649]
34
+ - Updated dependencies [a239d41]
35
+ - Updated dependencies [dd94a26]
36
+ - Updated dependencies [3ba6772]
37
+ - Updated dependencies [b5cf2a3]
38
+ - Updated dependencies [2fff911]
39
+ - Updated dependencies [b32c50d]
40
+ - Updated dependencies [63449d0]
41
+ - Updated dependencies [121a3f8]
42
+ - Updated dependencies [ec510e7]
43
+ - @mastra/core@0.13.2
2
44
 
3
45
  ## 0.13.2-alpha.3
4
46
 
@@ -256,47 +298,5 @@
256
298
  ### Patch Changes
257
299
 
258
300
  - Updated dependencies [510e2c8]
259
- - Updated dependencies [2f72fb2]
260
- - Updated dependencies [3f89307]
261
- - Updated dependencies [9eda7d4]
262
- - Updated dependencies [9d49408]
263
- - Updated dependencies [2ecf658]
264
- - Updated dependencies [7a7754f]
265
- - Updated dependencies [fc92d80]
266
- - Updated dependencies [23a6a7c]
267
- - Updated dependencies [09bca64]
268
- - @mastra/core@0.12.0-alpha.0
269
-
270
- ## 0.11.1
271
-
272
- ### Patch Changes
273
-
274
- - 417fd92: Revert breaking chnage
275
- - ce088f5: Update all peerdeps to latest core
276
- - @mastra/core@0.11.1
277
-
278
- ## 0.11.0
279
-
280
- ### Patch Changes
281
301
 
282
- - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
283
- - 35b1155: Added "Semantic recall search" to playground UI chat sidebar, to search for messages and find them in the chat list
284
- - 65e3395: Add Scores playground-ui and add scorer hooks
285
- - bea9dd1: Refactor Agent class to consolidate LLM generate and stream methods and improve type safety. This includes
286
- extracting common logic into prepareLLMOptions(), enhancing type definitions, and fixing test annotations.
287
-
288
- This changeset entry follows the established format in your project:
289
- - Targets the @mastra/core package with a patch version bump
290
- - Provides a concise description of the refactoring and type safety improvements
291
- - Mentions the key changes without being too verbose
292
-
293
- - 62007b3: Fix upserting memory messages via hono endpoints
294
- - dcd4802: scores mastra server
295
- - Updated dependencies [f248d53]
296
- - Updated dependencies [2affc57]
297
- - Updated dependencies [66e13e3]
298
- - Updated dependencies [edd9482]
299
- - Updated dependencies [18344d7]
300
- - Updated dependencies [9d372c2]
301
-
302
- ... 2763 more lines hidden. See full changelog in package directory.
302
+ ... 2805 more lines hidden. See full changelog in package directory.
@@ -0,0 +1,14 @@
1
+ # @mastra/voice-google-gemini-live
2
+
3
+ ## 0.10.7-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - dd512a2: Integrates Google Gemini Live API into the Mastra framework
8
+ - Updated dependencies [6faaee5]
9
+ - Updated dependencies [4232b14]
10
+ - Updated dependencies [a89de7e]
11
+ - Updated dependencies [cf4f357]
12
+ - Updated dependencies [a722c0b]
13
+ - Updated dependencies [3b5fec7]
14
+ - @mastra/core@0.14.0-alpha.1
@@ -1,5 +1,30 @@
1
1
  # create-mastra
2
2
 
3
+ ## 0.10.22-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8f8409a: Inject analytics instance into create cmd
8
+ - 6313063: Implement model switcher in playground
9
+
10
+ ## 0.10.22-alpha.0
11
+
12
+ ### Patch Changes
13
+
14
+ - 97c1d5e: Add new `scorers` subcommand for managing scorers.
15
+ Refactor cli to be more modular.
16
+
17
+ ## 0.10.21
18
+
19
+ ### Patch Changes
20
+
21
+ - 77b6cfe: Use just modelId for gpt-5 check
22
+ - 96169cc: Create handler that returns providers user has keys for in their env
23
+ - 33da97c: Set temperature to 1 for gpt-5 model in playground
24
+ - c6d2603: Properly set baseUrl in playground when user sets the host or port in Mastra instance.
25
+ - 7aad750: Fix tool ui showing after message when chat is refreshed
26
+ - ce04175: Add update agent model handler
27
+
3
28
  ## 0.10.21-alpha.2
4
29
 
5
30
  ### Patch Changes
@@ -273,30 +298,5 @@
273
298
  - 21ffb97: Make dynamic form handle schema better
274
299
  - f9b4350: fix icons not showing on all agents
275
300
 
276
- ## 0.10.6-alpha.3
277
-
278
- ### Patch Changes
279
-
280
- - f9b4350: fix icons not showing on all agents
281
-
282
- ## 0.10.6-alpha.2
283
-
284
- ### Patch Changes
285
-
286
- - 5d74aab: vNext network in playground
287
-
288
- ## 0.10.6-alpha.1
289
-
290
- ### Patch Changes
291
-
292
- - 21ffb97: Make dynamic form handle schema better
293
-
294
- ## 0.10.6-alpha.0
295
-
296
- ### Patch Changes
297
-
298
- - 9102d89: Fix final output not showing on playground for previously suspended steps
299
-
300
- ## 0.10.5
301
301
 
302
- ... 1181 more lines hidden. See full changelog in package directory.
302
+ ... 1206 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,67 @@
1
1
  # mastra
2
2
 
3
+ ## 0.10.22-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8f8409a: Inject analytics instance into create cmd
8
+ - 6313063: Implement model switcher in playground
9
+ - Updated dependencies [895d3b2]
10
+ - Updated dependencies [bca2ba3]
11
+ - Updated dependencies [6faaee5]
12
+ - Updated dependencies [4232b14]
13
+ - Updated dependencies [6313063]
14
+ - Updated dependencies [a89de7e]
15
+ - Updated dependencies [cf4f357]
16
+ - Updated dependencies [a722c0b]
17
+ - Updated dependencies [3b5fec7]
18
+ - Updated dependencies [6dfc4a6]
19
+ - @mastra/mcp@0.10.12-alpha.0
20
+ - @mastra/deployer@0.14.0-alpha.1
21
+ - @mastra/core@0.14.0-alpha.1
22
+
23
+ ## 0.10.22-alpha.0
24
+
25
+ ### Patch Changes
26
+
27
+ - 97c1d5e: Add new `scorers` subcommand for managing scorers.
28
+ Refactor cli to be more modular.
29
+ - Updated dependencies [c30bca8]
30
+ - @mastra/core@0.13.3-alpha.0
31
+ - @mastra/deployer@0.13.3-alpha.0
32
+
33
+ ## 0.10.21
34
+
35
+ ### Patch Changes
36
+
37
+ - 63449d0: Change the globbing of tools to exclude test files. Files inside `__tests__` directory and files with `.test.` or `.spec.` in their file name are now excluded from bundling.
38
+ - 77b6cfe: Use just modelId for gpt-5 check
39
+ - 96169cc: Create handler that returns providers user has keys for in their env
40
+ - 33da97c: Set temperature to 1 for gpt-5 model in playground
41
+ - c6d2603: Properly set baseUrl in playground when user sets the host or port in Mastra instance.
42
+ - 7aad750: Fix tool ui showing after message when chat is refreshed
43
+ - ce04175: Add update agent model handler
44
+ - Updated dependencies [d5330bf]
45
+ - Updated dependencies [aaf0224]
46
+ - Updated dependencies [2e74797]
47
+ - Updated dependencies [42cb4e9]
48
+ - Updated dependencies [8388649]
49
+ - Updated dependencies [a239d41]
50
+ - Updated dependencies [dd94a26]
51
+ - Updated dependencies [3ba6772]
52
+ - Updated dependencies [96169cc]
53
+ - Updated dependencies [b5cf2a3]
54
+ - Updated dependencies [2fff911]
55
+ - Updated dependencies [b32c50d]
56
+ - Updated dependencies [c6d2603]
57
+ - Updated dependencies [63449d0]
58
+ - Updated dependencies [121a3f8]
59
+ - Updated dependencies [ce04175]
60
+ - Updated dependencies [ec510e7]
61
+ - @mastra/core@0.13.2
62
+ - @mastra/deployer@0.13.2
63
+ - @mastra/mcp@0.10.11
64
+
3
65
  ## 0.10.21-alpha.2
4
66
 
5
67
  ### Patch Changes
@@ -236,67 +298,5 @@
236
298
  - Updated dependencies [09bca64]
237
299
  - Updated dependencies [9802f42]
238
300
  - Updated dependencies [d5cc460]
239
- - Updated dependencies [f42c4c2]
240
- - Updated dependencies [b8efbb9]
241
- - Updated dependencies [71466e7]
242
- - Updated dependencies [0c99fbe]
243
- - @mastra/core@0.12.0
244
- - @mastra/deployer@0.12.0
245
- - @mastra/loggers@0.10.5
246
- - @mastra/mcp@0.10.8
247
-
248
- ## 0.10.16-alpha.3
249
-
250
- ### Patch Changes
251
-
252
- - f42c4c2: update peer deps for packages to latest core range
253
- - Updated dependencies [f42c4c2]
254
- - @mastra/deployer@0.12.0-alpha.5
255
- - @mastra/loggers@0.10.5-alpha.0
256
- - @mastra/mcp@0.10.8-alpha.0
257
- - @mastra/core@0.12.0-alpha.5
258
-
259
- ## 0.10.16-alpha.2
260
-
261
- ### Patch Changes
262
-
263
- - d5cc460: This change implements a fix to sourcemap mappings being off due to `removeDeployer` Babel plugin missing source map config.
264
- - a5681f2: fix: pagination breaks trace grouping
265
- - Updated dependencies [27cc97a]
266
- - Updated dependencies [27cc97a]
267
- - Updated dependencies [41daa63]
268
- - Updated dependencies [254a36b]
269
- - Updated dependencies [0b89602]
270
- - Updated dependencies [4d37822]
271
- - Updated dependencies [ff9c125]
272
- - Updated dependencies [d5cc460]
273
- - Updated dependencies [b8efbb9]
274
- - Updated dependencies [71466e7]
275
- - Updated dependencies [0c99fbe]
276
- - @mastra/core@0.12.0-alpha.2
277
- - @mastra/deployer@0.12.0-alpha.2
278
-
279
- ## 0.10.16-alpha.1
280
-
281
- ### Patch Changes
282
-
283
- - 6336993: Fix workflow input form overflow
284
- - Updated dependencies [e0f73c6]
285
- - Updated dependencies [cda801d]
286
- - Updated dependencies [a77c823]
287
- - @mastra/core@0.12.0-alpha.1
288
- - @mastra/deployer@0.12.0-alpha.1
289
-
290
- ## 0.10.16-alpha.0
291
-
292
- ### Patch Changes
293
-
294
- - bc6b44a: Extract tools import from `createHonoServer`; the function now receives tools via a prop on the `options` parameter.
295
- - f442224: speech to text using voice config
296
- - 7a7754f: Fast follow scorers fixing input types, improve llm scorer reliability, fix ui to display scores that are 0
297
- - d8dec5e: add a cta to invite to deploy to cloud
298
- - 89d2f4e: add TTS to the playground
299
- - Updated dependencies [510e2c8]
300
- - Updated dependencies [2f72fb2]
301
301
 
302
- ... 4850 more lines hidden. See full changelog in package directory.
302
+ ... 4912 more lines hidden. See full changelog in package directory.