@mastra/mcp-docs-server 0.13.10 → 0.13.11-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 (60) 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 +26 -26
  4. package/.docs/organized/changelogs/%40mastra%2Fcore.md +30 -30
  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 +30 -30
  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 +26 -26
  12. package/.docs/organized/changelogs/%40mastra%2Fmemory.md +21 -21
  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 +26 -26
  18. package/.docs/organized/changelogs/create-mastra.md +11 -11
  19. package/.docs/organized/changelogs/mastra.md +31 -31
  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/cli/build.mdx +1 -0
  43. package/.docs/raw/reference/rag/chunk.mdx +51 -2
  44. package/.docs/raw/reference/scorers/answer-relevancy.mdx +6 -6
  45. package/.docs/raw/reference/scorers/bias.mdx +6 -6
  46. package/.docs/raw/reference/scorers/completeness.mdx +2 -2
  47. package/.docs/raw/reference/scorers/content-similarity.mdx +1 -1
  48. package/.docs/raw/reference/scorers/create-scorer.mdx +445 -0
  49. package/.docs/raw/reference/scorers/faithfulness.mdx +6 -6
  50. package/.docs/raw/reference/scorers/hallucination.mdx +6 -6
  51. package/.docs/raw/reference/scorers/keyword-coverage.mdx +2 -2
  52. package/.docs/raw/reference/scorers/mastra-scorer.mdx +116 -158
  53. package/.docs/raw/reference/scorers/toxicity.mdx +2 -2
  54. package/.docs/raw/scorers/custom-scorers.mdx +166 -268
  55. package/.docs/raw/scorers/overview.mdx +21 -13
  56. package/.docs/raw/server-db/local-dev-playground.mdx +3 -3
  57. package/package.json +5 -5
  58. package/.docs/raw/reference/agents/createTool.mdx +0 -241
  59. package/.docs/raw/reference/scorers/custom-code-scorer.mdx +0 -155
  60. 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,30 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 0.10.21-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [2e74797]
8
+ - Updated dependencies [63449d0]
9
+ - @mastra/core@0.13.2-alpha.1
10
+
11
+ ## 0.10.21-alpha.0
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [8388649]
16
+ - Updated dependencies [dd94a26]
17
+ - Updated dependencies [3ba6772]
18
+ - Updated dependencies [2fff911]
19
+ - @mastra/core@0.13.2-alpha.0
20
+
21
+ ## 0.10.20
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies [cd0042e]
26
+ - @mastra/core@0.13.1
27
+
3
28
  ## 0.10.20-alpha.0
4
29
 
5
30
  ### Patch Changes
@@ -274,29 +299,4 @@
274
299
 
275
300
  ## 0.10.15-alpha.2
276
301
 
277
- ### Patch Changes
278
-
279
- - 4832752: Do not set content-type header when making POST/PUT requests without a body
280
- - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
281
- - 2affc57: Fix output type of network loop
282
- - 032cb66: ClientJS
283
- - 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
-
302
- ... 1921 more lines hidden. See full changelog in package directory.
302
+ ... 1946 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,34 @@
1
1
  # @mastra/core
2
2
 
3
+ ## 0.13.2-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2e74797: Fix tool arguments being lost when tool-result messages arrive separately from tool-call messages or when messages are restored from database. Tool invocations now correctly preserve their arguments in all scenarios.
8
+ - 63449d0: Change the function signatures of `bundle`, `lint`, and internally `getToolsInputOptions` to expand the `toolsPaths` TypeScript type from `string[]` to `(string | string[])[]`.
9
+
10
+ ## 0.13.2-alpha.0
11
+
12
+ ### Patch Changes
13
+
14
+ - 8388649: Allow array of messages in vnext agent network
15
+ - dd94a26: Dont rely on the full language model for schema compat
16
+ - 3ba6772: MastraModelInput
17
+ - 2fff911: Fix vnext working memory tool schema when model is incompatible with schema
18
+ - Updated dependencies [dd94a26]
19
+ - Updated dependencies [2fff911]
20
+ - @mastra/schema-compat@0.10.7-alpha.0
21
+
22
+ ## 0.13.1
23
+
24
+ ### Patch Changes
25
+
26
+ - cd0042e: Fix tool call history not being accessible in agent conversations
27
+
28
+ 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.
29
+
30
+ The fix adds ID deduplication by appending `__split-N` suffixes to split messages and prevents double-suffixing when messages are re-converted between formats.
31
+
3
32
  ## 0.13.1-alpha.0
4
33
 
5
34
  ### Patch Changes
@@ -269,34 +298,5 @@
269
298
  - bea9dd1: Refactor Agent class to consolidate LLM generate and stream methods and improve type safety. This includes
270
299
  extracting common logic into prepareLLMOptions(), enhancing type definitions, and fixing test annotations.
