@mastra/mcp-docs-server 0.13.10 → 0.13.11-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.
Files changed (59) hide show
  1. package/.docs/organized/changelogs/%40internal%2Fstorage-test-utils.md +9 -9
  2. package/.docs/organized/changelogs/%40internal%2Ftypes-builder.md +2 -0
  3. package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +18 -18
  4. package/.docs/organized/changelogs/%40mastra%2Fcore.md +23 -23
  5. package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloudflare.md +20 -20
  6. package/.docs/organized/changelogs/%40mastra%2Fdeployer-netlify.md +20 -20
  7. package/.docs/organized/changelogs/%40mastra%2Fdeployer-vercel.md +20 -20
  8. package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +20 -20
  9. package/.docs/organized/changelogs/%40mastra%2Ffirecrawl.md +13 -13
  10. package/.docs/organized/changelogs/%40mastra%2Flibsql.md +9 -9
  11. package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +18 -18
  12. package/.docs/organized/changelogs/%40mastra%2Fmemory.md +12 -12
  13. package/.docs/organized/changelogs/%40mastra%2Fpg.md +9 -9
  14. package/.docs/organized/changelogs/%40mastra%2Fplayground-ui.md +21 -21
  15. package/.docs/organized/changelogs/%40mastra%2Frag.md +12 -12
  16. package/.docs/organized/changelogs/%40mastra%2Fschema-compat.md +7 -0
  17. package/.docs/organized/changelogs/%40mastra%2Fserver.md +18 -18
  18. package/.docs/organized/changelogs/create-mastra.md +9 -9
  19. package/.docs/organized/changelogs/mastra.md +22 -22
  20. package/.docs/organized/code-examples/agent-network.md +4 -3
  21. package/.docs/organized/code-examples/agent.md +33 -2
  22. package/.docs/raw/agents/overview.mdx +21 -1
  23. package/.docs/raw/getting-started/mcp-docs-server.mdx +2 -2
  24. package/.docs/raw/rag/chunking-and-embedding.mdx +11 -0
  25. package/.docs/raw/reference/agents/agent.mdx +64 -38
  26. package/.docs/raw/reference/agents/generate.mdx +206 -202
  27. package/.docs/raw/reference/agents/getAgent.mdx +23 -38
  28. package/.docs/raw/reference/agents/getDefaultGenerateOptions.mdx +62 -0
  29. package/.docs/raw/reference/agents/getDefaultStreamOptions.mdx +62 -0
  30. package/.docs/raw/reference/agents/getDefaultVNextStreamOptions.mdx +62 -0
  31. package/.docs/raw/reference/agents/getDescription.mdx +30 -0
  32. package/.docs/raw/reference/agents/getInstructions.mdx +36 -73
  33. package/.docs/raw/reference/agents/getLLM.mdx +69 -0
  34. package/.docs/raw/reference/agents/getMemory.mdx +42 -119
  35. package/.docs/raw/reference/agents/getModel.mdx +36 -75
  36. package/.docs/raw/reference/agents/getScorers.mdx +62 -0
  37. package/.docs/raw/reference/agents/getTools.mdx +36 -128
  38. package/.docs/raw/reference/agents/getVoice.mdx +36 -83
  39. package/.docs/raw/reference/agents/getWorkflows.mdx +37 -74
  40. package/.docs/raw/reference/agents/stream.mdx +263 -226
  41. package/.docs/raw/reference/agents/streamVNext.mdx +208 -402
  42. package/.docs/raw/reference/rag/chunk.mdx +51 -2
  43. package/.docs/raw/reference/scorers/answer-relevancy.mdx +6 -6
  44. package/.docs/raw/reference/scorers/bias.mdx +6 -6
  45. package/.docs/raw/reference/scorers/completeness.mdx +2 -2
  46. package/.docs/raw/reference/scorers/content-similarity.mdx +1 -1
  47. package/.docs/raw/reference/scorers/create-scorer.mdx +445 -0
  48. package/.docs/raw/reference/scorers/faithfulness.mdx +6 -6
  49. package/.docs/raw/reference/scorers/hallucination.mdx +6 -6
  50. package/.docs/raw/reference/scorers/keyword-coverage.mdx +2 -2
  51. package/.docs/raw/reference/scorers/mastra-scorer.mdx +116 -158
  52. package/.docs/raw/reference/scorers/toxicity.mdx +2 -2
  53. package/.docs/raw/scorers/custom-scorers.mdx +166 -268
  54. package/.docs/raw/scorers/overview.mdx +21 -13
  55. package/.docs/raw/server-db/local-dev-playground.mdx +3 -3
  56. package/package.json +3 -3
  57. package/.docs/raw/reference/agents/createTool.mdx +0 -241
  58. package/.docs/raw/reference/scorers/custom-code-scorer.mdx +0 -155
  59. package/.docs/raw/reference/scorers/llm-scorer.mdx +0 -210
@@ -1,5 +1,12 @@
1
1
  # @internal/lint
2
2
 
3
+ ## 0.0.24
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [cd0042e]
8
+ - @mastra/core@0.13.1
9
+
3
10
  ## 0.0.23
4
11
 
5
12
  ### Patch Changes
@@ -291,12 +298,5 @@
291
298
 
292
299
  - Updated dependencies [d70b807]
293
300
  - Updated dependencies [6d16390]
294
- - Updated dependencies [1e4a421]
295
- - Updated dependencies [200d0da]
296
- - Updated dependencies [bf5f17b]
297
- - Updated dependencies [5343f93]
298
- - Updated dependencies [38aee50]
299
- - Updated dependencies [5c41100]
300
- - Updated dependencies [d6a759b]
301
-
302
- ... 166 more lines hidden. See full changelog in package directory.
301
+
302
+ ... 173 more lines hidden. See full changelog in package directory.
@@ -1,3 +1,5 @@
1
1
  # @internal/types-builder
2
2
 
3
+ ## 0.0.3
4
+
3
5
  ## 0.0.2
@@ -1,5 +1,22 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 0.10.21-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8388649]
8
+ - Updated dependencies [dd94a26]
9
+ - Updated dependencies [3ba6772]
10
+ - Updated dependencies [2fff911]
11
+ - @mastra/core@0.13.2-alpha.0
12
+
13
+ ## 0.10.20
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [cd0042e]
18
+ - @mastra/core@0.13.1
19
+
3
20
  ## 0.10.20-alpha.0
4
21
 
5
22
  ### Patch Changes
@@ -281,22 +298,5 @@
281
298
  - 2affc57: Fix output type of network loop
282
299
  - 032cb66: ClientJS
283
300
  - 65e3395: Add Scores playground-ui and add scorer hooks
284
- - 80c2b06: Fix agent chat stop button to cancel stream/generate reqs in the playground
285
- - 6f6e651: Alias createRun -> createRunAsync to match Mastra Workflow class
286
- - Updated dependencies [f248d53]
287
- - Updated dependencies [2affc57]
288
- - Updated dependencies [66e13e3]
289
- - Updated dependencies [edd9482]
290
- - Updated dependencies [18344d7]
291
- - Updated dependencies [9d372c2]
292
- - Updated dependencies [40c2525]
293
- - Updated dependencies [e473f27]
294
- - Updated dependencies [032cb66]
295
- - Updated dependencies [703ac71]
296
- - Updated dependencies [a723d69]
297
- - Updated dependencies [5889a31]
298
- - Updated dependencies [65e3395]
299
- - Updated dependencies [4933192]
300
- - Updated dependencies [d1c77a4]
301
301
 
302
- ... 1921 more lines hidden. See full changelog in package directory.
302
+ ... 1938 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,27 @@
1
1
  # @mastra/core
2
2
 
3
+ ## 0.13.2-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 8388649: Allow array of messages in vnext agent network
8
+ - dd94a26: Dont rely on the full language model for schema compat
9
+ - 3ba6772: MastraModelInput
10
+ - 2fff911: Fix vnext working memory tool schema when model is incompatible with schema
11
+ - Updated dependencies [dd94a26]
12
+ - Updated dependencies [2fff911]
13
+ - @mastra/schema-compat@0.10.7-alpha.0
14
+
15
+ ## 0.13.1
16
+
17
+ ### Patch Changes
18
+
19
+ - cd0042e: Fix tool call history not being accessible in agent conversations
20
+
21
+ When converting v2 messages (with combined tool calls and text) to v1 format for memory storage, split messages were all keeping the same ID. This caused later messages to replace earlier ones when added back to MessageList, losing tool history.
22
+
23
+ The fix adds ID deduplication by appending `__split-N` suffixes to split messages and prevents double-suffixing when messages are re-converted between formats.
24
+
3
25
  ## 0.13.1-alpha.0