271
300
 
272
- This changeset entry follows the established format in your project:
273
- - Targets the @mastra/core package with a patch version bump
274
- - Provides a concise description of the refactoring and type safety improvements
275
- - Mentions the key changes without being too verbose
276
-
277
- - dcd4802: scores mastra server
278
- - 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
+ ... 2526 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,34 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 0.13.2-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 63449d0: Change the function signatures of `bundle`, `lint`, and internally `getToolsInputOptions` to expand the `toolsPaths` TypeScript type from `string[]` to `(string | string[])[]`.
8
+ - Updated dependencies [2e74797]
9
+ - Updated dependencies [63449d0]
10
+ - @mastra/core@0.13.2-alpha.1
11
+ - @mastra/server@0.13.2-alpha.1
12
+
13
+ ## 0.13.2-alpha.0
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [8388649]
18
+ - Updated dependencies [dd94a26]
19
+ - Updated dependencies [3ba6772]
20
+ - Updated dependencies [2fff911]
21
+ - @mastra/core@0.13.2-alpha.0
22
+ - @mastra/server@0.13.2-alpha.0
23
+
24
+ ## 0.13.1
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies [cd0042e]
29
+ - @mastra/core@0.13.1
30
+ - @mastra/server@0.13.1
31
+
3
32
  ## 0.13.1-alpha.0
4
33
 
5
34
  ### Patch Changes
@@ -269,34 +298,5 @@
269
298
  - Updated dependencies [3f89307]
270
299
  - Updated dependencies [9eda7d4]
271
300
  - Updated dependencies [9d49408]
272
- - Updated dependencies [2ecf658]
273
- - Updated dependencies [7a7754f]
274
- - Updated dependencies [fc92d80]
275
- - Updated dependencies [23a6a7c]
276
- - Updated dependencies [09bca64]
277
- - @mastra/core@0.12.0-alpha.0
278
- - @mastra/server@0.12.0-alpha.0
279
-
280
- ## 0.11.1
281
-
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
+ ... 3317 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,30 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 0.13.11-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [2e74797]
8
+ - Updated dependencies [63449d0]
9
+ - @mastra/core@0.13.2-alpha.1
10
+
11
+ ## 0.13.11-alpha.0
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [8388649]
16
+ - Updated dependencies [dd94a26]
17
+ - Updated dependencies [3ba6772]
18
+ - Updated dependencies [2fff911]
19
+ - @mastra/core@0.13.2-alpha.0
20
+
21
+ ## 0.13.10
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies [cd0042e]
26
+ - @mastra/core@0.13.1
27
+
3
28
  ## 0.13.10-alpha.0
4
29
 
5
30
  ### Patch Changes
@@ -273,30 +298,5 @@
273
298
  - Updated dependencies [5ebfcdd]
274
299
  - Updated dependencies [b2d0c91]
275
300
  - Updated dependencies [4e809ad]
276
- - Updated dependencies [57929df]
277
- - Updated dependencies [b7852ed]
278
- - Updated dependencies [6320a61]
279
- - @mastra/core@0.10.9
280
-
281
- ## 0.13.3-alpha.0
282
-
283
- ### Patch Changes
284
-
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
301
 
302
- ... 1197 more lines hidden. See full changelog in package directory.
302
+ ... 1222 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,25 @@
1
1
  # @mastra/memory
2
2
 
3
+ ## 0.12.2-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - da62f49: When using a schema for working memory, make that the tools schema so the agent better understands the schema.
8
+ - Updated dependencies [2e74797]
9
+ - Updated dependencies [63449d0]
10
+ - @mastra/core@0.13.2-alpha.1
11
+
12
+ ## 0.12.2-alpha.0
13
+
14
+ ### Patch Changes
15
+
16
+ - 2fff911: Fix vnext working memory tool schema when model is incompatible with schema
17
+ - Updated dependencies [8388649]
18
+ - Updated dependencies [dd94a26]
19
+ - Updated dependencies [3ba6772]
20
+ - Updated dependencies [2fff911]
21
+ - @mastra/core@0.13.2-alpha.0
22
+
3
23
  ## 0.12.1
4
24
 
5
25
  ### Patch Changes
@@ -278,25 +298,5 @@
278
298
  - Updated dependencies [5237998]
279
299
  - Updated dependencies [37c1acd]
280
300
  - Updated dependencies [1aa60b1]
281
- - Updated dependencies [89ec9d4]
282
- - Updated dependencies [626b0f4]
283
- - Updated dependencies [c22a91f]
284
- - Updated dependencies [f7403ab]
285
- - Updated dependencies [6c89d7f]
286
- - @mastra/core@0.10.15-alpha.0
287
-
288
- ## 0.11.2
289
-
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
+ ... 2591 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.