4
26
 
5
27
  ### Patch Changes
@@ -276,27 +298,5 @@
276
298
 
277
299
  - dcd4802: scores mastra server
278
300
  - cbddd18: Remove erroneous reassignment of `Mastra.prototype.#vectors`
279
- - 7ba91fa: Add scorer abstract methods for base storage
280
-
281
- ## 0.11.0-alpha.2
282
-
283
- ### Patch Changes
284
-
285
- - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
286
- - 2affc57: Fix output type of network loop
287
- - 66e13e3: Add methods to fetch workflow/agent by its true id
288
- - edd9482: Fix "workflow run was not suspended" error when attempting to resume a workflow with consecutive nested workflows.
289
- - 18344d7: Code and llm scorers
290
- - 9d372c2: Fix streamVNext error handling
291
- - 40c2525: Fix agent.generate error with experimental_output and clientTool
292
- - e473f27: Implement off the shelf Scorers
293
- - 032cb66: ClientJS
294
- - 703ac71: scores schema
295
- - a723d69: Pass workflowId through
296
- - 5889a31: Export storage domain types
297
- - 65e3395: Add Scores playground-ui and add scorer hooks
298
- - 4933192: Update Message List to ensure correct order of message parts
299
- - d1c77a4: Scorer interface
300
- - bea9dd1: Refactor Agent class to consolidate LLM generate and stream methods and improve type safety. This includes
301
301
 
302
- ... 2497 more lines hidden. See full changelog in package directory.
302
+ ... 2519 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,24 @@
1
1
  # @mastra/deployer-cloudflare
2
2
 
3
+ ## 0.11.6-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8388649]
8
+ - Updated dependencies [dd94a26]
9
+ - Updated dependencies [3ba6772]
10
+ - Updated dependencies [2fff911]
11
+ - @mastra/core@0.13.2-alpha.0
12
+ - @mastra/deployer@0.13.2-alpha.0
13
+
14
+ ## 0.11.5
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [cd0042e]
19
+ - @mastra/core@0.13.1
20
+ - @mastra/deployer@0.13.1
21
+
3
22
  ## 0.11.5-alpha.0
4
23
 
5
24
  ### Patch Changes
@@ -279,24 +298,5 @@
279
298
  - Updated dependencies [edd9482]
280
299
  - Updated dependencies [18344d7]
281
300
  - Updated dependencies [7ba91fa]
282
- - Updated dependencies [a512ede]
283
- - Updated dependencies [35b1155]
284
- - Updated dependencies [9d372c2]
285
- - Updated dependencies [45469c5]
286
- - Updated dependencies [40c2525]
287
- - Updated dependencies [e473f27]
288
- - Updated dependencies [032cb66]
289
- - Updated dependencies [24eb25c]
290
- - Updated dependencies [703ac71]
291
- - Updated dependencies [a723d69]
292
- - Updated dependencies [4c06f06]
293
- - Updated dependencies [5889a31]
294
- - Updated dependencies [65e3395]
295
- - Updated dependencies [9de6f58]
296
- - Updated dependencies [4933192]
297
- - Updated dependencies [d1c77a4]
298
- - Updated dependencies [bea9dd1]
299
- - Updated dependencies [dcd4802]
300
- - Updated dependencies [7ba91fa]
301
301
 
302
- ... 3112 more lines hidden. See full changelog in package directory.
302
+ ... 3131 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,24 @@
1
1
  # @mastra/deployer-netlify
2
2
 
3
+ ## 0.11.13-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8388649]
8
+ - Updated dependencies [dd94a26]
9
+ - Updated dependencies [3ba6772]
10
+ - Updated dependencies [2fff911]
11
+ - @mastra/core@0.13.2-alpha.0
12
+ - @mastra/deployer@0.13.2-alpha.0
13
+
14
+ ## 0.11.12
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [cd0042e]
19
+ - @mastra/core@0.13.1
20
+ - @mastra/deployer@0.13.1
21
+
3
22
  ## 0.11.12-alpha.0
4
23
 
5
24
  ### Patch Changes
@@ -280,23 +299,4 @@
280
299
 
281
300
  ### Patch Changes
282
301
 
283
- - Updated dependencies [b4a9811]
284
- - Updated dependencies [53e3f58]
285
- - @mastra/core@0.10.12-alpha.0
286
- - @mastra/deployer@0.10.12-alpha.0
287
-
288
- ## 0.11.4
289
-
290
- ### Patch Changes
291
-
292
- - Updated dependencies [2873c7f]
293
- - Updated dependencies [1c1c6a1]
294
- - Updated dependencies [bc40cdd]
295
- - Updated dependencies [2873c7f]
296
- - Updated dependencies [1c1c6a1]
297
- - Updated dependencies [d9b26b5]
298
- - Updated dependencies [f8ce2cc]
299
- - Updated dependencies [8c846b6]
300
- - Updated dependencies [c7bbf1e]
301
-
302
- ... 2917 more lines hidden. See full changelog in package directory.
302
+ ... 2936 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,24 @@
1
1
  # @mastra/deployer-vercel
2
2
 
3
+ ## 0.11.13-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8388649]
8
+ - Updated dependencies [dd94a26]
9
+ - Updated dependencies [3ba6772]
10
+ - Updated dependencies [2fff911]
11
+ - @mastra/core@0.13.2-alpha.0
12
+ - @mastra/deployer@0.13.2-alpha.0
13
+
14
+ ## 0.11.12
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [cd0042e]
19
+ - @mastra/core@0.13.1
20
+ - @mastra/deployer@0.13.1
21
+
3
22
  ## 0.11.12-alpha.0
4
23
 
5
24
  ### Patch Changes
@@ -280,23 +299,4 @@
280
299
 
281
300
  ### Patch Changes
282
301
 
283
- - Updated dependencies [b4a9811]
284
- - Updated dependencies [53e3f58]
285
- - @mastra/core@0.10.12-alpha.0
286
- - @mastra/deployer@0.10.12-alpha.0
287
-
288
- ## 0.11.4
289
-
290
- ### Patch Changes
291
-
292
- - Updated dependencies [2873c7f]
293
- - Updated dependencies [1c1c6a1]
294
- - Updated dependencies [bc40cdd]
295
- - Updated dependencies [2873c7f]
296
- - Updated dependencies [1c1c6a1]
297
- - Updated dependencies [d9b26b5]
298
- - Updated dependencies [f8ce2cc]
299
- - Updated dependencies [8c846b6]
300
- - Updated dependencies [c7bbf1e]
301
-
302
- ... 2899 more lines hidden. See full changelog in package directory.
302
+ ... 2918 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,24 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 0.13.2-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8388649]
8
+ - Updated dependencies [dd94a26]
9
+ - Updated dependencies [3ba6772]
10
+ - Updated dependencies [2fff911]
11
+ - @mastra/core@0.13.2-alpha.0
12
+ - @mastra/server@0.13.2-alpha.0
13
+
14
+ ## 0.13.1
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [cd0042e]
19
+ - @mastra/core@0.13.1
20
+ - @mastra/server@0.13.1
21
+
3
22
  ## 0.13.1-alpha.0
4
23
 
5
24
  ### Patch Changes
@@ -279,24 +298,5 @@
279
298
 
280
299
  ## 0.11.1
281
300
 
282
- ### Patch Changes
283
-
284
- - ce088f5: Update all peerdeps to latest core
285
- - Updated dependencies [417fd92]
286
- - Updated dependencies [ce088f5]
287
- - @mastra/server@0.11.1
288
- - @mastra/core@0.11.1
289
-
290
- ## 0.11.0
291
-
292
- ### Minor Changes
293
-
294
- - 0938991: Refactored the hono server structure by extracting route logic into route groups based on namespace.
295
-
296
- ### Patch Changes
297
-
298
- - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
299
- - 82c6860: fix tool import
300
- - 7ba91fa: Throw mastra errors methods not implemented yet
301
301
 
302
- ... 3288 more lines hidden. See full changelog in package directory.
302
+ ... 3307 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,17 @@
1
1
  # @mastra/firecrawl
2
2
 
3
+ ## 1.2.12-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8388649]
8
+ - Updated dependencies [dd94a26]
9
+ - Updated dependencies [3ba6772]
10
+ - Updated dependencies [2fff911]
11
+ - Updated dependencies [1be6004]
12
+ - @mastra/core@0.13.2-alpha.0
13
+ - @mastra/rag@1.0.8-alpha.0
14
+
3
15
  ## 1.2.11
4
16
 
5
17
  ### Patch Changes
@@ -286,17 +298,5 @@
286
298
  - Updated dependencies [751c894]
287
299
  - Updated dependencies [75136cd]
288
300
  - Updated dependencies [577ce3a]
289
- - Updated dependencies [9260b3a]
290
- - @mastra/core@0.10.6
291
- - @mastra/rag@1.0.0
292
-
293
- ## 1.2.4-alpha.0
294
-
295
- ### Patch Changes
296
-
297
- - 63f6b7d: dependencies updates:
298
- - Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
299
- - Updated dependencies [63f6b7d]
300
- - Updated dependencies [63f6b7d]
301
301
 
302
- ... 2583 more lines hidden. See full changelog in package directory.
302
+ ... 2595 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,13 @@
1
1
  # @mastra/libsql
2
2
 
3
+ ## 0.13.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8888b57: Fix LibSQL vector metadata filtering for Memory system - corrected JSON path syntax for simple fields and changed default minScore to -1 to include all similarity results
8
+ - Updated dependencies [cd0042e]
9
+ - @mastra/core@0.13.1
10
+
3
11
  ## 0.13.1-alpha.0
4
12
 
5
13
  ### Patch Changes
@@ -290,13 +298,5 @@
290
298
  - Updated dependencies [07d6d88]
291
299
  - Updated dependencies [5d74aab]
292
300
  - Updated dependencies [144eb0b]
293
- - @mastra/core@0.10.7-alpha.2
294
-
295
- ## 0.10.4-alpha.1
296
-
297
- ### Patch Changes
298
-
299
- - 2097952: [MASTRA-4021] Fix PG getMessages and update messageLimit for all storage adapters
300
- - 0e17048: Throw mastra errors in storage packages
301
301
 
302
- ... 537 more lines hidden. See full changelog in package directory.
302
+ ... 545 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,22 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 0.13.11-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8388649]
8
+ - Updated dependencies [dd94a26]
9
+ - Updated dependencies [3ba6772]
10
+ - Updated dependencies [2fff911]
11
+ - @mastra/core@0.13.2-alpha.0
12
+
13
+ ## 0.13.10
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [cd0042e]
18
+ - @mastra/core@0.13.1
19
+
3
20
  ## 0.13.10-alpha.0
4
21
 
5
22
  ### Patch Changes
@@ -282,21 +299,4 @@
282
299
 
283
300
  ### Patch Changes
284
301
 
285
- - 07c7e7e: Slimmed down the number of tokens in each code example by removing extra keys from package.json files and adding an mcp docs config file into code examples to intentionally exclude some files - for ex the agent-network example went from 1300 LOC to 300
286
- - f043a63: Update transaction tool to use csv format
287
- - Updated dependencies [9dda1ac]
288
- - Updated dependencies [c984582]
289
- - Updated dependencies [7e801dd]
290
- - Updated dependencies [a606c75]
291
- - Updated dependencies [7aa70a4]
292
- - Updated dependencies [764f86a]
293
- - Updated dependencies [1760a1c]
294
- - Updated dependencies [038e5ae]
295
- - Updated dependencies [7dda16a]
296
- - Updated dependencies [5ebfcdd]
297
- - Updated dependencies [b2d0c91]
298
- - Updated dependencies [4e809ad]
299
- - Updated dependencies [57929df]
300
- - Updated dependencies [b7852ed]
301
-
302
- ... 1197 more lines hidden. See full changelog in package directory.
302
+ ... 1214 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,16 @@
1
1
  # @mastra/memory
2
2
 
3
+ ## 0.12.2-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 2fff911: Fix vnext working memory tool schema when model is incompatible with schema
8
+ - Updated dependencies [8388649]
9
+ - Updated dependencies [dd94a26]
10
+ - Updated dependencies [3ba6772]
11
+ - Updated dependencies [2fff911]
12
+ - @mastra/core@0.13.2-alpha.0
13
+
3
14
  ## 0.12.1
4
15
 
5
16
  ### Patch Changes
@@ -287,16 +298,5 @@
287
298
 
288
299
  ## 0.11.2
289
300
 
290
- ### Patch Changes
291
301
 
292
- - fb2a1b9: dependencies updates:
293
- - Updated dependency [`pg@^8.16.3` ↗︎](https://www.npmjs.com/package/pg/v/8.16.3) (from `^8.16.0`, in `dependencies`)
294
- - bc2bbdc: dependencies updates:
295
- - Updated dependency [`pg-pool@^3.10.1` ↗︎](https://www.npmjs.com/package/pg-pool/v/3.10.1) (from `^3.10.0`, in `dependencies`)
296
- - Updated dependencies [2873c7f]
297
- - Updated dependencies [1c1c6a1]
298
- - Updated dependencies [f8ce2cc]
299
- - Updated dependencies [8c846b6]
300
- - Updated dependencies [c7bbf1e]
301
-
302
- ... 2571 more lines hidden. See full changelog in package directory.
302
+ ... 2582 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,13 @@
1
1
  # @mastra/pg
2
2
 
3
+ ## 0.13.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 3e49b7a: Fix PostgreSQL vector metadata filtering for Memory system - changed default minScore to -1 to include all similarity results and added comprehensive metadata filtering tests
8
+ - Updated dependencies [cd0042e]
9
+ - @mastra/core@0.13.1
10
+
3
11
  ## 0.13.3-alpha.0
4
12
 
5
13
  ### Patch Changes
@@ -291,12 +299,4 @@
291
299
 
292
300
  ### Patch Changes
293
301
 
294
- - fb2a1b9: dependencies updates:
295
- - Updated dependency [`pg@^8.16.3` ↗︎](https://www.npmjs.com/package/pg/v/8.16.3) (from `^8.16.0`, in `dependencies`)
296
- - Updated dependencies [f8ce2cc]
297
- - Updated dependencies [8c846b6]
298
- - Updated dependencies [b790fd1]
299
- - Updated dependencies [d7ed04d]
300
- - Updated dependencies [f36e4f1]
301
-
302
- ... 1995 more lines hidden. See full changelog in package directory.
302
+ ... 2003 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,25 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 5.1.20-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 7aad750: Fix tool ui showing after message when chat is refreshed
8
+ - Updated dependencies [8388649]
9
+ - Updated dependencies [dd94a26]
10
+ - Updated dependencies [3ba6772]
11
+ - Updated dependencies [2fff911]
12
+ - @mastra/core@0.13.2-alpha.0
13
+ - @mastra/client-js@0.10.21-alpha.0
14
+
15
+ ## 5.1.19
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [cd0042e]
20
+ - @mastra/core@0.13.1
21
+ - @mastra/client-js@0.10.20
22
+
3
23
  ## 5.1.19-alpha.0
4
24
 
5
25
  ### Patch Changes
@@ -278,25 +298,5 @@
278
298
  - Updated dependencies [703ac71]
279
299
  - Updated dependencies [a723d69]
280
300
  - Updated dependencies [5889a31]
281
- - Updated dependencies [65e3395]
282
- - Updated dependencies [4933192]
283
- - Updated dependencies [d1c77a4]
284
- - Updated dependencies [bea9dd1]
285
- - Updated dependencies [dcd4802]
286
- - Updated dependencies [80c2b06]
287
- - Updated dependencies [7ba91fa]
288
- - Updated dependencies [6f6e651]
289
- - @mastra/client-js@0.10.15-alpha.2
290
- - @mastra/core@0.11.0-alpha.2
291
-
292
- ## 5.1.14-alpha.1
293
-
294
- ### Patch Changes
295
-
296
- - 8f89bcd: fix traces pagination + sharing trace view with cloud
297
- - 59f0dcd: Add light background color for step statuses
298
- - cf8d497: factorize tabs component between cloud and core
299
- - 80692d5: refactor: sharing only the UI and not data fetching for traces
300
- - @mastra/core@0.11.0-alpha.1
301
301
 
302
- ... 2373 more lines hidden. See full changelog in package directory.
302
+ ... 2393 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,16 @@
1
1
  # @mastra/rag
2
2
 
3
+ ## 1.0.8-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 1be6004: Added semantic markdown chunking strategy.
8
+ - Updated dependencies [8388649]
9
+ - Updated dependencies [dd94a26]
10
+ - Updated dependencies [3ba6772]
11
+ - Updated dependencies [2fff911]
12
+ - @mastra/core@0.13.2-alpha.0
13
+
3
14
  ## 1.0.7
4
15
 
5
16
  ### Patch Changes
@@ -287,16 +298,5 @@
287
298
 
288
299
  - 63f6b7d: dependencies updates:
289
300
  - Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
290
- - Updated dependencies [63f6b7d]
291
- - Updated dependencies [36f1c36]
292
- - Updated dependencies [10d352e]
293
- - Updated dependencies [53d3c37]
294
- - @mastra/core@0.10.6-alpha.0
295
-
296
- ## 0.10.3
297
-
298
- ### Patch Changes
299
-
300
- - 71999e9: dependencies updates:
301
301
 
302
- ... 2385 more lines hidden. See full changelog in package directory.
302
+ ... 2396 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,12 @@
1
1
  # @mastra/schema-compat
2
2
 
3
+ ## 0.10.7-alpha.0
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
+
3
10
  ## 0.10.6
4
11
 
5
12
  ### Patch Changes
@@ -1,5 +1,22 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 0.13.2-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8388649]
8
+ - Updated dependencies [dd94a26]
9
+ - Updated dependencies [3ba6772]
10
+ - Updated dependencies [2fff911]
11
+ - @mastra/core@0.13.2-alpha.0
12
+
13
+ ## 0.13.1
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [cd0042e]
18
+ - @mastra/core@0.13.1
19
+
3
20
  ## 0.13.1-alpha.0
4
21
 
5
22
  ### Patch Changes
@@ -281,22 +298,5 @@
281
298
  ### Patch Changes
282
299
 
283
300
  - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
284
- - 35b1155: Added "Semantic recall search" to playground UI chat sidebar, to search for messages and find them in the chat list
285
- - 65e3395: Add Scores playground-ui and add scorer hooks
286
- - bea9dd1: Refactor Agent class to consolidate LLM generate and stream methods and improve type safety. This includes
287
- extracting common logic into prepareLLMOptions(), enhancing type definitions, and fixing test annotations.
288
-
289
- This changeset entry follows the established format in your project:
290
- - Targets the @mastra/core package with a patch version bump
291
- - Provides a concise description of the refactoring and type safety improvements
292
- - Mentions the key changes without being too verbose
293
-
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
301
 
302
- ... 2717 more lines hidden. See full changelog in package directory.
302
+ ... 2734 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,13 @@
1
1
  # create-mastra
2
2
 
3
+ ## 0.10.21-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 7aad750: Fix tool ui showing after message when chat is refreshed
8
+
9
+ ## 0.10.20
10
+
3
11
  ## 0.10.20-alpha.0
4
12
 
5
13
  ## 0.10.19
@@ -290,13 +298,5 @@
290
298
  - 44ba52d: Add proper error message when installation of mastra fails
291
299
  - 311132e: move useWorkflow to playground instead of playground-ui
292
300
  - 3270d9d: Fix runtime context being undefined
293
- - 53d3c37: Get workflows from an agent if not found from Mastra instance #5083
294
- - fc677d7: For final result for a workflow
295
-
296
- ## 0.10.5-alpha.2
297
-
298
- ### Patch Changes
299
-
300
- - 5f2aa3e: Move workflow hooks to playground
301
301
 
302
- ... 1161 more lines hidden. See full changelog in package directory.
302
+ ... 1169 more lines hidden. See full changelog in package directory.