@mastra/rag 2.6.0 → 2.6.1-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 (61) hide show
  1. package/LICENSE.md +6 -4
  2. package/dist/docs/SKILL.md +22 -18
  3. package/dist/docs/assets/SOURCE_MAP.json +1 -1
  4. package/dist/docs/references/docs-guides-context-engineering.md +299 -0
  5. package/dist/docs/references/reference-migrations-upgrade-to-v1-rag.md +2 -0
  6. package/dist/docs/references/reference-rag-chunk.md +2 -0
  7. package/dist/docs/references/reference-rag-chunking-and-embedding.md +2 -0
  8. package/dist/docs/references/reference-rag-database-config.md +2 -0
  9. package/dist/docs/references/reference-rag-document.md +2 -0
  10. package/dist/docs/references/reference-rag-extract-params.md +2 -0
  11. package/dist/docs/references/reference-rag-graph-rag-guide.md +2 -0
  12. package/dist/docs/references/reference-rag-graph-rag.md +2 -0
  13. package/dist/docs/references/reference-rag-overview.md +2 -0
  14. package/dist/docs/references/reference-rag-rerank.md +2 -0
  15. package/dist/docs/references/reference-rag-rerankWithScorer.md +2 -0
  16. package/dist/docs/references/reference-rag-retrieval.md +115 -5
  17. package/dist/docs/references/reference-tools-bedrock-kb-tool.md +2 -0
  18. package/dist/docs/references/reference-tools-document-chunker-tool.md +2 -0
  19. package/dist/docs/references/reference-tools-graph-rag-tool.md +2 -0
  20. package/dist/docs/references/reference-tools-vector-query-tool.md +2 -0
  21. package/dist/docs/references/reference-vectors-oracledb.md +2 -0
  22. package/dist/document/document.d.ts.map +1 -1
  23. package/dist/document/extractors/base.d.ts.map +1 -1
  24. package/dist/document/extractors/keywords.d.ts.map +1 -1
  25. package/dist/document/extractors/questions.d.ts.map +1 -1
  26. package/dist/document/extractors/schema.d.ts.map +1 -1
  27. package/dist/document/extractors/summary.d.ts.map +1 -1
  28. package/dist/document/extractors/title.d.ts.map +1 -1
  29. package/dist/document/prompts/base.d.ts.map +1 -1
  30. package/dist/document/schema/node.d.ts.map +1 -1
  31. package/dist/document/transformers/character.d.ts.map +1 -1
  32. package/dist/document/transformers/html.d.ts.map +1 -1
  33. package/dist/document/transformers/json.d.ts.map +1 -1
  34. package/dist/document/transformers/latex.d.ts.map +1 -1
  35. package/dist/document/transformers/markdown.d.ts.map +1 -1
  36. package/dist/document/transformers/semantic-markdown.d.ts.map +1 -1
  37. package/dist/document/transformers/sentence.d.ts.map +1 -1
  38. package/dist/document/transformers/text.d.ts.map +1 -1
  39. package/dist/document/transformers/token.d.ts.map +1 -1
  40. package/dist/graph-rag/index.d.ts.map +1 -1
  41. package/dist/index.cjs +4 -4
  42. package/dist/index.cjs.map +1 -1
  43. package/dist/index.js +4 -4
  44. package/dist/index.js.map +1 -1
  45. package/dist/rerank/relevance/cohere/index.d.ts.map +1 -1
  46. package/dist/rerank/relevance/mastra-agent/index.d.ts.map +1 -1
  47. package/dist/rerank/relevance/zeroentropy/index.d.ts.map +1 -1
  48. package/dist/tools/bedrock-knowledge-base.d.ts +1 -1
  49. package/dist/tools/document-chunker.d.ts +1 -1
  50. package/dist/tools/document-chunker.d.ts.map +1 -1
  51. package/dist/tools/graph-rag.d.ts +1 -1
  52. package/dist/tools/graph-rag.d.ts.map +1 -1
  53. package/dist/tools/types.d.ts.map +1 -1
  54. package/dist/tools/vector-query.d.ts +1 -1
  55. package/dist/tools/vector-query.d.ts.map +1 -1
  56. package/dist/utils/convert-sources.d.ts.map +1 -1
  57. package/dist/utils/tool-schemas.d.ts +1 -1
  58. package/dist/utils/tool-schemas.d.ts.map +1 -1
  59. package/dist/utils/vector-search.d.ts.map +1 -1
  60. package/package.json +7 -8
  61. package/CHANGELOG.md +0 -4352
package/CHANGELOG.md DELETED
@@ -1,4352 +0,0 @@
1
- # @mastra/rag
2
-
3
- ## 2.6.0
4
-
5
- ### Minor Changes
6
-
7
- - Added `serialize()` and `GraphRAG.deserialize()` so a knowledge graph can be saved and restored instead of rebuilt on every process start. Building a graph compares every chunk against every other chunk, which is slow for large document sets; now you can do that work once and reload the result. ([#21704](https://github.com/mastra-ai/mastra/pull/21704))
8
-
9
- ```typescript
10
- // Before: the graph had to be rebuilt every time
11
- const graphRag = new GraphRAG(1536, 0.7);
12
- graphRag.createGraph(documentChunks, embeddings);
13
-
14
- // After: build once, save the snapshot, and reload it later
15
- const snapshot = graphRag.serialize();
16
- await writeFile('./graph.json', JSON.stringify(snapshot));
17
-
18
- const restored = GraphRAG.deserialize(JSON.parse(await readFile('./graph.json', 'utf8')));
19
- restored.query({ query: queryEmbedding, topK: 10 });
20
- ```
21
-
22
- A snapshot is plain JSON, so you can store it in any database, file, or cache you already use. Loading a snapshot that does not match the graph's embedding dimension now fails immediately with a clear error instead of later during a query. Closes #3926.
23
-
24
- ### Patch Changes
25
-
26
- - Updated dependencies [[`587f6ef`](https://github.com/mastra-ai/mastra/commit/587f6efcfc25880b93760a8607d1cd381ec612fe), [`7e096f0`](https://github.com/mastra-ai/mastra/commit/7e096f02f0dddbf09b85d306458351245ed2f886), [`d7e6745`](https://github.com/mastra-ai/mastra/commit/d7e67456954863c55440ea9c49bc6ceb9949972d), [`6223446`](https://github.com/mastra-ai/mastra/commit/6223446ddce6166e96e0ba5e00d628b615dee8ca), [`15101bb`](https://github.com/mastra-ai/mastra/commit/15101bb53c0d934f31af6b8813b88191e382a5e5), [`4e7a421`](https://github.com/mastra-ai/mastra/commit/4e7a421dce8a48742f785d1e93ad2f43a572b282), [`c2c3deb`](https://github.com/mastra-ai/mastra/commit/c2c3debcf670c7082d0a5e553aa99818a864698c), [`d8308a2`](https://github.com/mastra-ai/mastra/commit/d8308a2be3c07e777393d1017a381dcae3890d30), [`b0a2a07`](https://github.com/mastra-ai/mastra/commit/b0a2a07800d42bd9823292e7db832374ed084c9c), [`74e5bd3`](https://github.com/mastra-ai/mastra/commit/74e5bd315b8b3a1e04cb6cf480bb0f5fc4951dc8), [`242e324`](https://github.com/mastra-ai/mastra/commit/242e3241e73cbd5c9bb86a31ebb49ca0256488d4), [`217e967`](https://github.com/mastra-ai/mastra/commit/217e9672d8b3160eb729d8e9f0044949e88da239), [`d774e89`](https://github.com/mastra-ai/mastra/commit/d774e8930c781df8c9effe3763e6b501c099b6cc), [`9c27a53`](https://github.com/mastra-ai/mastra/commit/9c27a53cd9d3de4f3f025bc387d94ce371c33f95), [`8f0a332`](https://github.com/mastra-ai/mastra/commit/8f0a3321bf180368d76fe7b36aa1a8f60f00b6de), [`0b4f108`](https://github.com/mastra-ai/mastra/commit/0b4f1089aa8d92e67c2a8e99726822c5ee410784), [`9acb50f`](https://github.com/mastra-ai/mastra/commit/9acb50f71cec9c362f06820033f90ae6b1f8282f), [`46e9e3f`](https://github.com/mastra-ai/mastra/commit/46e9e3f73babe1bc70080a596cf2ac0b9da48519), [`3f9a190`](https://github.com/mastra-ai/mastra/commit/3f9a19057c027155867b9317294ee4ca7bd0581a), [`dff25a1`](https://github.com/mastra-ai/mastra/commit/dff25a1103fa72ee082a9b6f805ebeb5ce400753), [`6db7a5d`](https://github.com/mastra-ai/mastra/commit/6db7a5dd3dd2b6f7ef75dcd804fcffef5fa83963), [`217e967`](https://github.com/mastra-ai/mastra/commit/217e9672d8b3160eb729d8e9f0044949e88da239), [`583e235`](https://github.com/mastra-ai/mastra/commit/583e23519c13af16c1746f9c49722d011216611b), [`b098de9`](https://github.com/mastra-ai/mastra/commit/b098de9d7cb9f672e0883a5c716465a3a689693d), [`e8808e3`](https://github.com/mastra-ai/mastra/commit/e8808e3d8eb585a2565be53e56a7e0e1477352a4), [`a77f8d4`](https://github.com/mastra-ai/mastra/commit/a77f8d4740d2178a74c41e4bf678b4fcd8fa0bb2), [`7f78585`](https://github.com/mastra-ai/mastra/commit/7f785857e401570e2ffb316911f126ed363aa537), [`33374ba`](https://github.com/mastra-ai/mastra/commit/33374ba359e4fb13eaa918ae925fe167a3c55414), [`940bf5c`](https://github.com/mastra-ai/mastra/commit/940bf5ccf04f2c9ebd8a1390431733222a03b1cd), [`c549e2f`](https://github.com/mastra-ai/mastra/commit/c549e2f40edc1cac5d9e74e82f90da22b48df084), [`58c43d3`](https://github.com/mastra-ai/mastra/commit/58c43d3f7cb2eeaeb8ac733ae71dde822348e588), [`ef6e295`](https://github.com/mastra-ai/mastra/commit/ef6e295b59bc25a5b61b633a89c97bcfce9fb465), [`208e1b3`](https://github.com/mastra-ai/mastra/commit/208e1b39f30f4b386e494394e9d71d96f0f90241), [`c938d34`](https://github.com/mastra-ai/mastra/commit/c938d34739936c8ecbabd67ad6a4a4396f41c4c6), [`88ddc7c`](https://github.com/mastra-ai/mastra/commit/88ddc7ce01d40175f13a3228b789a906779680bd), [`f2a4afd`](https://github.com/mastra-ai/mastra/commit/f2a4afd7e37e809669001ed17724b341a5c1f45e), [`d438148`](https://github.com/mastra-ai/mastra/commit/d438148e222c1e2fb3c652725ce75680962ebec4), [`ba05fe0`](https://github.com/mastra-ai/mastra/commit/ba05fe0738f70cb686777546e968237d09269142), [`40d358e`](https://github.com/mastra-ai/mastra/commit/40d358e29d55543803e64b49241122f598ffabc7), [`d26a8d4`](https://github.com/mastra-ai/mastra/commit/d26a8d4281f28414715b333c85bedaf70d0b2890), [`e80cd7e`](https://github.com/mastra-ai/mastra/commit/e80cd7e7683e7d732e1cc6784bcac1d2640d2ce3), [`ccbbcd9`](https://github.com/mastra-ai/mastra/commit/ccbbcd974eedff4367a54ed0e24c9ee742ab2f61), [`1d9a0ea`](https://github.com/mastra-ai/mastra/commit/1d9a0ea4a9901baee6cd56737243bd6d1f631ac0), [`677cdc6`](https://github.com/mastra-ai/mastra/commit/677cdc6af564dec29a13464d12b7ab2a4efc22e9), [`c549e2f`](https://github.com/mastra-ai/mastra/commit/c549e2f40edc1cac5d9e74e82f90da22b48df084), [`a7dd322`](https://github.com/mastra-ai/mastra/commit/a7dd32247d95afc539f483ca37f4594af0387f59), [`3f5c6f7`](https://github.com/mastra-ai/mastra/commit/3f5c6f728ea35da344248de9aa070f12849f3aa0), [`a318490`](https://github.com/mastra-ai/mastra/commit/a318490e17da32f338d50929c770d901a9b3dd72), [`b860493`](https://github.com/mastra-ai/mastra/commit/b86049391100e665d579f700c8a2034c036defc3), [`d4be8c1`](https://github.com/mastra-ai/mastra/commit/d4be8c1739d22d621e3f78790e1dd5eb5ecc3589), [`a5d2eb1`](https://github.com/mastra-ai/mastra/commit/a5d2eb10347eade1ae2816d88f466c25186c54a5), [`3667679`](https://github.com/mastra-ai/mastra/commit/3667679db057edfb086846d13369fdda4902ad65), [`49696e8`](https://github.com/mastra-ai/mastra/commit/49696e8e42f870674a0a58f5abcd22cc54dd2864), [`2ef2f23`](https://github.com/mastra-ai/mastra/commit/2ef2f230a7aed342e7dc3b2000cd42e4c43e08a7), [`763e0c6`](https://github.com/mastra-ai/mastra/commit/763e0c61e04d76ad9a9efd301aa57525ca0cbea9), [`20504b2`](https://github.com/mastra-ai/mastra/commit/20504b2ecebd0e077acda3d457ab57480a98ed3e), [`77e6b1b`](https://github.com/mastra-ai/mastra/commit/77e6b1bc4c46ce94fe501023fb4393c812ec6be3), [`c5f964d`](https://github.com/mastra-ai/mastra/commit/c5f964d3f77064e978f8066ec506eed77ba5c63c), [`23e0be2`](https://github.com/mastra-ai/mastra/commit/23e0be261381e49534b4ff3101c60ee64a946cbf), [`7fc8806`](https://github.com/mastra-ai/mastra/commit/7fc880627d3cbf995d31ea0e8b807bf15417e651), [`0e02eac`](https://github.com/mastra-ai/mastra/commit/0e02eacdb2e30e1697a41910b41163742a181dc1), [`4df174c`](https://github.com/mastra-ai/mastra/commit/4df174c32bddf093a82f273070b8380aef7c9e90), [`f7c25b5`](https://github.com/mastra-ai/mastra/commit/f7c25b5106ddfb48e591f98df7a51e0f2dd01dba), [`7aad631`](https://github.com/mastra-ai/mastra/commit/7aad631b43bc10db77d5b8c66b200d7a49d18bf2), [`512100a`](https://github.com/mastra-ai/mastra/commit/512100a7d8b7e9c920f2590c6b3612f5de0d3cff), [`e81744c`](https://github.com/mastra-ai/mastra/commit/e81744cd13c46619c142dc521dc0baac47607a84), [`f8f653f`](https://github.com/mastra-ai/mastra/commit/f8f653f10980d01a73706cc3c8689ca5e40ce808), [`dc09cc1`](https://github.com/mastra-ai/mastra/commit/dc09cc1083d861cde192c1cd235324dc75b8c731), [`9ef432b`](https://github.com/mastra-ai/mastra/commit/9ef432b6faa534b57b0d182a610e13dd9a7123ff), [`36b4649`](https://github.com/mastra-ai/mastra/commit/36b4649045a3a380cbab8ceca866db4086223aff), [`b9cf308`](https://github.com/mastra-ai/mastra/commit/b9cf30846f97f99ac1906ee8a68f4f2d117b0378), [`2e1d098`](https://github.com/mastra-ai/mastra/commit/2e1d0984e325fd319d32ea182f596b3170be3847), [`377eb81`](https://github.com/mastra-ai/mastra/commit/377eb81ce43b964e3a6b541df172da74a8ff3716), [`1794a79`](https://github.com/mastra-ai/mastra/commit/1794a79178c418004a7261b1ad9114066f7ef01d), [`0cdc5dc`](https://github.com/mastra-ai/mastra/commit/0cdc5dc69024957815da4f51acc4119eb4f447d7), [`5740ec6`](https://github.com/mastra-ai/mastra/commit/5740ec60c760ffdfbfaa59d603d03b847c864e05)]:
27
- - @mastra/core@1.60.0
28
-
29
- ## 2.6.0-alpha.0
30
-
31
- ### Minor Changes
32
-
33
- - Added `serialize()` and `GraphRAG.deserialize()` so a knowledge graph can be saved and restored instead of rebuilt on every process start. Building a graph compares every chunk against every other chunk, which is slow for large document sets; now you can do that work once and reload the result. ([#21704](https://github.com/mastra-ai/mastra/pull/21704))
34
-
35
- ```typescript
36
- // Before: the graph had to be rebuilt every time
37
- const graphRag = new GraphRAG(1536, 0.7);
38
- graphRag.createGraph(documentChunks, embeddings);
39
-
40
- // After: build once, save the snapshot, and reload it later
41
- const snapshot = graphRag.serialize();
42
- await writeFile('./graph.json', JSON.stringify(snapshot));
43
-
44
- const restored = GraphRAG.deserialize(JSON.parse(await readFile('./graph.json', 'utf8')));
45
- restored.query({ query: queryEmbedding, topK: 10 });
46
- ```
47
-
48
- A snapshot is plain JSON, so you can store it in any database, file, or cache you already use. Loading a snapshot that does not match the graph's embedding dimension now fails immediately with a clear error instead of later during a query. Closes #3926.
49
-
50
- ### Patch Changes
51
-
52
- - Updated dependencies [[`b0a2a07`](https://github.com/mastra-ai/mastra/commit/b0a2a07800d42bd9823292e7db832374ed084c9c), [`ccbbcd9`](https://github.com/mastra-ai/mastra/commit/ccbbcd974eedff4367a54ed0e24c9ee742ab2f61), [`3f5c6f7`](https://github.com/mastra-ai/mastra/commit/3f5c6f728ea35da344248de9aa070f12849f3aa0), [`77e6b1b`](https://github.com/mastra-ai/mastra/commit/77e6b1bc4c46ce94fe501023fb4393c812ec6be3), [`2e1d098`](https://github.com/mastra-ai/mastra/commit/2e1d0984e325fd319d32ea182f596b3170be3847)]:
53
- - @mastra/core@1.60.0-alpha.9
54
-
55
- ## 2.5.0
56
-
57
- ### Minor Changes
58
-
59
- - Added Amazon Bedrock Knowledge Base tool (`createBedrockKBTool`) to @mastra/rag. Enables document retrieval from Bedrock Managed Knowledge Bases with agentic retrieval and automatic fallback. ([#19521](https://github.com/mastra-ai/mastra/pull/19521))
60
-
61
- ```typescript
62
- import { createBedrockKBTool } from '@mastra/rag';
63
-
64
- const tool = createBedrockKBTool({
65
- knowledgeBaseId: 'YOUR_KB_ID',
66
- region: 'us-west-2',
67
- });
68
-
69
- const results = await tool.execute({ queryText: 'What is RAG?' });
70
- ```
71
-
72
- ### Patch Changes
73
-
74
- - Updated dependencies [[`e7109ee`](https://github.com/mastra-ai/mastra/commit/e7109ee6f731bacc79c885906f3c7dca8d8f013a), [`b8ce7ec`](https://github.com/mastra-ai/mastra/commit/b8ce7ec96e39343c6c2f36d12d68a9ad816c09f7), [`2e4624e`](https://github.com/mastra-ai/mastra/commit/2e4624edb6917e61249cb60ee377735e7af7e4a9), [`45a9147`](https://github.com/mastra-ai/mastra/commit/45a914741f578754d79d8b7de7b4e4f304d8e14a), [`a3a3624`](https://github.com/mastra-ai/mastra/commit/a3a3624f646b98e409424d8defccbd334da9e8b8), [`6246914`](https://github.com/mastra-ai/mastra/commit/62469146636911f3cbbe0880bd011c6a897a59a7), [`6445eba`](https://github.com/mastra-ai/mastra/commit/6445eba6020abac681aba1cc9289f446cb400cbe), [`86b7b77`](https://github.com/mastra-ai/mastra/commit/86b7b777980d30f66e1fd134a37d2af4c22e54cc), [`1c75e32`](https://github.com/mastra-ai/mastra/commit/1c75e32f7fc0b9fb6f548b4407feaec8a1440212), [`296dc9a`](https://github.com/mastra-ai/mastra/commit/296dc9af29f3616e786c7825ec32e0df92d754c5), [`f59032a`](https://github.com/mastra-ai/mastra/commit/f59032a73699443555a08a479e7ac578975784f2), [`cdd5c33`](https://github.com/mastra-ai/mastra/commit/cdd5c33ac6c7118a9f139e6dc0e14e6a8ae31658), [`3f73c07`](https://github.com/mastra-ai/mastra/commit/3f73c076727e8c36b4fff7a1b40290fb68957fa8), [`772c0c8`](https://github.com/mastra-ai/mastra/commit/772c0c897cec383258de2e6178147f8014767c7b), [`d7cf7fa`](https://github.com/mastra-ai/mastra/commit/d7cf7fafc1ae1b50bd8462dd0e6c671a8606db93), [`7c1ebb1`](https://github.com/mastra-ai/mastra/commit/7c1ebb15690c4b3f0eabb19077cf8af573311e57), [`0f9a448`](https://github.com/mastra-ai/mastra/commit/0f9a448502157e59f7b76f24360ad497168f5ef8), [`578bf2e`](https://github.com/mastra-ai/mastra/commit/578bf2e6a88e9d5b8bf502204e15a95dfbb679ae), [`c47165c`](https://github.com/mastra-ai/mastra/commit/c47165c983c87594c6952f1fd2fa51a90205034c), [`289f4ce`](https://github.com/mastra-ai/mastra/commit/289f4ce16e3293370440172132c52ee787cbc09f), [`df31eb0`](https://github.com/mastra-ai/mastra/commit/df31eb0c7087d782a0d9346e467f9a4af4b0eef6), [`9571e3a`](https://github.com/mastra-ai/mastra/commit/9571e3a06ed2c5220196460bf82a2129255c3a8b), [`4f16ff8`](https://github.com/mastra-ai/mastra/commit/4f16ff824bf2f9b0ddc93f210477c10c8a4fb1ab), [`b4c89b4`](https://github.com/mastra-ai/mastra/commit/b4c89b4371b0c86da57403ad1a3b3ef0681f3128), [`e6534fa`](https://github.com/mastra-ai/mastra/commit/e6534fab031216f6cb48c4c9907cbfdce9d60bc6), [`210cb7a`](https://github.com/mastra-ai/mastra/commit/210cb7a167998c7bbf72cb3b93e6eb0563330239), [`06b2d87`](https://github.com/mastra-ai/mastra/commit/06b2d87e63bcdd0ed59215c6789692b9b12de376), [`1c67d85`](https://github.com/mastra-ai/mastra/commit/1c67d85e9da8285662f4dbbf47e0378c3fee0747), [`ac01d63`](https://github.com/mastra-ai/mastra/commit/ac01d6355974aec73fdb8781449ed12bac582094), [`80a3324`](https://github.com/mastra-ai/mastra/commit/80a33245d3110204de6f56d61211523ffe338692), [`e44e8f3`](https://github.com/mastra-ai/mastra/commit/e44e8f370b66c339ddcaba946d33da6d3c3f06cd), [`d9d2881`](https://github.com/mastra-ai/mastra/commit/d9d2881ede6dd6c023d144215fc812062aed0890), [`a810a05`](https://github.com/mastra-ai/mastra/commit/a810a058f62ad407cfc1701e0be36ae91145d7cf), [`ba24be6`](https://github.com/mastra-ai/mastra/commit/ba24be662439c331ab23a600041f93803c89eca8), [`842b5fe`](https://github.com/mastra-ai/mastra/commit/842b5fe22b6a7fa811bd14e48eb9af523ac989f2), [`990611b`](https://github.com/mastra-ai/mastra/commit/990611ba76eb876d86c9c594371ae5f02f94b432), [`80bdf3a`](https://github.com/mastra-ai/mastra/commit/80bdf3ae16ade6ff63bde0cb16fa2df8ab7dd4dd), [`c967a5e`](https://github.com/mastra-ai/mastra/commit/c967a5eec150c5dc5418c4a4388982d1fb7ad27c), [`dc4a25d`](https://github.com/mastra-ai/mastra/commit/dc4a25d41af4e2fe97a816070eaec6aa963ab53b), [`9ba1247`](https://github.com/mastra-ai/mastra/commit/9ba12470c77f1c03642d720ce67e517e878f666e), [`fd96298`](https://github.com/mastra-ai/mastra/commit/fd96298a8367622f4ebfcaa97b5b6c1fbbd14564), [`66bbfb5`](https://github.com/mastra-ai/mastra/commit/66bbfb5f05b473d39f88c0e4a481ccac41634f3a), [`dc4a25d`](https://github.com/mastra-ai/mastra/commit/dc4a25d41af4e2fe97a816070eaec6aa963ab53b), [`f8da216`](https://github.com/mastra-ai/mastra/commit/f8da21633e7eb0e31c9ce0fc30567870d19416d3), [`4a09a9c`](https://github.com/mastra-ai/mastra/commit/4a09a9c0474ef643558fcb5f0edc542b82f1cab0), [`5f798b3`](https://github.com/mastra-ai/mastra/commit/5f798b3362e9bdf4d690f85245606e146eef60b9), [`6a84954`](https://github.com/mastra-ai/mastra/commit/6a84954a2667f85b6d59da652dab1bbff007ccb0), [`1e83a47`](https://github.com/mastra-ai/mastra/commit/1e83a4734ab61ba5926af6793e3569a78b72ed37), [`52d8ef0`](https://github.com/mastra-ai/mastra/commit/52d8ef03801f1deb7ee48532fc4190dd4a33916c), [`cdd5c33`](https://github.com/mastra-ai/mastra/commit/cdd5c33ac6c7118a9f139e6dc0e14e6a8ae31658), [`7fdcaa6`](https://github.com/mastra-ai/mastra/commit/7fdcaa66105d64290f9b14432a12ec99f39c4d3a), [`d6c56f9`](https://github.com/mastra-ai/mastra/commit/d6c56f951db3213330b98b0abafa9778c8770e58), [`e08e789`](https://github.com/mastra-ai/mastra/commit/e08e789c1bf4cd2fe46363f7a4728536ceccc9bd), [`bf936e2`](https://github.com/mastra-ai/mastra/commit/bf936e2c89b2ff0dad5695b873ddc009ba96d41e), [`7fb580a`](https://github.com/mastra-ai/mastra/commit/7fb580ac73fbcacf2ff00872a3395f73ae1b9fa5), [`ed5d606`](https://github.com/mastra-ai/mastra/commit/ed5d606739c5e3fbdfa9f272df7809aa5ab43b1d), [`f53d5bd`](https://github.com/mastra-ai/mastra/commit/f53d5bd4885b29e4ac29a428a6044088ea8d6aa3), [`32980a3`](https://github.com/mastra-ai/mastra/commit/32980a3e2413d0274ac244d32c37d910edc13f00), [`01a2943`](https://github.com/mastra-ai/mastra/commit/01a2943a7d886edefdff072bfa51f055bab54437), [`82e3365`](https://github.com/mastra-ai/mastra/commit/82e3365ef7c9bf7bee2e7a7029035ea262d68895), [`6104347`](https://github.com/mastra-ai/mastra/commit/61043473ba6bfd0a25156824e853e13165562e6c), [`35cc901`](https://github.com/mastra-ai/mastra/commit/35cc90102cf834a84827acaf9eee0b6d6d1e2a3b), [`a8b4cf0`](https://github.com/mastra-ai/mastra/commit/a8b4cf02823cffebc4751a53337dfacf097c1ae1), [`9571e3a`](https://github.com/mastra-ai/mastra/commit/9571e3a06ed2c5220196460bf82a2129255c3a8b), [`333785c`](https://github.com/mastra-ai/mastra/commit/333785c93cbb01e42c60167e995457c28897ddbf), [`bda2235`](https://github.com/mastra-ai/mastra/commit/bda22353ee28f2df0eaea555f7cae1549f979c0b), [`efd5c81`](https://github.com/mastra-ai/mastra/commit/efd5c81cc25fde3c2ddd86fc1178deb4ec176e19), [`1b482c2`](https://github.com/mastra-ai/mastra/commit/1b482c2d89244dd758c41e5f927a2b44041388d2), [`45bfb88`](https://github.com/mastra-ai/mastra/commit/45bfb88fd52f1dd3be20e2a38905777c96499c90), [`ff28284`](https://github.com/mastra-ai/mastra/commit/ff2828416f14daff9d956e6a352fdaa23c950979), [`4bcdfaf`](https://github.com/mastra-ai/mastra/commit/4bcdfaf0eac3199d7cb171b0a19a92c9c341eea4), [`e3b9307`](https://github.com/mastra-ai/mastra/commit/e3b9307098daefbfae2a52ae2ef51bc9fc701190), [`d6834c5`](https://github.com/mastra-ai/mastra/commit/d6834c5a7866b16734d23900163c2414ed70d791), [`f33264f`](https://github.com/mastra-ai/mastra/commit/f33264f517ae603279afd5c4251e2b40f6dd3618), [`689f2c4`](https://github.com/mastra-ai/mastra/commit/689f2c4b6c0835fe455702b01d21daa8abcd9331), [`fcd0667`](https://github.com/mastra-ai/mastra/commit/fcd0667a4e378be35c9a1b1eb19cce78fbfd7282), [`cfd0d9e`](https://github.com/mastra-ai/mastra/commit/cfd0d9ec77ec3c69dd96f79cdb579e03d79f22ce), [`acc3513`](https://github.com/mastra-ai/mastra/commit/acc3513b19f79bf0a7ec2998694580edca54086c), [`1670533`](https://github.com/mastra-ai/mastra/commit/1670533986f6bacf567746245348125e3a106448), [`a7eb4a1`](https://github.com/mastra-ai/mastra/commit/a7eb4a11450f6170274ed5141bffe821d4fdd5a6), [`0976933`](https://github.com/mastra-ai/mastra/commit/0976933142333ec78451feef265b68bcb45aa5e7), [`242b945`](https://github.com/mastra-ai/mastra/commit/242b94558777bfbdeb42cbfea84afff0b6ad0633), [`c52d346`](https://github.com/mastra-ai/mastra/commit/c52d3462ec831a5d95926ecd3d3373f5928ad2e5), [`af4636a`](https://github.com/mastra-ai/mastra/commit/af4636a74463275d71c1d13a38f7d2b738f128bf), [`01a2943`](https://github.com/mastra-ai/mastra/commit/01a2943a7d886edefdff072bfa51f055bab54437), [`2eabc09`](https://github.com/mastra-ai/mastra/commit/2eabc097d86d52fbd0123da36a7c874154cc384f), [`0023e79`](https://github.com/mastra-ai/mastra/commit/0023e7919431078280abd11c89d1edeae35fcc69), [`c2ad51e`](https://github.com/mastra-ai/mastra/commit/c2ad51e2467f901eecba8c9f4a45e22a50bd7c18), [`25ca73d`](https://github.com/mastra-ai/mastra/commit/25ca73d25dee7ce9f0ca72939e3a505c4db7257e), [`2f9ef3f`](https://github.com/mastra-ai/mastra/commit/2f9ef3f4ca06fc2dcdd5088c26b7f4da6a016791), [`e7eefcb`](https://github.com/mastra-ai/mastra/commit/e7eefcb162cda7c493e8c3bf43050ead0efbcb2c), [`fea5cae`](https://github.com/mastra-ai/mastra/commit/fea5caedc7e2cfea51784a15e015952692027abf), [`4d7aca2`](https://github.com/mastra-ai/mastra/commit/4d7aca2fe75f225c83d1502d63079568e6ec163f), [`e1cead1`](https://github.com/mastra-ai/mastra/commit/e1cead17b5f3653cf00d2f90cc19b113119c02ba), [`01a2943`](https://github.com/mastra-ai/mastra/commit/01a2943a7d886edefdff072bfa51f055bab54437), [`d9d93b2`](https://github.com/mastra-ai/mastra/commit/d9d93b25e4a65ad5fa153fa35be7ed149c8d587f), [`c4ec889`](https://github.com/mastra-ai/mastra/commit/c4ec889561c0264c43f66d04d587bee4ce35e792), [`4b59f78`](https://github.com/mastra-ai/mastra/commit/4b59f786cbc9a7d1ef07a07517dbd4b96865e99d), [`eeae63e`](https://github.com/mastra-ai/mastra/commit/eeae63e7fbe8e1f237adc69bca6e2ac13c5ca907), [`3dc97ea`](https://github.com/mastra-ai/mastra/commit/3dc97ea415fad353b48a13095fad1835933cc12a), [`94e7ae9`](https://github.com/mastra-ai/mastra/commit/94e7ae970b37c888cd1244ef013292639a2fe6d1), [`e6a2860`](https://github.com/mastra-ai/mastra/commit/e6a2860649cc51f87d32d78b766ae2126446ba07), [`7010c5d`](https://github.com/mastra-ai/mastra/commit/7010c5d15728bf9c5dfe4fb6b1bf80ce23bf143a), [`bab06b1`](https://github.com/mastra-ai/mastra/commit/bab06b18923873a584bdfc71a6b4ec7fb4727fb7), [`3d01cd3`](https://github.com/mastra-ai/mastra/commit/3d01cd387321b6f9c5cac31d487c84bf51b19c78), [`7bf3086`](https://github.com/mastra-ai/mastra/commit/7bf308663f0115ca74ad20554ade740f06640859), [`4c186a0`](https://github.com/mastra-ai/mastra/commit/4c186a017275f45e6ed4c09de0f89550e2d09e8c), [`b0fa077`](https://github.com/mastra-ai/mastra/commit/b0fa077bcbc9b08551846fe372a0d3d15b71ed72), [`0282e16`](https://github.com/mastra-ai/mastra/commit/0282e16115538c8e9b248b90f0748eb01cb5dc98), [`a8dd139`](https://github.com/mastra-ai/mastra/commit/a8dd1391a9fe9a6632c25809ef236980afa9a020), [`6a667b4`](https://github.com/mastra-ai/mastra/commit/6a667b4b7cd6a93fe41fcdd357b08c5a8c09b9ab), [`9be8878`](https://github.com/mastra-ai/mastra/commit/9be8878dcf0388e84fc4873e0eec27bd49b881a4), [`e5786be`](https://github.com/mastra-ai/mastra/commit/e5786be02bb903073082bd9d6da880ebaacc343f), [`2440e09`](https://github.com/mastra-ai/mastra/commit/2440e096ea6c2def1ccc1eb2d0f3f5b88c4af940), [`2093fbd`](https://github.com/mastra-ai/mastra/commit/2093fbd53bb744bae19ec89f6d73db9a66fbe8a7), [`a59049b`](https://github.com/mastra-ai/mastra/commit/a59049b1652a13efff66ac826326b5ed9a550342), [`7bd85ea`](https://github.com/mastra-ai/mastra/commit/7bd85ea7588b71c25ce9f4019c88f8539be5dcbc), [`83fa004`](https://github.com/mastra-ai/mastra/commit/83fa0044bfda8b703a83883dbd8bef204844d13f), [`a463cdf`](https://github.com/mastra-ai/mastra/commit/a463cdf1c95c3059e70f0bff27959e8558bb899d), [`e7a5da4`](https://github.com/mastra-ai/mastra/commit/e7a5da4ef8e4dd452d2f232961b4e682a85ffe43), [`7b4393d`](https://github.com/mastra-ai/mastra/commit/7b4393d557411fdcf07b0e30e5acaf7cc85154ae), [`0ea6b80`](https://github.com/mastra-ai/mastra/commit/0ea6b8001408ce02b56e8be0536b0fd8cbaf8ad2)]:
75
- - @mastra/core@1.58.0
76
-
77
- ## 2.5.0-alpha.0
78
-
79
- ### Minor Changes
80
-
81
- - Added Amazon Bedrock Knowledge Base tool (`createBedrockKBTool`) to @mastra/rag. Enables document retrieval from Bedrock Managed Knowledge Bases with agentic retrieval and automatic fallback. ([#19521](https://github.com/mastra-ai/mastra/pull/19521))
82
-
83
- ```typescript
84
- import { createBedrockKBTool } from '@mastra/rag';
85
-
86
- const tool = createBedrockKBTool({
87
- knowledgeBaseId: 'YOUR_KB_ID',
88
- region: 'us-west-2',
89
- });
90
-
91
- const results = await tool.execute({ queryText: 'What is RAG?' });
92
- ```
93
-
94
- ### Patch Changes
95
-
96
- - Updated dependencies [[`b4c89b4`](https://github.com/mastra-ai/mastra/commit/b4c89b4371b0c86da57403ad1a3b3ef0681f3128), [`e44e8f3`](https://github.com/mastra-ai/mastra/commit/e44e8f370b66c339ddcaba946d33da6d3c3f06cd), [`c967a5e`](https://github.com/mastra-ai/mastra/commit/c967a5eec150c5dc5418c4a4388982d1fb7ad27c), [`f53d5bd`](https://github.com/mastra-ai/mastra/commit/f53d5bd4885b29e4ac29a428a6044088ea8d6aa3), [`bda2235`](https://github.com/mastra-ai/mastra/commit/bda22353ee28f2df0eaea555f7cae1549f979c0b), [`a7eb4a1`](https://github.com/mastra-ai/mastra/commit/a7eb4a11450f6170274ed5141bffe821d4fdd5a6), [`2f9ef3f`](https://github.com/mastra-ai/mastra/commit/2f9ef3f4ca06fc2dcdd5088c26b7f4da6a016791), [`e7eefcb`](https://github.com/mastra-ai/mastra/commit/e7eefcb162cda7c493e8c3bf43050ead0efbcb2c), [`4d7aca2`](https://github.com/mastra-ai/mastra/commit/4d7aca2fe75f225c83d1502d63079568e6ec163f), [`c4ec889`](https://github.com/mastra-ai/mastra/commit/c4ec889561c0264c43f66d04d587bee4ce35e792), [`9be8878`](https://github.com/mastra-ai/mastra/commit/9be8878dcf0388e84fc4873e0eec27bd49b881a4)]:
97
- - @mastra/core@1.58.0-alpha.2
98
-
99
- ## 2.4.2
100
-
101
- ### Patch Changes
102
-
103
- - Added a typed `turbopuffer` entry to the `databaseConfig` option of `createVectorQueryTool`. This lets you set the Turbopuffer consistency level for vector queries. ([#19627](https://github.com/mastra-ai/mastra/pull/19627))
104
-
105
- ```typescript
106
- const vectorTool = createVectorQueryTool({
107
- vectorStoreName: 'turbopuffer',
108
- indexName: 'documents',
109
- model: embedModel,
110
- databaseConfig: {
111
- turbopuffer: {
112
- consistency: 'eventual', // lower latency, recently written data may not be visible yet
113
- },
114
- },
115
- });
116
- ```
117
-
118
- - Updated dependencies [[`ec857fc`](https://github.com/mastra-ai/mastra/commit/ec857fc79c264b53b38e16478c789b7177f2ad59), [`d7385ad`](https://github.com/mastra-ai/mastra/commit/d7385ad9e88f9e4f33d15c0ec0bfebedde0cbc2e), [`41a5392`](https://github.com/mastra-ai/mastra/commit/41a5392d9f6c5e18d6b227f0fc0ddf49c50774e9), [`3d6e539`](https://github.com/mastra-ai/mastra/commit/3d6e539272eb2ea0407034605ee1906b3be06b39), [`1426af2`](https://github.com/mastra-ai/mastra/commit/1426af24975879c000d13ac75673f630fcc970c1), [`a40adeb`](https://github.com/mastra-ai/mastra/commit/a40adeb222b961a56a58af56a106106525721b74), [`8a0d145`](https://github.com/mastra-ai/mastra/commit/8a0d145aadbdf7278665aceaaec364b35dd9bd94), [`bd2f1d2`](https://github.com/mastra-ai/mastra/commit/bd2f1d274d05e60e2366f005ea0d94d5cea0d5ff), [`e1f2fae`](https://github.com/mastra-ai/mastra/commit/e1f2faebaf048c3d4c2e2c01d293767c195d5794), [`63aa799`](https://github.com/mastra-ai/mastra/commit/63aa799c6b44eacc7806cda6846b7c5bbee06b37), [`b7e79c3`](https://github.com/mastra-ai/mastra/commit/b7e79c3c02ac5cd415db34ba0975ceafc1464333), [`675fbff`](https://github.com/mastra-ai/mastra/commit/675fbff84d3274391b33e852f76083c38a5514e5), [`da009e1`](https://github.com/mastra-ai/mastra/commit/da009e1aacd89ed94b8d1b2af09c9d4fe7c4db49), [`3b77e77`](https://github.com/mastra-ai/mastra/commit/3b77e7704936522e4769d29de1b5ea6901f302bd), [`c7d30cd`](https://github.com/mastra-ai/mastra/commit/c7d30cd86009c407df91105591f03cd6e3d2854d), [`21a0eb8`](https://github.com/mastra-ai/mastra/commit/21a0eb86746ba0b703acea360d4f84c6a5a493f2), [`8b20926`](https://github.com/mastra-ai/mastra/commit/8b20926cd59e2ba3d66458e062fa0e6e2ada3e68), [`975295d`](https://github.com/mastra-ai/mastra/commit/975295d418552f0d46a59edfef4c3ee555f9930a), [`73db8db`](https://github.com/mastra-ai/mastra/commit/73db8db90d69ab6153c7942749f624db0d96952d), [`6b1bf3b`](https://github.com/mastra-ai/mastra/commit/6b1bf3b9494bd51aa8f654c68c9355d6046fa2a1), [`35c2181`](https://github.com/mastra-ai/mastra/commit/35c2181e6a50e47c90ba36260db7c9723d54696f), [`0a2c22c`](https://github.com/mastra-ai/mastra/commit/0a2c22c902604439ec490319e14c17f331e0c84c), [`4cfdd64`](https://github.com/mastra-ai/mastra/commit/4cfdd645794feaea0c4ea711e70ecdfbef0c5b8e), [`b75d749`](https://github.com/mastra-ai/mastra/commit/b75d749621ff5d17e86bcb4ee809d301fb4f7cf3), [`821648b`](https://github.com/mastra-ai/mastra/commit/821648bf2871ef840100c7bacbecf676010bd12a), [`de86fd7`](https://github.com/mastra-ai/mastra/commit/de86fd7119f0438381d1a642e3d258143c0b9c29), [`2745031`](https://github.com/mastra-ai/mastra/commit/2745031d1d4a4978f037092da371428c32e2842a), [`b4b7ea8`](https://github.com/mastra-ai/mastra/commit/b4b7ea8733f033fc441ea47ed03f6afb17ec2248), [`3a8024c`](https://github.com/mastra-ai/mastra/commit/3a8024ce615f8aa89479c0d71fe61d10bb0040be), [`35865a5`](https://github.com/mastra-ai/mastra/commit/35865a53e194aa9634d6a70a97010e7a6b9d58b1), [`74faf8b`](https://github.com/mastra-ai/mastra/commit/74faf8bd9c1018f2492653c06b1e25fc8300e9e6), [`ef03fbc`](https://github.com/mastra-ai/mastra/commit/ef03fbcc556bcbc04c9b3d06fab88771ecaa043c), [`675fbff`](https://github.com/mastra-ai/mastra/commit/675fbff84d3274391b33e852f76083c38a5514e5), [`70687f7`](https://github.com/mastra-ai/mastra/commit/70687f7e495a322a02070b4a67cb0c77a5ca91ec), [`1fadac4`](https://github.com/mastra-ai/mastra/commit/1fadac44537caeefe81f9f775ae2f2f3d94e9069), [`73db8db`](https://github.com/mastra-ai/mastra/commit/73db8db90d69ab6153c7942749f624db0d96952d), [`76b7181`](https://github.com/mastra-ai/mastra/commit/76b71810366e6d90b9d3973149d1c7ba3659ffb9), [`792ec9a`](https://github.com/mastra-ai/mastra/commit/792ec9a0869bab8274cf5e0ed2840738737a1607), [`712b864`](https://github.com/mastra-ai/mastra/commit/712b864aa1ed12b14c54390ec17b69de163c37f7), [`85e4fb5`](https://github.com/mastra-ai/mastra/commit/85e4fb50087a81c74df3a762f53b56373db0b912), [`0c0e8d7`](https://github.com/mastra-ai/mastra/commit/0c0e8d7becd4d1445c656b78d5d845f606c1ff9d), [`a7bbe77`](https://github.com/mastra-ai/mastra/commit/a7bbe773577f60bc4761b534ef7ec6b476332dad), [`72e437c`](https://github.com/mastra-ai/mastra/commit/72e437c515942c80b9def5b026e0bdee61b469d9), [`8f7a5de`](https://github.com/mastra-ai/mastra/commit/8f7a5dedc246cdc938bb65516703cf9b27b03756), [`a7bbe77`](https://github.com/mastra-ai/mastra/commit/a7bbe773577f60bc4761b534ef7ec6b476332dad), [`11f6cd9`](https://github.com/mastra-ai/mastra/commit/11f6cd96fe42582403416608beb212cc1a2cc79e), [`ef03c0c`](https://github.com/mastra-ai/mastra/commit/ef03c0cfc62367a458e4cc56462e2148b35681c5), [`4fb4d88`](https://github.com/mastra-ai/mastra/commit/4fb4d881bc107acee13890ad4d78661016c510ed), [`4e68363`](https://github.com/mastra-ai/mastra/commit/4e683634f94ebd062d26a3bb6093a8dfc7263d37), [`c328769`](https://github.com/mastra-ai/mastra/commit/c3287698ff8ef98dba86d415faa566fa3e5f4d56), [`9f7c67a`](https://github.com/mastra-ai/mastra/commit/9f7c67abeeb52c41c51a9b5edee60b62afe7cd8d), [`3b65e68`](https://github.com/mastra-ai/mastra/commit/3b65e68d7f1c771c7a70eea42d83fefdd28cad88), [`4eba27a`](https://github.com/mastra-ai/mastra/commit/4eba27adcf60f991df0e62f94b3e75b4e67f3b4b), [`c701be3`](https://github.com/mastra-ai/mastra/commit/c701be32d7d9aa94a66da8c6cc38dcac6856f464), [`db650ce`](https://github.com/mastra-ai/mastra/commit/db650ce490348914e85b93651d83acdf8f2a4c31), [`232fcbc`](https://github.com/mastra-ai/mastra/commit/232fcbc14fce625dd672ba043329c0b732c62be2), [`6354eeb`](https://github.com/mastra-ai/mastra/commit/6354eeb32efa9f5f68f51dda394e90e2ee76f1fb), [`a8799bb`](https://github.com/mastra-ai/mastra/commit/a8799bb8e44f4a60d01e4e2acd3448ff80bf14f8), [`3d6e539`](https://github.com/mastra-ai/mastra/commit/3d6e539272eb2ea0407034605ee1906b3be06b39), [`e3868e2`](https://github.com/mastra-ai/mastra/commit/e3868e22babfffd0133771669ca724501c2dd58e), [`9251370`](https://github.com/mastra-ai/mastra/commit/9251370ad413af464aa22d7566338bec5613e8de), [`3491666`](https://github.com/mastra-ai/mastra/commit/34916663c4fdd43b48c21f4ab2d5fb6dcccc94f9), [`c0bec73`](https://github.com/mastra-ai/mastra/commit/c0bec732c93d1a22ae5e51ed66cf8cacca8bd6a6)]:
119
- - @mastra/core@1.52.0
120
-
121
- ## 2.4.2-alpha.0
122
-
123
- ### Patch Changes
124
-
125
- - Added a typed `turbopuffer` entry to the `databaseConfig` option of `createVectorQueryTool`. This lets you set the Turbopuffer consistency level for vector queries. ([#19627](https://github.com/mastra-ai/mastra/pull/19627))
126
-
127
- ```typescript
128
- const vectorTool = createVectorQueryTool({
129
- vectorStoreName: 'turbopuffer',
130
- indexName: 'documents',
131
- model: embedModel,
132
- databaseConfig: {
133
- turbopuffer: {
134
- consistency: 'eventual', // lower latency, recently written data may not be visible yet
135
- },
136
- },
137
- });
138
- ```
139
-
140
- - Updated dependencies [[`ec857fc`](https://github.com/mastra-ai/mastra/commit/ec857fc79c264b53b38e16478c789b7177f2ad59), [`e1f2fae`](https://github.com/mastra-ai/mastra/commit/e1f2faebaf048c3d4c2e2c01d293767c195d5794), [`63aa799`](https://github.com/mastra-ai/mastra/commit/63aa799c6b44eacc7806cda6846b7c5bbee06b37), [`73db8db`](https://github.com/mastra-ai/mastra/commit/73db8db90d69ab6153c7942749f624db0d96952d), [`73db8db`](https://github.com/mastra-ai/mastra/commit/73db8db90d69ab6153c7942749f624db0d96952d), [`76b7181`](https://github.com/mastra-ai/mastra/commit/76b71810366e6d90b9d3973149d1c7ba3659ffb9), [`0c0e8d7`](https://github.com/mastra-ai/mastra/commit/0c0e8d7becd4d1445c656b78d5d845f606c1ff9d), [`9f7c67a`](https://github.com/mastra-ai/mastra/commit/9f7c67abeeb52c41c51a9b5edee60b62afe7cd8d), [`3b65e68`](https://github.com/mastra-ai/mastra/commit/3b65e68d7f1c771c7a70eea42d83fefdd28cad88), [`e3868e2`](https://github.com/mastra-ai/mastra/commit/e3868e22babfffd0133771669ca724501c2dd58e)]:
141
- - @mastra/core@1.52.0-alpha.5
142
-
143
- ## 2.4.1
144
-
145
- ### Patch Changes
146
-
147
- - Fixed token chunking to reject overlaps that cannot advance. ([#19213](https://github.com/mastra-ai/mastra/pull/19213))
148
-
149
- - Fixed RAG rerank observability spans to record scoring failures before rethrowing. ([#19246](https://github.com/mastra-ai/mastra/pull/19246))
150
-
151
- - Fixed RAG filter parsing to reject JSON string filters that parse to non-object values. ([#19244](https://github.com/mastra-ai/mastra/pull/19244))
152
-
153
- - Fixed Mastra agent relevance scoring to reject invalid model score output. ([#19251](https://github.com/mastra-ai/mastra/pull/19251))
154
-
155
- - Fixed character chunking to preserve content with custom length functions. ([#19214](https://github.com/mastra-ai/mastra/pull/19214))
156
-
157
- - Fixed Cohere relevance scoring to use COHERE_API_KEY by default and accept zero relevance scores. ([#19238](https://github.com/mastra-ai/mastra/pull/19238))
158
-
159
- - Updated dependencies [[`bd6d240`](https://github.com/mastra-ai/mastra/commit/bd6d2402db93dddaef0721667e7e8a030e7c6e16), [`0111486`](https://github.com/mastra-ai/mastra/commit/01114867612593eef5cfa2fda6a1194dfedda841), [`96a3749`](https://github.com/mastra-ai/mastra/commit/96a37492235f5b8076b3e3177d83ed5a5e44a640), [`fe1bda0`](https://github.com/mastra-ai/mastra/commit/fe1bda06f6af92a694a51712db747cda1e7185f0), [`25e7c12`](https://github.com/mastra-ai/mastra/commit/25e7c126a770069ae7fb7ecf1d2adb40e017b009), [`1ce5121`](https://github.com/mastra-ai/mastra/commit/1ce512155d122bb21f47d98383e82ffbf84b39e8), [`fb8aea3`](https://github.com/mastra-ai/mastra/commit/fb8aea384291e77311be3a64ee1717320d5c3c73), [`4adc391`](https://github.com/mastra-ai/mastra/commit/4adc3911075249c352bb4832d2471922826344de), [`a5c6337`](https://github.com/mastra-ai/mastra/commit/a5c6337d23c7686c81a32ce62f550f610543a240), [`3cfc47a`](https://github.com/mastra-ai/mastra/commit/3cfc47a6b89940aadd0f46fb01ae9624a73a865d), [`2bb7817`](https://github.com/mastra-ai/mastra/commit/2bb78176112fde628483de2830528f7eee911e56), [`51d9870`](https://github.com/mastra-ai/mastra/commit/51d987032c689c2855374d0f244f5d654da809d1), [`5cab274`](https://github.com/mastra-ai/mastra/commit/5cab2744250e22d12fefa7b32637dce224233cee), [`7fa27d3`](https://github.com/mastra-ai/mastra/commit/7fa27d3b6f5ed68cd34e454a4d3ad9c482a0cfbc), [`8b97958`](https://github.com/mastra-ai/mastra/commit/8b979589f9aa59ba67cac565949475f2ffeb4ac3), [`8410541`](https://github.com/mastra-ai/mastra/commit/84105412c60ecd3bb33a9838146f59c4b588228f), [`a58dcbb`](https://github.com/mastra-ai/mastra/commit/a58dcbb546d7e1d65ebdc1f39e55f0908fcd9391), [`aa38805`](https://github.com/mastra-ai/mastra/commit/aa38805b878b827403be785eb90688d7172f5a40), [`153bd3b`](https://github.com/mastra-ai/mastra/commit/153bd3b396bdfed6b74cf43de12db8fd2d83c04a), [`45a8e65`](https://github.com/mastra-ai/mastra/commit/45a8e65e1556d1362cb3f25187023c36de26661d), [`e955965`](https://github.com/mastra-ai/mastra/commit/e955965dce575a903e37cf054d28ea99aa48785e), [`2d22570`](https://github.com/mastra-ai/mastra/commit/2d22570c7dfdd02123d0ecc529efb05ccba2d9fc), [`07bb863`](https://github.com/mastra-ai/mastra/commit/07bb8631919c6f7cf377dccd45b096e0f17fbed0), [`c8ed116`](https://github.com/mastra-ai/mastra/commit/c8ed11699f62bcac70102ab4ec84d80d20541da6), [`01b338c`](https://github.com/mastra-ai/mastra/commit/01b338c56271f0219606710e3e8b26dee27ac6c2), [`a99eae8`](https://github.com/mastra-ai/mastra/commit/a99eae8908e500c1b2d12f9d277be616b98617a5), [`860ef7e`](https://github.com/mastra-ai/mastra/commit/860ef7e77d92b63469cbe5857aa1e626197e43e9), [`17e818c`](https://github.com/mastra-ai/mastra/commit/17e818c51a958ba90641b1a959dc38faf8c034e9), [`edce8d2`](https://github.com/mastra-ai/mastra/commit/edce8d2769f19e27a05737c627af2d765472a4f8), [`8a586ec`](https://github.com/mastra-ai/mastra/commit/8a586eca9a4914f31dff6140d0d45ac375b00669), [`4451dfe`](https://github.com/mastra-ai/mastra/commit/4451dfe857428e7abcc0261a507a2e186dae6d47), [`8b7361d`](https://github.com/mastra-ai/mastra/commit/8b7361d35de68b80d05d30a74e0c69e7218fd612), [`1d39058`](https://github.com/mastra-ai/mastra/commit/1d39058e548efd691799985d5c8af2737f1c3bd2), [`3927473`](https://github.com/mastra-ai/mastra/commit/392747323ddb10c643d12be7b9ae913159dfaeed), [`dce50dc`](https://github.com/mastra-ai/mastra/commit/dce50dc9a1c1fcd0f427bb5f6250ec74910cb04b), [`fd13f8e`](https://github.com/mastra-ai/mastra/commit/fd13f8e21990f9904c3eedba3a626bb4a929cdb8), [`634caff`](https://github.com/mastra-ai/mastra/commit/634caff29a9200ad058b67d53f96d9e5832fb8a2), [`f703f87`](https://github.com/mastra-ai/mastra/commit/f703f878de072d51fda557f9c50867d8252bef05), [`3e26c87`](https://github.com/mastra-ai/mastra/commit/3e26c87de0c5bc2583b795ce6ca5889b6b161acb), [`33f2b88`](https://github.com/mastra-ai/mastra/commit/33f2b88842c09a567f906fac4cb61cd5277ced59), [`177010f`](https://github.com/mastra-ai/mastra/commit/177010ff096d2e4b28d89803be5b1a4cad2a0d6b), [`0ad646f`](https://github.com/mastra-ai/mastra/commit/0ad646f71a530f2454664299e5e01bfd13fa12e5), [`b486abf`](https://github.com/mastra-ai/mastra/commit/b486abfa2a7528c6f527e4015c819ea9fa54aaad), [`54a51e0`](https://github.com/mastra-ai/mastra/commit/54a51e0a484fe1ebad3fb1f7ef5282a075709eb7), [`c43f3a9`](https://github.com/mastra-ai/mastra/commit/c43f3a9d1efde99b38789364ba4d0ba670f430e3), [`a5008f2`](https://github.com/mastra-ai/mastra/commit/a5008f22ae710ad9402ea9f2547d8c02f74d384b), [`e2d5f37`](https://github.com/mastra-ai/mastra/commit/e2d5f373bd289be534d5f8694d34465010533df6), [`4ce0163`](https://github.com/mastra-ai/mastra/commit/4ce0163dc86e675a86809685c8ce6c49f1aeb87e), [`4378341`](https://github.com/mastra-ai/mastra/commit/43783412df5ea3dd35f5b1f6e4851e79c346fc89)]:
160
- - @mastra/core@1.51.0
161
-
162
- ## 2.4.1-alpha.0
163
-
164
- ### Patch Changes
165
-
166
- - Fixed token chunking to reject overlaps that cannot advance. ([#19213](https://github.com/mastra-ai/mastra/pull/19213))
167
-
168
- - Fixed RAG rerank observability spans to record scoring failures before rethrowing. ([#19246](https://github.com/mastra-ai/mastra/pull/19246))
169
-
170
- - Fixed RAG filter parsing to reject JSON string filters that parse to non-object values. ([#19244](https://github.com/mastra-ai/mastra/pull/19244))
171
-
172
- - Fixed Mastra agent relevance scoring to reject invalid model score output. ([#19251](https://github.com/mastra-ai/mastra/pull/19251))
173
-
174
- - Fixed character chunking to preserve content with custom length functions. ([#19214](https://github.com/mastra-ai/mastra/pull/19214))
175
-
176
- - Fixed Cohere relevance scoring to use COHERE_API_KEY by default and accept zero relevance scores. ([#19238](https://github.com/mastra-ai/mastra/pull/19238))
177
-
178
- - Updated dependencies [[`a5c6337`](https://github.com/mastra-ai/mastra/commit/a5c6337d23c7686c81a32ce62f550f610543a240), [`8b97958`](https://github.com/mastra-ai/mastra/commit/8b979589f9aa59ba67cac565949475f2ffeb4ac3), [`8410541`](https://github.com/mastra-ai/mastra/commit/84105412c60ecd3bb33a9838146f59c4b588228f), [`01b338c`](https://github.com/mastra-ai/mastra/commit/01b338c56271f0219606710e3e8b26dee27ac6c2), [`8b7361d`](https://github.com/mastra-ai/mastra/commit/8b7361d35de68b80d05d30a74e0c69e7218fd612), [`c43f3a9`](https://github.com/mastra-ai/mastra/commit/c43f3a9d1efde99b38789364ba4d0ba670f430e3)]:
179
- - @mastra/core@1.51.0-alpha.4
180
-
181
- ## 2.4.0
182
-
183
- ### Minor Changes
184
-
185
- - Added MongoDBConfig to DatabaseConfig, exposing numCandidates for MongoDB Atlas Vector Search queries via the RAG tool layer. ([#18393](https://github.com/mastra-ai/mastra/pull/18393))
186
-
187
- ### Patch Changes
188
-
189
- - Updated dependencies [[`b9a2961`](https://github.com/mastra-ai/mastra/commit/b9a2961c1be81e3639c0879e58588c26dd0ae866), [`b33c77d`](https://github.com/mastra-ai/mastra/commit/b33c77d5293f14a794f3ec38dc947a6676de2764), [`1274eb3`](https://github.com/mastra-ai/mastra/commit/1274eb3a9508f579ceb3187fbce34408222d4b71), [`cdd5f93`](https://github.com/mastra-ai/mastra/commit/cdd5f939cefa67390629704dce92563ccbf492b2), [`1274eb3`](https://github.com/mastra-ai/mastra/commit/1274eb3a9508f579ceb3187fbce34408222d4b71), [`0ac14ce`](https://github.com/mastra-ai/mastra/commit/0ac14cea48e1b0a7857782153c78f7242fdf7e1a), [`9566d27`](https://github.com/mastra-ai/mastra/commit/9566d27ead3d95bdbe5a69e5a082a68222829cf2), [`8be63b0`](https://github.com/mastra-ai/mastra/commit/8be63b015fb8d72cea1220f05e7dc3bb997cc249), [`1009f77`](https://github.com/mastra-ai/mastra/commit/1009f772aa40016b49267c8566d0c29f6a16aa3c), [`1b8728a`](https://github.com/mastra-ai/mastra/commit/1b8728a57fd844205a452b0b4216d20ff60c784a), [`23c31de`](https://github.com/mastra-ai/mastra/commit/23c31de96ed8153402dcf092ac84b27a0c3638c1), [`0368766`](https://github.com/mastra-ai/mastra/commit/0368766744c7ea3df4d6059e2cc15f7bdf55f5a6), [`6f578ac`](https://github.com/mastra-ai/mastra/commit/6f578acba84930b406b2a0700b17cfdfaf5aae56), [`345eecc`](https://github.com/mastra-ai/mastra/commit/345eecce6ba519b5d987f0e10b5de4c8e5734580), [`1917c53`](https://github.com/mastra-ai/mastra/commit/1917c53b19dac43926f29c496893b0686462dca4), [`c01012f`](https://github.com/mastra-ai/mastra/commit/c01012f50368d29eb3fc3764df42d48291973d23), [`705ba98`](https://github.com/mastra-ai/mastra/commit/705ba98726d388a596e896225f237907ca6807a9), [`95857bc`](https://github.com/mastra-ai/mastra/commit/95857bcd6669da7193f503e803f0d72a2bd66be6), [`e62c108`](https://github.com/mastra-ai/mastra/commit/e62c108409dfd6a6cac0a48ec39c5cc81d24fd52), [`2866f04`](https://github.com/mastra-ai/mastra/commit/2866f04953edb78c1637fa45cc53abe24122edcb), [`ee14cae`](https://github.com/mastra-ai/mastra/commit/ee14cae244805783bde518a6142de28b744b169c), [`e84e791`](https://github.com/mastra-ai/mastra/commit/e84e79174031d7bc8793ca6c805eb38b06e7cfb1), [`c2f0b7f`](https://github.com/mastra-ai/mastra/commit/c2f0b7f1370f4428d165f51f0d1d9a48331cc257), [`213feb8`](https://github.com/mastra-ai/mastra/commit/213feb87bfdd1d8ec00ea660e218f9bcfcb34e7b), [`58e287b`](https://github.com/mastra-ai/mastra/commit/58e287b1edaf978b13745a1795989cad3826e82b), [`e420b3c`](https://github.com/mastra-ai/mastra/commit/e420b3c3ffc98bbc5b791897ea390bb47af99696), [`be875ed`](https://github.com/mastra-ai/mastra/commit/be875ed43f856742ce58529f531b5ea0ae6911f3), [`9eefdc0`](https://github.com/mastra-ai/mastra/commit/9eefdc0ac03f989718c6d835334940a977938895), [`bfbbb01`](https://github.com/mastra-ai/mastra/commit/bfbbb01bd845ba54cdc0c678c277d08a7cb847e4), [`7d112ca`](https://github.com/mastra-ai/mastra/commit/7d112ca17078479b2659b88ba1c85b936cfc111c)]:
190
- - @mastra/core@1.48.0
191
-
192
- ## 2.4.0-alpha.0
193
-
194
- ### Minor Changes
195
-
196
- - Added MongoDBConfig to DatabaseConfig, exposing numCandidates for MongoDB Atlas Vector Search queries via the RAG tool layer. ([#18393](https://github.com/mastra-ai/mastra/pull/18393))
197
-
198
- ### Patch Changes
199
-
200
- - Updated dependencies [[`8be63b0`](https://github.com/mastra-ai/mastra/commit/8be63b015fb8d72cea1220f05e7dc3bb997cc249), [`345eecc`](https://github.com/mastra-ai/mastra/commit/345eecce6ba519b5d987f0e10b5de4c8e5734580), [`ee14cae`](https://github.com/mastra-ai/mastra/commit/ee14cae244805783bde518a6142de28b744b169c)]:
201
- - @mastra/core@1.48.0-alpha.7
202
-
203
- ## 2.3.0
204
-
205
- ### Minor Changes
206
-
207
- - Random bump ([#18178](https://github.com/mastra-ai/mastra/pull/18178))
208
-
209
- ### Patch Changes
210
-
211
- - Updated dependencies [[`7c0d868`](https://github.com/mastra-ai/mastra/commit/7c0d868d97d0fdbc04c14d0166dbf44d4c5a4a62), [`d9d2273`](https://github.com/mastra-ai/mastra/commit/d9d2273c702690c9a26eab2aebea879701d4355a), [`b04369d`](https://github.com/mastra-ai/mastra/commit/b04369d6b167c698ef103981171a8bf92808e756), [`8f3c262`](https://github.com/mastra-ai/mastra/commit/8f3c262587b335588a02d96b17fd6aca34c885b3)]:
212
- - @mastra/core@1.45.0
213
-
214
- ## 2.3.0-alpha.0
215
-
216
- ### Minor Changes
217
-
218
- - Random bump ([#18178](https://github.com/mastra-ai/mastra/pull/18178))
219
-
220
- ### Patch Changes
221
-
222
- - Updated dependencies [[`7c0d868`](https://github.com/mastra-ai/mastra/commit/7c0d868d97d0fdbc04c14d0166dbf44d4c5a4a62), [`d9d2273`](https://github.com/mastra-ai/mastra/commit/d9d2273c702690c9a26eab2aebea879701d4355a), [`b04369d`](https://github.com/mastra-ai/mastra/commit/b04369d6b167c698ef103981171a8bf92808e756), [`8f3c262`](https://github.com/mastra-ai/mastra/commit/8f3c262587b335588a02d96b17fd6aca34c885b3)]:
223
- - @mastra/core@1.45.0-alpha.0
224
-
225
- ## 2.2.2
226
-
227
- ### Patch Changes
228
-
229
- - Security remediation for the 2026-06-17 "easy-day-js" supply-chain incident. Patch bump to publish clean versions and move the `latest` dist-tag forward, superseding the compromised versions that declared the malicious `easy-day-js` dependency. ([#18056](https://github.com/mastra-ai/mastra/pull/18056))
230
-
231
- - Updated dependencies [[`339c57c`](https://github.com/mastra-ai/mastra/commit/339c57c5b2c6dbe75a125e138228e0556528976f), [`1dd4117`](https://github.com/mastra-ai/mastra/commit/1dd4117dcbd8e031ede9f0489436bfbc6f0315b8), [`2b11d1f`](https://github.com/mastra-ai/mastra/commit/2b11d1f6ac7024c5dd2b2dd12a48a956ac9d63bd), [`77a2351`](https://github.com/mastra-ai/mastra/commit/77a2351ee79296e360bce822cb3391f7cfd6489d), [`b7dff0a`](https://github.com/mastra-ai/mastra/commit/b7dff0a3d1022eb6868f48dc40a2b1febd5c277f), [`02087e1`](https://github.com/mastra-ai/mastra/commit/02087e1fbc54aa07f3071f7a200df1bf5be601a8), [`49af8df`](https://github.com/mastra-ai/mastra/commit/49af8df589c4ff71a5015a4553b377b32704b691), [`30ce559`](https://github.com/mastra-ai/mastra/commit/30ce55902ecf819b8ab8697398dd68b108228063), [`c241b92`](https://github.com/mastra-ai/mastra/commit/c241b929dc8c8d6a7b7219c99ed13ac1f3124a77), [`7d6ff70`](https://github.com/mastra-ai/mastra/commit/7d6ff708727297a0526ca0e26e93eeb5bbaaa187), [`ab975d4`](https://github.com/mastra-ai/mastra/commit/ab975d4dd9488752f05bda7afa03166d207e3e2a), [`9d6aa1b`](https://github.com/mastra-ai/mastra/commit/9d6aa1bae407e2afa6a089abc2a6accbbcb287b8)]:
232
- - @mastra/core@1.44.0
233
-
234
- ## 2.2.2-alpha.0
235
-
236
- ### Patch Changes
237
-
238
- - Security remediation for the 2026-06-17 "easy-day-js" supply-chain incident. Patch bump to publish clean versions and move the `latest` dist-tag forward, superseding the compromised versions that declared the malicious `easy-day-js` dependency. ([#18056](https://github.com/mastra-ai/mastra/pull/18056))
239
-
240
- - Updated dependencies [[`77a2351`](https://github.com/mastra-ai/mastra/commit/77a2351ee79296e360bce822cb3391f7cfd6489d)]:
241
- - @mastra/core@1.43.1-alpha.0
242
-
243
- ## 2.2.1
244
-
245
- ### Patch Changes
246
-
247
- - Fixed a security issue where several parsing and tracing paths could slow down on malformed or attacker-crafted input. Normal behavior is unchanged, and these packages now handle pathological input in linear time. ([#15566](https://github.com/mastra-ai/mastra/pull/15566))
248
-
249
- - Updated dependencies [[`20f59b8`](https://github.com/mastra-ai/mastra/commit/20f59b876cf91199efbc49a0e36b391240708f08), [`aba393e`](https://github.com/mastra-ai/mastra/commit/aba393e2da7390c69b80e516a4f153cda6f09376), [`3d83d06`](https://github.com/mastra-ai/mastra/commit/3d83d06f776f00fb5f4163dddd32a030c5c20844), [`e2687a7`](https://github.com/mastra-ai/mastra/commit/e2687a7408790c384563816a9a28ed06735684c9), [`fdd54cf`](https://github.com/mastra-ai/mastra/commit/fdd54cf612a9af876e9fdd85e534454f6e7dd518), [`6315317`](https://github.com/mastra-ai/mastra/commit/63153175fe9a7b224e5be7c209bbebc01dd9b0d5), [`a371ac5`](https://github.com/mastra-ai/mastra/commit/a371ac534aa1bb368a1acf9d8b313378dfdc787e), [`0474c2b`](https://github.com/mastra-ai/mastra/commit/0474c2b2e7c7e1ad8691dca031284841391ff1ef), [`0a5fa1d`](https://github.com/mastra-ai/mastra/commit/0a5fa1d3cb0583889d06687155f26fd7d2edc76c), [`7e0e63e`](https://github.com/mastra-ai/mastra/commit/7e0e63e2e485e84442351f4c7a79a424c83539dc), [`ea43e64`](https://github.com/mastra-ai/mastra/commit/ea43e646dd95d507694b6112b0bf1df22ad552b2), [`f607106`](https://github.com/mastra-ai/mastra/commit/f607106854c6416c4a07d4082604b9f66d047221), [`30456b6`](https://github.com/mastra-ai/mastra/commit/30456b6b08c8fd17e109dd093b73d93b65e83bc5), [`9d11a8c`](https://github.com/mastra-ai/mastra/commit/9d11a8c1c8924eb975a245a5884d40ca1b7e0491), [`9d3b24b`](https://github.com/mastra-ai/mastra/commit/9d3b24b19407ae9c09586cf7766d38dc4dff4a69), [`00d1b16`](https://github.com/mastra-ai/mastra/commit/00d1b16b401199cb294fa23f43336547db4dca9b), [`47cee3e`](https://github.com/mastra-ai/mastra/commit/47cee3e137fe39109cf7fffd2a8cf47b76dc702e), [`62919a6`](https://github.com/mastra-ai/mastra/commit/62919a6ee0fbf3779ad21a97b1ec6696515d5104), [`d246696`](https://github.com/mastra-ai/mastra/commit/d246696139a3144a5b21b042d41c532688e957e1), [`354f9ce`](https://github.com/mastra-ai/mastra/commit/354f9ce1ca6af2074b6a196a23f8ec30012dccca), [`16e34ca`](https://github.com/mastra-ai/mastra/commit/16e34caa98b9a114b17a6125e4e3fd87f169d0d0), [`7020c06`](https://github.com/mastra-ai/mastra/commit/7020c0690b199d9da337f0e805f16948e557922e), [`8786a61`](https://github.com/mastra-ai/mastra/commit/8786a61fa54ba265f85eeff9985ca39863d18bb6), [`9467ea8`](https://github.com/mastra-ai/mastra/commit/9467ea87695749a53dfc041576410ebf9ee7bb67), [`7338d94`](https://github.com/mastra-ai/mastra/commit/7338d949380cf68b095342e8e42610dc51d557c1), [`c80dc16`](https://github.com/mastra-ai/mastra/commit/c80dc16e113e6cc159f510ffde501ad4711b2189), [`af8a57e`](https://github.com/mastra-ai/mastra/commit/af8a57ed9ba9685ad8601d5b71ae3706da6222f9), [`d63ffdb`](https://github.com/mastra-ai/mastra/commit/d63ffdbb2c11e76fe5ea45faab44bc15460f010c), [`47cee3e`](https://github.com/mastra-ai/mastra/commit/47cee3e137fe39109cf7fffd2a8cf47b76dc702e), [`1bd5104`](https://github.com/mastra-ai/mastra/commit/1bd51048b6da93507276d6623e3fd96a9e1a8944), [`e9837b5`](https://github.com/mastra-ai/mastra/commit/e9837b53699e18711b09e0ca010a4106376f2653), [`8f1b280`](https://github.com/mastra-ai/mastra/commit/8f1b280b7fe6999ec654f160cb69c1a8719e7a57), [`92dcf02`](https://github.com/mastra-ai/mastra/commit/92dcf029294210ac91b090900c1a0555a425c57a), [`0fd90a2`](https://github.com/mastra-ai/mastra/commit/0fd90a215caf5fca8099c15a67ca03e4427747a3), [`8fb2405`](https://github.com/mastra-ai/mastra/commit/8fb2405138f2d208b7962ad03f121ca25bcc28c5), [`12df98c`](https://github.com/mastra-ai/mastra/commit/12df98c4904643d9481f5c78f3bed443725b4c96)]:
250
- - @mastra/core@1.26.0
251
-
252
- ## 2.2.1-alpha.0
253
-
254
- ### Patch Changes
255
-
256
- - Fixed a security issue where several parsing and tracing paths could slow down on malformed or attacker-crafted input. Normal behavior is unchanged, and these packages now handle pathological input in linear time. ([#15566](https://github.com/mastra-ai/mastra/pull/15566))
257
-
258
- - Updated dependencies [[`aba393e`](https://github.com/mastra-ai/mastra/commit/aba393e2da7390c69b80e516a4f153cda6f09376), [`0a5fa1d`](https://github.com/mastra-ai/mastra/commit/0a5fa1d3cb0583889d06687155f26fd7d2edc76c), [`ea43e64`](https://github.com/mastra-ai/mastra/commit/ea43e646dd95d507694b6112b0bf1df22ad552b2), [`00d1b16`](https://github.com/mastra-ai/mastra/commit/00d1b16b401199cb294fa23f43336547db4dca9b), [`af8a57e`](https://github.com/mastra-ai/mastra/commit/af8a57ed9ba9685ad8601d5b71ae3706da6222f9)]:
259
- - @mastra/core@1.26.0-alpha.10
260
-
261
- ## 2.2.0
262
-
263
- ### Minor Changes
264
-
265
- - Add RAG observability (#10898) ([#15137](https://github.com/mastra-ai/mastra/pull/15137))
266
-
267
- Surfaces RAG ingestion and query operations in Mastra's AI tracing.
268
-
269
- New span types in `@mastra/core/observability`:
270
- - `RAG_INGESTION` (root) — wraps an ingestion pipeline run
271
- - `RAG_EMBEDDING` — embedding call (used by ingestion and query)
272
- - `RAG_VECTOR_OPERATION` — vector store I/O (`query`/`upsert`/`delete`/`fetch`)
273
- - `RAG_ACTION` — `chunk` / `extract_metadata` / `rerank`
274
- - `GRAPH_ACTION` — non-RAG graph `build` / `traverse` / `update` / `prune`
275
-
276
- New helpers exported from `@mastra/core/observability`:
277
- - `startRagIngestion(opts)` — manual: returns `{ span, observabilityContext }`
278
- - `withRagIngestion(opts, fn)` — scoped: runs `fn(observabilityContext)`,
279
- attaches the return value as the span's output, routes thrown errors to
280
- `span.error(...)`
281
-
282
- Wired in `@mastra/rag`:
283
- - `vectorQuerySearch` emits `RAG_EMBEDDING` (mode: `query`) and
284
- `RAG_VECTOR_OPERATION` (operation: `query`)
285
- - `rerank` / `rerankWithScorer` emit `RAG_ACTION` (action: `rerank`)
286
- - `MDocument.chunk` emits `RAG_ACTION` (action: `chunk`) and
287
- `RAG_ACTION` (action: `extract_metadata`)
288
- - `createGraphRAGTool` emits `GRAPH_ACTION` (action: `build` / `traverse`)
289
- - `createVectorQueryTool` and `createGraphRAGTool` thread
290
- `observabilityContext` from the agent's `TOOL_CALL` span automatically
291
-
292
- All new instrumentation is opt-in: functions accept an optional
293
- `observabilityContext` and no-op when absent, so existing callers are
294
- unaffected.
295
-
296
- ### Patch Changes
297
-
298
- - Updated dependencies [[`8db7663`](https://github.com/mastra-ai/mastra/commit/8db7663c9a9c735828094c359d2e327fd4f8fba3), [`153e864`](https://github.com/mastra-ai/mastra/commit/153e86476b425db7cd0dc8490050096e92964a38), [`715710d`](https://github.com/mastra-ai/mastra/commit/715710d12fa47cf88e09d41f13843eddc29327b0), [`378c6c4`](https://github.com/mastra-ai/mastra/commit/378c6c4755726e8d8cf83a14809b350b90d46c62), [`9f91fd5`](https://github.com/mastra-ai/mastra/commit/9f91fd538ab2a44f8cc740bcad8e51205f74fbea), [`ba6fa9c`](https://github.com/mastra-ai/mastra/commit/ba6fa9cc0f3e1912c49fd70d4c3bb8c44903ddaa)]:
299
- - @mastra/core@1.24.0
300
-
301
- ## 2.2.0-alpha.0
302
-
303
- ### Minor Changes
304
-
305
- - Add RAG observability (#10898) ([#15137](https://github.com/mastra-ai/mastra/pull/15137))
306
-
307
- Surfaces RAG ingestion and query operations in Mastra's AI tracing.
308
-
309
- New span types in `@mastra/core/observability`:
310
- - `RAG_INGESTION` (root) — wraps an ingestion pipeline run
311
- - `RAG_EMBEDDING` — embedding call (used by ingestion and query)
312
- - `RAG_VECTOR_OPERATION` — vector store I/O (`query`/`upsert`/`delete`/`fetch`)
313
- - `RAG_ACTION` — `chunk` / `extract_metadata` / `rerank`
314
- - `GRAPH_ACTION` — non-RAG graph `build` / `traverse` / `update` / `prune`
315
-
316
- New helpers exported from `@mastra/core/observability`:
317
- - `startRagIngestion(opts)` — manual: returns `{ span, observabilityContext }`
318
- - `withRagIngestion(opts, fn)` — scoped: runs `fn(observabilityContext)`,
319
- attaches the return value as the span's output, routes thrown errors to
320
- `span.error(...)`
321
-
322
- Wired in `@mastra/rag`:
323
- - `vectorQuerySearch` emits `RAG_EMBEDDING` (mode: `query`) and
324
- `RAG_VECTOR_OPERATION` (operation: `query`)
325
- - `rerank` / `rerankWithScorer` emit `RAG_ACTION` (action: `rerank`)
326
- - `MDocument.chunk` emits `RAG_ACTION` (action: `chunk`) and
327
- `RAG_ACTION` (action: `extract_metadata`)
328
- - `createGraphRAGTool` emits `GRAPH_ACTION` (action: `build` / `traverse`)
329
- - `createVectorQueryTool` and `createGraphRAGTool` thread
330
- `observabilityContext` from the agent's `TOOL_CALL` span automatically
331
-
332
- All new instrumentation is opt-in: functions accept an optional
333
- `observabilityContext` and no-op when absent, so existing callers are
334
- unaffected.
335
-
336
- ### Patch Changes
337
-
338
- - Updated dependencies [[`8db7663`](https://github.com/mastra-ai/mastra/commit/8db7663c9a9c735828094c359d2e327fd4f8fba3), [`715710d`](https://github.com/mastra-ai/mastra/commit/715710d12fa47cf88e09d41f13843eddc29327b0), [`378c6c4`](https://github.com/mastra-ai/mastra/commit/378c6c4755726e8d8cf83a14809b350b90d46c62), [`9f91fd5`](https://github.com/mastra-ai/mastra/commit/9f91fd538ab2a44f8cc740bcad8e51205f74fbea), [`ba6fa9c`](https://github.com/mastra-ai/mastra/commit/ba6fa9cc0f3e1912c49fd70d4c3bb8c44903ddaa)]:
339
- - @mastra/core@1.24.0-alpha.1
340
-
341
- ## 2.1.3
342
-
343
- ### Patch Changes
344
-
345
- - Standardized all logger calls across the codebase to use static string messages with structured data objects. Dynamic values are now passed as key-value pairs in the second argument instead of being interpolated into template literal strings. This improves log filterability and searchability in observability storage. ([#14899](https://github.com/mastra-ai/mastra/pull/14899))
346
-
347
- Removed ~150 redundant or noisy log calls including duplicate error logging after trackException and verbose in-memory storage CRUD traces.
348
-
349
- - Updated dependencies [[`cbeec24`](https://github.com/mastra-ai/mastra/commit/cbeec24b3c97a1a296e7e461e66cc7f7d215dc50), [`cee146b`](https://github.com/mastra-ai/mastra/commit/cee146b5d858212e1df2b2730fc36d3ceda0e08d), [`aa0aeff`](https://github.com/mastra-ai/mastra/commit/aa0aeffa11efbef5e219fbd97bf43d263cfe3afe), [`2bcec65`](https://github.com/mastra-ai/mastra/commit/2bcec652d62b07eab15e9eb9822f70184526eede), [`ad9bded`](https://github.com/mastra-ai/mastra/commit/ad9bdedf86a824801f49928a8d40f6e31ff5450f), [`cbeec24`](https://github.com/mastra-ai/mastra/commit/cbeec24b3c97a1a296e7e461e66cc7f7d215dc50), [`208c0bb`](https://github.com/mastra-ai/mastra/commit/208c0bbacbf5a1da6318f2a0e0c544390e542ddc), [`f566ee7`](https://github.com/mastra-ai/mastra/commit/f566ee7d53a3da33a01103e2a5ac2070ddefe6b0)]:
350
- - @mastra/core@1.20.0
351
-
352
- ## 2.1.3-alpha.0
353
-
354
- ### Patch Changes
355
-
356
- - Standardized all logger calls across the codebase to use static string messages with structured data objects. Dynamic values are now passed as key-value pairs in the second argument instead of being interpolated into template literal strings. This improves log filterability and searchability in observability storage. ([#14899](https://github.com/mastra-ai/mastra/pull/14899))
357
-
358
- Removed ~150 redundant or noisy log calls including duplicate error logging after trackException and verbose in-memory storage CRUD traces.
359
-
360
- - Updated dependencies [[`cbeec24`](https://github.com/mastra-ai/mastra/commit/cbeec24b3c97a1a296e7e461e66cc7f7d215dc50), [`cee146b`](https://github.com/mastra-ai/mastra/commit/cee146b5d858212e1df2b2730fc36d3ceda0e08d), [`aa0aeff`](https://github.com/mastra-ai/mastra/commit/aa0aeffa11efbef5e219fbd97bf43d263cfe3afe), [`2bcec65`](https://github.com/mastra-ai/mastra/commit/2bcec652d62b07eab15e9eb9822f70184526eede), [`ad9bded`](https://github.com/mastra-ai/mastra/commit/ad9bdedf86a824801f49928a8d40f6e31ff5450f), [`cbeec24`](https://github.com/mastra-ai/mastra/commit/cbeec24b3c97a1a296e7e461e66cc7f7d215dc50), [`208c0bb`](https://github.com/mastra-ai/mastra/commit/208c0bbacbf5a1da6318f2a0e0c544390e542ddc), [`f566ee7`](https://github.com/mastra-ai/mastra/commit/f566ee7d53a3da33a01103e2a5ac2070ddefe6b0)]:
361
- - @mastra/core@1.20.0-alpha.0
362
-
363
- ## 2.1.2
364
-
365
- ### Patch Changes
366
-
367
- - Improved token-based chunking performance in `token` and `semantic-markdown` strategies. Markdown knowledge bases now chunk significantly faster with lower tokenization overhead. ([#13495](https://github.com/mastra-ai/mastra/pull/13495))
368
-
369
- - Updated dependencies [[`df170fd`](https://github.com/mastra-ai/mastra/commit/df170fd139b55f845bfd2de8488b16435bd3d0da), [`ae55343`](https://github.com/mastra-ai/mastra/commit/ae5534397fc006fd6eef3e4f80c235bcdc9289ef), [`c290cec`](https://github.com/mastra-ai/mastra/commit/c290cec5bf9107225de42942b56b487107aa9dce), [`f03e794`](https://github.com/mastra-ai/mastra/commit/f03e794630f812b56e95aad54f7b1993dc003add), [`aa4a5ae`](https://github.com/mastra-ai/mastra/commit/aa4a5aedb80d8d6837bab8cbb2e301215d1ba3e9), [`de3f584`](https://github.com/mastra-ai/mastra/commit/de3f58408752a8d80a295275c7f23fc306cf7f4f), [`d3fb010`](https://github.com/mastra-ai/mastra/commit/d3fb010c98f575f1c0614452667396e2653815f6), [`702ee1c`](https://github.com/mastra-ai/mastra/commit/702ee1c41be67cc532b4dbe89bcb62143508f6f0), [`f495051`](https://github.com/mastra-ai/mastra/commit/f495051eb6496a720f637fc85b6d69941c12554c), [`e622f1d`](https://github.com/mastra-ai/mastra/commit/e622f1d3ab346a8e6aca6d1fe2eac99bd961e50b), [`861f111`](https://github.com/mastra-ai/mastra/commit/861f11189211b20ddb70d8df81a6b901fc78d11e), [`00f43e8`](https://github.com/mastra-ai/mastra/commit/00f43e8e97a80c82b27d5bd30494f10a715a1df9), [`1b6f651`](https://github.com/mastra-ai/mastra/commit/1b6f65127d4a0d6c38d0a1055cb84527db529d6b), [`96a1702`](https://github.com/mastra-ai/mastra/commit/96a1702ce362c50dda20c8b4a228b4ad1a36a17a), [`cb9f921`](https://github.com/mastra-ai/mastra/commit/cb9f921320913975657abb1404855d8c510f7ac5), [`114e7c1`](https://github.com/mastra-ai/mastra/commit/114e7c146ac682925f0fb37376c1be70e5d6e6e5), [`1b6f651`](https://github.com/mastra-ai/mastra/commit/1b6f65127d4a0d6c38d0a1055cb84527db529d6b), [`72df4a8`](https://github.com/mastra-ai/mastra/commit/72df4a8f9bf1a20cfd3d9006a4fdb597ad56d10a)]:
370
- - @mastra/core@1.8.0
371
-
372
- ## 2.1.2-alpha.0
373
-
374
- ### Patch Changes
375
-
376
- - Improved token-based chunking performance in `token` and `semantic-markdown` strategies. Markdown knowledge bases now chunk significantly faster with lower tokenization overhead. ([#13495](https://github.com/mastra-ai/mastra/pull/13495))
377
-
378
- - Updated dependencies [[`df170fd`](https://github.com/mastra-ai/mastra/commit/df170fd139b55f845bfd2de8488b16435bd3d0da), [`ae55343`](https://github.com/mastra-ai/mastra/commit/ae5534397fc006fd6eef3e4f80c235bcdc9289ef), [`c290cec`](https://github.com/mastra-ai/mastra/commit/c290cec5bf9107225de42942b56b487107aa9dce), [`f03e794`](https://github.com/mastra-ai/mastra/commit/f03e794630f812b56e95aad54f7b1993dc003add), [`aa4a5ae`](https://github.com/mastra-ai/mastra/commit/aa4a5aedb80d8d6837bab8cbb2e301215d1ba3e9), [`de3f584`](https://github.com/mastra-ai/mastra/commit/de3f58408752a8d80a295275c7f23fc306cf7f4f), [`d3fb010`](https://github.com/mastra-ai/mastra/commit/d3fb010c98f575f1c0614452667396e2653815f6), [`702ee1c`](https://github.com/mastra-ai/mastra/commit/702ee1c41be67cc532b4dbe89bcb62143508f6f0), [`f495051`](https://github.com/mastra-ai/mastra/commit/f495051eb6496a720f637fc85b6d69941c12554c), [`e622f1d`](https://github.com/mastra-ai/mastra/commit/e622f1d3ab346a8e6aca6d1fe2eac99bd961e50b), [`861f111`](https://github.com/mastra-ai/mastra/commit/861f11189211b20ddb70d8df81a6b901fc78d11e), [`00f43e8`](https://github.com/mastra-ai/mastra/commit/00f43e8e97a80c82b27d5bd30494f10a715a1df9), [`1b6f651`](https://github.com/mastra-ai/mastra/commit/1b6f65127d4a0d6c38d0a1055cb84527db529d6b), [`96a1702`](https://github.com/mastra-ai/mastra/commit/96a1702ce362c50dda20c8b4a228b4ad1a36a17a), [`cb9f921`](https://github.com/mastra-ai/mastra/commit/cb9f921320913975657abb1404855d8c510f7ac5), [`114e7c1`](https://github.com/mastra-ai/mastra/commit/114e7c146ac682925f0fb37376c1be70e5d6e6e5), [`1b6f651`](https://github.com/mastra-ai/mastra/commit/1b6f65127d4a0d6c38d0a1055cb84527db529d6b), [`72df4a8`](https://github.com/mastra-ai/mastra/commit/72df4a8f9bf1a20cfd3d9006a4fdb597ad56d10a)]:
379
- - @mastra/core@1.8.0-alpha.0
380
-
381
- ## 2.1.1
382
-
383
- ### Patch Changes
384
-
385
- - dependencies updates: ([#13318](https://github.com/mastra-ai/mastra/pull/13318))
386
- - Updated dependency [`zeroentropy@0.1.0-alpha.7` ↗︎](https://www.npmjs.com/package/zeroentropy/v/0.1.0) (from `0.1.0-alpha.6`, in `dependencies`)
387
- - Updated dependencies [[`24284ff`](https://github.com/mastra-ai/mastra/commit/24284ffae306ddf0ab83273e13f033520839ef40), [`f5097cc`](https://github.com/mastra-ai/mastra/commit/f5097cc8a813c82c3378882c31178320cadeb655), [`71e237f`](https://github.com/mastra-ai/mastra/commit/71e237fa852a3ad9a50a3ddb3b5f3b20b9a8181c), [`13a291e`](https://github.com/mastra-ai/mastra/commit/13a291ebb9f9bca80befa0d9166b916bb348e8e9), [`397af5a`](https://github.com/mastra-ai/mastra/commit/397af5a69f34d4157f51a7c8da3f1ded1e1d611c), [`d4701f7`](https://github.com/mastra-ai/mastra/commit/d4701f7e24822b081b70f9c806c39411b1a712e7), [`2b40831`](https://github.com/mastra-ai/mastra/commit/2b40831dcca2275c9570ddf09b7f25ba3e8dc7fc), [`6184727`](https://github.com/mastra-ai/mastra/commit/6184727e812bf7a65cee209bacec3a2f5a16e923), [`0c338b8`](https://github.com/mastra-ai/mastra/commit/0c338b87362dcd95ff8191ca00df645b6953f534), [`6f6385b`](https://github.com/mastra-ai/mastra/commit/6f6385be5b33687cd21e71fc27e972e6928bb34c), [`14aba61`](https://github.com/mastra-ai/mastra/commit/14aba61b9cff76d72bc7ef6f3a83ae2c5d059193), [`dd9dd1c`](https://github.com/mastra-ai/mastra/commit/dd9dd1c9ae32ae79093f8c4adde1732ac6357233)]:
388
- - @mastra/core@1.7.0
389
-
390
- ## 2.1.1-alpha.0
391
-
392
- ### Patch Changes
393
-
394
- - dependencies updates: ([#13318](https://github.com/mastra-ai/mastra/pull/13318))
395
- - Updated dependency [`zeroentropy@0.1.0-alpha.7` ↗︎](https://www.npmjs.com/package/zeroentropy/v/0.1.0) (from `0.1.0-alpha.6`, in `dependencies`)
396
- - Updated dependencies [[`24284ff`](https://github.com/mastra-ai/mastra/commit/24284ffae306ddf0ab83273e13f033520839ef40), [`f5097cc`](https://github.com/mastra-ai/mastra/commit/f5097cc8a813c82c3378882c31178320cadeb655), [`71e237f`](https://github.com/mastra-ai/mastra/commit/71e237fa852a3ad9a50a3ddb3b5f3b20b9a8181c), [`13a291e`](https://github.com/mastra-ai/mastra/commit/13a291ebb9f9bca80befa0d9166b916bb348e8e9), [`397af5a`](https://github.com/mastra-ai/mastra/commit/397af5a69f34d4157f51a7c8da3f1ded1e1d611c), [`d4701f7`](https://github.com/mastra-ai/mastra/commit/d4701f7e24822b081b70f9c806c39411b1a712e7), [`2b40831`](https://github.com/mastra-ai/mastra/commit/2b40831dcca2275c9570ddf09b7f25ba3e8dc7fc), [`6184727`](https://github.com/mastra-ai/mastra/commit/6184727e812bf7a65cee209bacec3a2f5a16e923), [`6f6385b`](https://github.com/mastra-ai/mastra/commit/6f6385be5b33687cd21e71fc27e972e6928bb34c), [`14aba61`](https://github.com/mastra-ai/mastra/commit/14aba61b9cff76d72bc7ef6f3a83ae2c5d059193), [`dd9dd1c`](https://github.com/mastra-ai/mastra/commit/dd9dd1c9ae32ae79093f8c4adde1732ac6357233)]:
397
- - @mastra/core@1.7.0-alpha.0
398
-
399
- ## 2.1.0
400
-
401
- ### Minor Changes
402
-
403
- - Added support for 20 additional languages in code chunking ([#12154](https://github.com/mastra-ai/mastra/pull/12154))
404
-
405
- Extended RecursiveCharacterTransformer to support all languages defined in the Language enum. Previously, only 6 languages were supported (CPP, C, TS, MARKDOWN, LATEX, PHP), causing runtime errors for other defined languages.
406
-
407
- **Newly supported languages:**
408
- - GO, JAVA, KOTLIN, JS, PYTHON, RUBY, RUST, SCALA, SWIFT (popular programming languages)
409
- - HTML, SOL (Solidity), CSHARP, COBOL, LUA, PERL, HASKELL, ELIXIR, POWERSHELL (additional languages)
410
- - PROTO (Protocol Buffers), RST (reStructuredText) (data/documentation formats)
411
-
412
- Each language has been configured with appropriate separators based on its syntax patterns (modules, classes, functions, control structures) to enable semantic code chunking.
413
-
414
- **Before:**
415
-
416
- ```typescript
417
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
418
-
419
- // These would all throw "Language X is not supported!" errors
420
- const goTransformer = RecursiveCharacterTransformer.fromLanguage(Language.GO);
421
- const pythonTransformer = RecursiveCharacterTransformer.fromLanguage(Language.PYTHON);
422
- const rustTransformer = RecursiveCharacterTransformer.fromLanguage(Language.RUST);
423
- ```
424
-
425
- **After:**
426
-
427
- ```typescript
428
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
429
-
430
- // All languages now work seamlessly
431
- const goTransformer = RecursiveCharacterTransformer.fromLanguage(Language.GO);
432
- const goChunks = goTransformer.transform(goCodeDocument);
433
-
434
- const pythonTransformer = RecursiveCharacterTransformer.fromLanguage(Language.PYTHON);
435
- const pythonChunks = pythonTransformer.transform(pythonCodeDocument);
436
-
437
- const rustTransformer = RecursiveCharacterTransformer.fromLanguage(Language.RUST);
438
- const rustChunks = rustTransformer.transform(rustCodeDocument);
439
- // All languages in the Language enum are now fully supported
440
- ```
441
-
442
- ### Patch Changes
443
-
444
- - Add support for PHP in Language enum
445
- ([#12124](https://github.com/mastra-ai/mastra/pull/12124))
446
- Previously, the Language enum defined PHP, but it was not supported in the `getSeparatorsForLanguage` method. This caused runtime errors when trying to use PHP for code chunking.
447
- This change adds proper separator definitions for PHP, ensuring that PHP defined in the Language enum is now fully supported. PHP has been configured with appropriate separators based on its syntax and common programming patterns (classes, functions, control structures, etc.).
448
- **Before:**
449
-
450
- ```typescript
451
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
452
-
453
- const transformer = RecursiveCharacterTransformer.fromLanguage(Language.PHP);
454
- const chunks = transformer.transform(phpCodeDocument);
455
- // Throws: "Language PHP is not supported!"
456
- ```
457
-
458
- **After:**
459
-
460
- ```typescript
461
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
462
-
463
- const transformer = RecursiveCharacterTransformer.fromLanguage(Language.PHP);
464
- const chunks = transformer.transform(phpCodeDocument);
465
- // Successfully chunks PHP code at namespace, class, function boundaries
466
- ```
467
-
468
- Fixes the issue where using `Language.PHP` would throw "Language PHP is not supported!" error.
469
-
470
- - Updated dependencies [[`90fc0e5`](https://github.com/mastra-ai/mastra/commit/90fc0e5717cb280c2d4acf4f0410b510bb4c0a72), [`1cf5d2e`](https://github.com/mastra-ai/mastra/commit/1cf5d2ea1b085be23e34fb506c80c80a4e6d9c2b), [`b99ceac`](https://github.com/mastra-ai/mastra/commit/b99ceace2c830dbdef47c8692d56a91954aefea2), [`deea43e`](https://github.com/mastra-ai/mastra/commit/deea43eb1366d03a864c5e597d16a48592b9893f), [`833ae96`](https://github.com/mastra-ai/mastra/commit/833ae96c3e34370e58a1e979571c41f39a720592), [`943772b`](https://github.com/mastra-ai/mastra/commit/943772b4378f625f0f4e19ea2b7c392bd8e71786), [`b5c711b`](https://github.com/mastra-ai/mastra/commit/b5c711b281dd1fb81a399a766bc9f86c55efc13e), [`3efbe5a`](https://github.com/mastra-ai/mastra/commit/3efbe5ae20864c4f3143457f4f3ee7dc2fa5ca76), [`1e49e7a`](https://github.com/mastra-ai/mastra/commit/1e49e7ab5f173582154cb26b29d424de67d09aef), [`751eaab`](https://github.com/mastra-ai/mastra/commit/751eaab4e0d3820a94e4c3d39a2ff2663ded3d91), [`69d8156`](https://github.com/mastra-ai/mastra/commit/69d81568bcf062557c24471ce26812446bec465d), [`60d9d89`](https://github.com/mastra-ai/mastra/commit/60d9d899e44b35bc43f1bcd967a74e0ce010b1af), [`5c544c8`](https://github.com/mastra-ai/mastra/commit/5c544c8d12b08ab40d64d8f37b3c4215bee95b87), [`771ad96`](https://github.com/mastra-ai/mastra/commit/771ad962441996b5c43549391a3e6a02c6ddedc2), [`2b0936b`](https://github.com/mastra-ai/mastra/commit/2b0936b0c9a43eeed9bef63e614d7e02ee803f7e), [`3b04f30`](https://github.com/mastra-ai/mastra/commit/3b04f3010604f3cdfc8a0674731700ad66471cee), [`97e26de`](https://github.com/mastra-ai/mastra/commit/97e26deaebd9836647a67b96423281d66421ca07), [`ac9ec66`](https://github.com/mastra-ai/mastra/commit/ac9ec6672779b2e6d4344e415481d1a6a7d4911a), [`10523f4`](https://github.com/mastra-ai/mastra/commit/10523f4882d9b874b40ce6e3715f66dbcd4947d2), [`cb72d20`](https://github.com/mastra-ai/mastra/commit/cb72d2069d7339bda8a0e76d4f35615debb07b84), [`42856b1`](https://github.com/mastra-ai/mastra/commit/42856b1c8aeea6371c9ee77ae2f5f5fe34400933), [`66f33ff`](https://github.com/mastra-ai/mastra/commit/66f33ff68620018513e499c394411d1d39b3aa5c), [`ab3c190`](https://github.com/mastra-ai/mastra/commit/ab3c1901980a99910ca9b96a7090c22e24060113), [`d4f06c8`](https://github.com/mastra-ai/mastra/commit/d4f06c85ffa5bb0da38fb82ebf3b040cc6b4ec4e), [`0350626`](https://github.com/mastra-ai/mastra/commit/03506267ec41b67add80d994c0c0fcce93bbc75f), [`bc9fa00`](https://github.com/mastra-ai/mastra/commit/bc9fa00859c5c4a796d53a0a5cae46ab4a3072e4), [`f46a478`](https://github.com/mastra-ai/mastra/commit/f46a4782f595949c696569e891f81c8d26338508), [`90fc0e5`](https://github.com/mastra-ai/mastra/commit/90fc0e5717cb280c2d4acf4f0410b510bb4c0a72), [`f05a3a5`](https://github.com/mastra-ai/mastra/commit/f05a3a5cf2b9a9c2d40c09cb8c762a4b6cd5d565), [`a291da9`](https://github.com/mastra-ai/mastra/commit/a291da9363efd92dafd8775dccb4f2d0511ece7a), [`c5d71da`](https://github.com/mastra-ai/mastra/commit/c5d71da1c680ce5640b1a7f8ca0e024a4ab1cfed), [`07042f9`](https://github.com/mastra-ai/mastra/commit/07042f9f89080f38b8f72713ba1c972d5b1905b8), [`0423442`](https://github.com/mastra-ai/mastra/commit/0423442b7be2dfacba95890bea8f4a810db4d603)]:
471
- - @mastra/core@1.1.0
472
-
473
- ## 2.1.0-alpha.0
474
-
475
- ### Minor Changes
476
-
477
- - Added support for 20 additional languages in code chunking ([#12154](https://github.com/mastra-ai/mastra/pull/12154))
478
-
479
- Extended RecursiveCharacterTransformer to support all languages defined in the Language enum. Previously, only 6 languages were supported (CPP, C, TS, MARKDOWN, LATEX, PHP), causing runtime errors for other defined languages.
480
-
481
- **Newly supported languages:**
482
- - GO, JAVA, KOTLIN, JS, PYTHON, RUBY, RUST, SCALA, SWIFT (popular programming languages)
483
- - HTML, SOL (Solidity), CSHARP, COBOL, LUA, PERL, HASKELL, ELIXIR, POWERSHELL (additional languages)
484
- - PROTO (Protocol Buffers), RST (reStructuredText) (data/documentation formats)
485
-
486
- Each language has been configured with appropriate separators based on its syntax patterns (modules, classes, functions, control structures) to enable semantic code chunking.
487
-
488
- **Before:**
489
-
490
- ```typescript
491
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
492
-
493
- // These would all throw "Language X is not supported!" errors
494
- const goTransformer = RecursiveCharacterTransformer.fromLanguage(Language.GO);
495
- const pythonTransformer = RecursiveCharacterTransformer.fromLanguage(Language.PYTHON);
496
- const rustTransformer = RecursiveCharacterTransformer.fromLanguage(Language.RUST);
497
- ```
498
-
499
- **After:**
500
-
501
- ```typescript
502
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
503
-
504
- // All languages now work seamlessly
505
- const goTransformer = RecursiveCharacterTransformer.fromLanguage(Language.GO);
506
- const goChunks = goTransformer.transform(goCodeDocument);
507
-
508
- const pythonTransformer = RecursiveCharacterTransformer.fromLanguage(Language.PYTHON);
509
- const pythonChunks = pythonTransformer.transform(pythonCodeDocument);
510
-
511
- const rustTransformer = RecursiveCharacterTransformer.fromLanguage(Language.RUST);
512
- const rustChunks = rustTransformer.transform(rustCodeDocument);
513
- // All languages in the Language enum are now fully supported
514
- ```
515
-
516
- ### Patch Changes
517
-
518
- - Add support for PHP in Language enum
519
- ([#12124](https://github.com/mastra-ai/mastra/pull/12124))
520
- Previously, the Language enum defined PHP, but it was not supported in the `getSeparatorsForLanguage` method. This caused runtime errors when trying to use PHP for code chunking.
521
- This change adds proper separator definitions for PHP, ensuring that PHP defined in the Language enum is now fully supported. PHP has been configured with appropriate separators based on its syntax and common programming patterns (classes, functions, control structures, etc.).
522
- **Before:**
523
-
524
- ```typescript
525
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
526
-
527
- const transformer = RecursiveCharacterTransformer.fromLanguage(Language.PHP);
528
- const chunks = transformer.transform(phpCodeDocument);
529
- // Throws: "Language PHP is not supported!"
530
- ```
531
-
532
- **After:**
533
-
534
- ```typescript
535
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
536
-
537
- const transformer = RecursiveCharacterTransformer.fromLanguage(Language.PHP);
538
- const chunks = transformer.transform(phpCodeDocument);
539
- // Successfully chunks PHP code at namespace, class, function boundaries
540
- ```
541
-
542
- Fixes the issue where using `Language.PHP` would throw "Language PHP is not supported!" error.
543
-
544
- - Updated dependencies [[`90fc0e5`](https://github.com/mastra-ai/mastra/commit/90fc0e5717cb280c2d4acf4f0410b510bb4c0a72), [`1cf5d2e`](https://github.com/mastra-ai/mastra/commit/1cf5d2ea1b085be23e34fb506c80c80a4e6d9c2b), [`833ae96`](https://github.com/mastra-ai/mastra/commit/833ae96c3e34370e58a1e979571c41f39a720592), [`943772b`](https://github.com/mastra-ai/mastra/commit/943772b4378f625f0f4e19ea2b7c392bd8e71786), [`b5c711b`](https://github.com/mastra-ai/mastra/commit/b5c711b281dd1fb81a399a766bc9f86c55efc13e), [`3efbe5a`](https://github.com/mastra-ai/mastra/commit/3efbe5ae20864c4f3143457f4f3ee7dc2fa5ca76), [`1e49e7a`](https://github.com/mastra-ai/mastra/commit/1e49e7ab5f173582154cb26b29d424de67d09aef), [`751eaab`](https://github.com/mastra-ai/mastra/commit/751eaab4e0d3820a94e4c3d39a2ff2663ded3d91), [`69d8156`](https://github.com/mastra-ai/mastra/commit/69d81568bcf062557c24471ce26812446bec465d), [`60d9d89`](https://github.com/mastra-ai/mastra/commit/60d9d899e44b35bc43f1bcd967a74e0ce010b1af), [`5c544c8`](https://github.com/mastra-ai/mastra/commit/5c544c8d12b08ab40d64d8f37b3c4215bee95b87), [`771ad96`](https://github.com/mastra-ai/mastra/commit/771ad962441996b5c43549391a3e6a02c6ddedc2), [`2b0936b`](https://github.com/mastra-ai/mastra/commit/2b0936b0c9a43eeed9bef63e614d7e02ee803f7e), [`3b04f30`](https://github.com/mastra-ai/mastra/commit/3b04f3010604f3cdfc8a0674731700ad66471cee), [`97e26de`](https://github.com/mastra-ai/mastra/commit/97e26deaebd9836647a67b96423281d66421ca07), [`10523f4`](https://github.com/mastra-ai/mastra/commit/10523f4882d9b874b40ce6e3715f66dbcd4947d2), [`cb72d20`](https://github.com/mastra-ai/mastra/commit/cb72d2069d7339bda8a0e76d4f35615debb07b84), [`42856b1`](https://github.com/mastra-ai/mastra/commit/42856b1c8aeea6371c9ee77ae2f5f5fe34400933), [`66f33ff`](https://github.com/mastra-ai/mastra/commit/66f33ff68620018513e499c394411d1d39b3aa5c), [`ab3c190`](https://github.com/mastra-ai/mastra/commit/ab3c1901980a99910ca9b96a7090c22e24060113), [`d4f06c8`](https://github.com/mastra-ai/mastra/commit/d4f06c85ffa5bb0da38fb82ebf3b040cc6b4ec4e), [`0350626`](https://github.com/mastra-ai/mastra/commit/03506267ec41b67add80d994c0c0fcce93bbc75f), [`bc9fa00`](https://github.com/mastra-ai/mastra/commit/bc9fa00859c5c4a796d53a0a5cae46ab4a3072e4), [`f46a478`](https://github.com/mastra-ai/mastra/commit/f46a4782f595949c696569e891f81c8d26338508), [`90fc0e5`](https://github.com/mastra-ai/mastra/commit/90fc0e5717cb280c2d4acf4f0410b510bb4c0a72), [`f05a3a5`](https://github.com/mastra-ai/mastra/commit/f05a3a5cf2b9a9c2d40c09cb8c762a4b6cd5d565), [`a291da9`](https://github.com/mastra-ai/mastra/commit/a291da9363efd92dafd8775dccb4f2d0511ece7a), [`c5d71da`](https://github.com/mastra-ai/mastra/commit/c5d71da1c680ce5640b1a7f8ca0e024a4ab1cfed), [`07042f9`](https://github.com/mastra-ai/mastra/commit/07042f9f89080f38b8f72713ba1c972d5b1905b8), [`0423442`](https://github.com/mastra-ai/mastra/commit/0423442b7be2dfacba95890bea8f4a810db4d603)]:
545
- - @mastra/core@1.1.0-alpha.0
546
-
547
- ## 2.0.0
548
-
549
- ### Major Changes
550
-
551
- - Refactor workflow and tool types to remove Zod-specific constraints ([#11814](https://github.com/mastra-ai/mastra/pull/11814))
552
-
553
- Removed Zod-specific type constraints across all workflow implementations and tool types, replacing them with generic types. This ensures type consistency across default, evented, and inngest workflows while preparing for Zod v4 migration.
554
-
555
- **Workflow Changes:**
556
- - Removed `z.ZodObject<any>` and `z.ZodType<any>` constraints from all workflow generic types
557
- - Updated method signatures to use `TInput` and `TState` directly instead of `z.infer<TInput>` and `z.infer<TState>`
558
- - Aligned conditional types across all workflow implementations using `TInput extends unknown` pattern
559
- - Fixed `TSteps` generic to properly use `TEngineType` instead of `any`
560
-
561
- **Tool Changes:**
562
- - Removed Zod schema constraints from `ToolExecutionContext` and related interfaces
563
- - Simplified type parameters from `TSuspendSchema extends ZodLikeSchema` to `TSuspend` and `TResume`
564
- - Updated tool execution context types to use generic types
565
-
566
- **Type Utilities:**
567
- - Refactored type helpers to work with generic schemas instead of Zod-specific types
568
- - Updated type extraction utilities for better compatibility
569
-
570
- This change maintains backward compatibility while improving type consistency and preparing for Zod v4 support across all affected packages.
571
-
572
- - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
573
-
574
- - Rename RuntimeContext to RequestContext ([#9511](https://github.com/mastra-ai/mastra/pull/9511))
575
-
576
- - Remove deprecated vector prompts and cohere provider from code ([#9596](https://github.com/mastra-ai/mastra/pull/9596))
577
-
578
- - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
579
-
580
- ### Minor Changes
581
-
582
- - Add schema-driven metadata extraction with Zod support ([#11833](https://github.com/mastra-ai/mastra/pull/11833))
583
-
584
- Introduces a new `SchemaExtractor` that enables extraction of custom structured metadata from document chunks using user-defined Zod schemas. This allows for domain-specific metadata structures (e.g., product details, legal entities, sentiment analysis) to be reliably extracted via LLM structured output.
585
- - Extract domain-specific metadata using your own Zod schemas (e.g., product details, legal entities, sentiment)
586
- - Customize extraction behavior with your own LLM model and instructions
587
- - Organize extracted data by nesting it under custom metadata keys
588
- - Existing extractors (title, summary, keywords, questions) remain unchanged and fully compatible
589
-
590
- **Before** (limited to built-in extractors):
591
-
592
- ```typescript
593
- await document.extractMetadata({
594
- extract: {
595
- title: true,
596
- summary: true,
597
- },
598
- });
599
- ```
600
-
601
- **After** (with custom Zod schema):
602
-
603
- ```typescript
604
- import { z } from 'zod';
605
-
606
- const productSchema = z.object({
607
- name: z.string(),
608
- price: z.number(),
609
- category: z.string(),
610
- });
611
-
612
- await document.extractMetadata({
613
- extract: {
614
- title: true,
615
- schema: {
616
- schema: productSchema,
617
- instructions: 'Extract product details from the document',
618
- metadataKey: 'product',
619
- },
620
- },
621
- });
622
- ```
623
-
624
- With `metadataKey`, extracted data is nested under the key:
625
-
626
- ```typescript
627
- {
628
- title: "Product Document",
629
- summary: "A comprehensive guide",
630
- product: {
631
- name: "Wireless Headphones",
632
- price: 149.99,
633
- category: "Electronics"
634
- }
635
- }
636
- ```
637
-
638
- Without `metadataKey`, extracted data is returned inline:
639
-
640
- ```typescript
641
- {
642
- title: "Product Document",
643
- summary: "A comprehensive guide",
644
- name: "Wireless Headphones",
645
- price: 149.99,
646
- category: "Electronics"
647
- }
648
- ```
649
-
650
- Fixes #11799
651
-
652
- - Update peer dependencies to match core package version bump (1.0.0) ([#9596](https://github.com/mastra-ai/mastra/pull/9596))
653
-
654
- - Add dynamic vectorStore resolver support for multi-tenant applications ([#11542](https://github.com/mastra-ai/mastra/pull/11542))
655
-
656
- The vectorStore option in createVectorQueryTool and createGraphRAGTool now accepts a resolver function in addition to static instances. This enables multi-tenant setups where each tenant has isolated data in separate PostgreSQL schemas.
657
-
658
- Also improves providerOptions type safety by using MastraEmbeddingOptions types instead of a generic Record type.
659
-
660
- - Update peer dependencies to match core package version bump (1.0.0) ([#9587](https://github.com/mastra-ai/mastra/pull/9587))
661
-
662
- - Renamed `keepSeparator` parameter to `separatorPosition` with a cleaner type. ([#11802](https://github.com/mastra-ai/mastra/pull/11802))
663
-
664
- The `keepSeparator` parameter had a confusing `boolean | 'start' | 'end'` type where `true` was secretly an alias for `'start'`. The new `separatorPosition` parameter uses explicit `'start' | 'end'` values, and omitting the parameter discards the separator (previous default behavior).
665
-
666
- **Migration**
667
-
668
- ```typescript
669
- // Before
670
- await doc.chunk({
671
- strategy: 'character',
672
- separator: '.',
673
- keepSeparator: true, // or 'start'
674
- });
675
-
676
- await doc.chunk({
677
- strategy: 'character',
678
- separator: '.',
679
- keepSeparator: 'end',
680
- });
681
-
682
- await doc.chunk({
683
- strategy: 'character',
684
- separator: '.',
685
- keepSeparator: false, // or omit entirely
686
- });
687
-
688
- // After
689
- await doc.chunk({
690
- strategy: 'character',
691
- separator: '.',
692
- separatorPosition: 'start',
693
- });
694
-
695
- await doc.chunk({
696
- strategy: 'character',
697
- separator: '.',
698
- separatorPosition: 'end',
699
- });
700
-
701
- await doc.chunk({
702
- strategy: 'character',
703
- separator: '.',
704
- // omit separatorPosition to discard separator
705
- });
706
- ```
707
-
708
- ### Patch Changes
709
-
710
- - dependencies updates: ([#10133](https://github.com/mastra-ai/mastra/pull/10133))
711
- - Updated dependency [`js-tiktoken@^1.0.21` ↗︎](https://www.npmjs.com/package/js-tiktoken/v/1.0.21) (from `^1.0.20`, in `dependencies`)
712
-
713
- - dependencies updates: ([#9842](https://github.com/mastra-ai/mastra/pull/9842))
714
- - Updated dependency [`@paralleldrive/cuid2@^2.3.1` ↗︎](https://www.npmjs.com/package/@paralleldrive/cuid2/v/2.3.1) (from `^2.2.2`, in `dependencies`)
715
-
716
- - Add embedded documentation support for Mastra packages ([#11472](https://github.com/mastra-ai/mastra/pull/11472))
717
-
718
- Mastra packages now include embedded documentation in the published npm package under `dist/docs/`. This enables coding agents and AI assistants to understand and use the framework by reading documentation directly from `node_modules`.
719
-
720
- Each package includes:
721
- - **SKILL.md** - Entry point explaining the package's purpose and capabilities
722
- - **SOURCE_MAP.json** - Machine-readable index mapping exports to types and implementation files
723
- - **Topic folders** - Conceptual documentation organized by feature area
724
-
725
- Documentation is driven by the `packages` frontmatter field in MDX files, which maps docs to their corresponding packages. CI validation ensures all docs include this field.
726
-
727
- - Add maxSize support for HTML chunking strategies ([#10654](https://github.com/mastra-ai/mastra/pull/10654))
728
-
729
- Added support for the `maxSize` option in HTML chunking strategies (`headers` and `sections`), allowing users to control the maximum chunk size when chunking HTML documents. Previously, HTML chunks could be excessively large when sections contained substantial content.
730
-
731
- **Changes:**
732
- - Added `maxSize` support to `headers` strategy - applies `RecursiveCharacterTransformer` after header-based splitting
733
- - Added `maxSize` support to `sections` strategy - applies `RecursiveCharacterTransformer` after section-based splitting
734
- - Fixed `splitHtmlByHeaders` content extraction bug - changed from broken `nextElementSibling` to working `parentNode.childNodes` approach
735
- - Added comprehensive test coverage including integration test with real arXiv paper
736
-
737
- **Usage:**
738
-
739
- ```typescript
740
- import { MDocument } from '@mastra/rag';
741
-
742
- const doc = MDocument.fromHTML(htmlContent);
743
-
744
- const chunks = await doc.chunk({
745
- strategy: 'html',
746
- headers: [
747
- ['h1', 'Header 1'],
748
- ['h2', 'Header 2'],
749
- ['h3', 'Header 3'],
750
- ],
751
- maxSize: 512, // Control chunk size
752
- overlap: 50, // Optional overlap for context
753
- });
754
- ```
755
-
756
- **Results from real arXiv paper test:**
757
- - Without maxSize: 22 chunks, max 45,531 chars (too big!)
758
- - With maxSize=512: 499 chunks, max 512 chars (properly sized)
759
-
760
- Fixes #7942
761
-
762
- - Add table support to markdown transformer ([#10487](https://github.com/mastra-ai/mastra/pull/10487))
763
-
764
- Added support for markdown tables in the `MarkdownHeaderTransformer` to prevent tables from being split in the middle during document chunking. Tables are now treated as semantic units similar to code blocks.
765
-
766
- **Changes:**
767
- - Updated `MarkdownHeaderTransformer` to detect and preserve markdown tables during chunking
768
- - Tables are identified by lines containing pipe characters (`|`)
769
- - Tables are kept together as a single block, preventing splits that would break table structure
770
- - Added comprehensive test coverage for table handling in various scenarios
771
- - Works with both simple and complex tables, including multi-row tables and tables with different formatting
772
-
773
- **Usage:**
774
-
775
- ```typescript
776
- import { MDocument } from '@mastra/rag';
777
-
778
- const doc = MDocument.fromMarkdown(`
779
- # Data Report
780
-
781
- ## Results
782
-
783
- | Name | Score | Status |
784
- |------|-------|--------|
785
- | Alice | 95 | Pass |
786
- | Bob | 87 | Pass |
787
- | Carol | 78 | Pass |
788
-
789
- ## Summary
790
-
791
- The results show...
792
- `);
793
-
794
- const chunks = await doc.chunk({
795
- strategy: 'markdown',
796
- headers: [
797
- ['#', 'title'],
798
- ['##', 'section'],
799
- ],
800
- });
801
-
802
- // Tables will now be preserved intact within chunks
803
- ```
804
-
805
- - Fix invalid filter handling in vector queries and graph-rag searches. Invalid filter inputs now throw explicit errors instead of silently falling back to empty filters, preventing unintended unfiltered results. ([#10375](https://github.com/mastra-ai/mastra/pull/10375))
806
-
807
- - Add support for AI SDK v6 (LanguageModelV3) ([#11191](https://github.com/mastra-ai/mastra/pull/11191))
808
-
809
- Agents can now use `LanguageModelV3` models from AI SDK v6 beta providers like `@ai-sdk/openai@^3.0.0-beta`.
810
-
811
- **New features:**
812
- - Usage normalization: V3's nested usage format is normalized to Mastra's flat format with `reasoningTokens`, `cachedInputTokens`, and raw data preserved in a `raw` field
813
-
814
- **Backward compatible:** All existing V1 and V2 models continue to work unchanged.
815
-
816
- - Update peer dependencies to match core package version bump (1.0.0) ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
817
-
818
- - Update tool execution signature ([#9587](https://github.com/mastra-ai/mastra/pull/9587))
819
-
820
- Consolidated the 3 different execution contexts to one
821
-
822
- ```typescript
823
- // before depending on the context the tool was executed in
824
- tool.execute({ context: data });
825
- tool.execute({ context: { inputData: data } });
826
- tool.execute(data);
827
-
828
- // now, for all contexts
829
- tool.execute(data, context);
830
- ```
831
-
832
- **Before:**
833
-
834
- ```typescript
835
- inputSchema: z.object({ something: z.string() }),
836
- execute: async ({ context, tracingContext, runId, ... }) => {
837
- return doSomething(context.string);
838
- }
839
- ```
840
-
841
- **After:**
842
-
843
- ```typescript
844
- inputSchema: z.object({ something: z.string() }),
845
- execute: async (inputData, context) => {
846
- const { agent, mcp, workflow, ...sharedContext } = context
847
-
848
- // context that only an agent would get like toolCallId, messages, suspend, resume, etc
849
- if (agent) {
850
- doSomething(inputData.something, agent)
851
- // context that only a workflow would get like runId, state, suspend, resume, etc
852
- } else if (workflow) {
853
- doSomething(inputData.something, workflow)
854
- // context that only a workflow would get like "extra", "elicitation"
855
- } else if (mcp) {
856
- doSomething(inputData.something, mcp)
857
- } else {
858
- // Running a tool in no execution context
859
- return doSomething(inputData.something);
860
- }
861
- }
862
- ```
863
-
864
- - Remove format references from rag package ([#9646](https://github.com/mastra-ai/mastra/pull/9646))
865
-
866
- - Remove unnecessary `ai` package peer dependency to enable compatibility with AI SDK v6. The rag package doesn't directly use the ai package, so this peer dependency was unnecessarily constraining version compatibility. ([#11724](https://github.com/mastra-ai/mastra/pull/11724))
867
-
868
- - Updated dependencies [[`ac0d2f4`](https://github.com/mastra-ai/mastra/commit/ac0d2f4ff8831f72c1c66c2be809706d17f65789), [`2319326`](https://github.com/mastra-ai/mastra/commit/2319326f8c64e503a09bbcf14be2dd65405445e0), [`d2d3e22`](https://github.com/mastra-ai/mastra/commit/d2d3e22a419ee243f8812a84e3453dd44365ecb0), [`08766f1`](https://github.com/mastra-ai/mastra/commit/08766f15e13ac0692fde2a8bd366c2e16e4321df), [`72df8ae`](https://github.com/mastra-ai/mastra/commit/72df8ae595584cdd7747d5c39ffaca45e4507227), [`ebae12a`](https://github.com/mastra-ai/mastra/commit/ebae12a2dd0212e75478981053b148a2c246962d), [`c8417b4`](https://github.com/mastra-ai/mastra/commit/c8417b41d9f3486854dc7842d977fbe5e2166264), [`bc72b52`](https://github.com/mastra-ai/mastra/commit/bc72b529ee4478fe89ecd85a8be47ce0127b82a0), [`39c9743`](https://github.com/mastra-ai/mastra/commit/39c97432d084294f8ba85fbf3ef28098ff21459e), [`1dbd8c7`](https://github.com/mastra-ai/mastra/commit/1dbd8c729fb6536ec52f00064d76b80253d346e9), [`c61a0a5`](https://github.com/mastra-ai/mastra/commit/c61a0a5de4904c88fd8b3718bc26d1be1c2ec6e7), [`05b8bee`](https://github.com/mastra-ai/mastra/commit/05b8bee9e50e6c2a4a2bf210eca25ee212ca24fa), [`3076c67`](https://github.com/mastra-ai/mastra/commit/3076c6778b18988ae7d5c4c5c466366974b2d63f), [`3d93a15`](https://github.com/mastra-ai/mastra/commit/3d93a15796b158c617461c8b98bede476ebb43e2), [`9198899`](https://github.com/mastra-ai/mastra/commit/91988995c427b185c33714b7f3be955367911324), [`ed3e3dd`](https://github.com/mastra-ai/mastra/commit/ed3e3ddec69d564fe2b125e083437f76331f1283), [`c59e13c`](https://github.com/mastra-ai/mastra/commit/c59e13c7688284bd96b2baee3e314335003548de), [`c042bd0`](https://github.com/mastra-ai/mastra/commit/c042bd0b743e0e86199d0cb83344ca7690e34a9c), [`f743dbb`](https://github.com/mastra-ai/mastra/commit/f743dbb8b40d1627b5c10c0e6fc154f4ebb6e394), [`21a15de`](https://github.com/mastra-ai/mastra/commit/21a15de369fe82aac26bb642ed7be73505475e8b), [`e54953e`](https://github.com/mastra-ai/mastra/commit/e54953ed8ce1b28c0d62a19950163039af7834b4), [`ae8baf7`](https://github.com/mastra-ai/mastra/commit/ae8baf7d8adcb0ff9dac11880400452bc49b33ff), [`fec5129`](https://github.com/mastra-ai/mastra/commit/fec5129de7fc64423ea03661a56cef31dc747a0d), [`940a2b2`](https://github.com/mastra-ai/mastra/commit/940a2b27480626ed7e74f55806dcd2181c1dd0c2), [`1a0d3fc`](https://github.com/mastra-ai/mastra/commit/1a0d3fc811482c9c376cdf79ee615c23bae9b2d6), [`85d7ee1`](https://github.com/mastra-ai/mastra/commit/85d7ee18ff4e14d625a8a30ec6656bb49804989b), [`c6c1092`](https://github.com/mastra-ai/mastra/commit/c6c1092f8fbf76109303f69e000e96fd1960c4ce), [`0491e7c`](https://github.com/mastra-ai/mastra/commit/0491e7c9b714cb0ba22187ee062147ec2dd7c712), [`f6f4903`](https://github.com/mastra-ai/mastra/commit/f6f4903397314f73362061dc5a3e8e7c61ea34aa), [`d5ed981`](https://github.com/mastra-ai/mastra/commit/d5ed981c8701c1b8a27a5f35a9a2f7d9244e695f), [`85a628b`](https://github.com/mastra-ai/mastra/commit/85a628b1224a8f64cd82ea7f033774bf22df7a7e), [`0e8ed46`](https://github.com/mastra-ai/mastra/commit/0e8ed467c54d6901a6a365f270ec15d6faadb36c), [`33a4d2e`](https://github.com/mastra-ai/mastra/commit/33a4d2e4ed8af51f69256232f00c34d6b6b51d48), [`9650cce`](https://github.com/mastra-ai/mastra/commit/9650cce52a1d917ff9114653398e2a0f5c3ba808), [`6c049d9`](https://github.com/mastra-ai/mastra/commit/6c049d94063fdcbd5b81c4912a2bf82a92c9cc0b), [`910db9e`](https://github.com/mastra-ai/mastra/commit/910db9e0312888495eb5617b567f247d03303814), [`2f897df`](https://github.com/mastra-ai/mastra/commit/2f897df208508f46f51b7625e5dd20c37f93e0e3), [`d629361`](https://github.com/mastra-ai/mastra/commit/d629361a60f6565b5bfb11976fdaf7308af858e2), [`4f94ed8`](https://github.com/mastra-ai/mastra/commit/4f94ed8177abfde3ec536e3574883e075423350c), [`feb7ee4`](https://github.com/mastra-ai/mastra/commit/feb7ee4d09a75edb46c6669a3beaceec78811747), [`4aaa844`](https://github.com/mastra-ai/mastra/commit/4aaa844a4f19d054490f43638a990cc57bda8d2f), [`c237233`](https://github.com/mastra-ai/mastra/commit/c23723399ccedf7f5744b3f40997b79246bfbe64), [`38380b6`](https://github.com/mastra-ai/mastra/commit/38380b60fca905824bdf6b43df307a58efb1aa15), [`6833c69`](https://github.com/mastra-ai/mastra/commit/6833c69607418d257750bbcdd84638993d343539), [`932d63d`](https://github.com/mastra-ai/mastra/commit/932d63dd51be9c8bf1e00e3671fe65606c6fb9cd), [`4a1a6cb`](https://github.com/mastra-ai/mastra/commit/4a1a6cb3facad54b2bb6780b00ce91d6de1edc08), [`08c31c1`](https://github.com/mastra-ai/mastra/commit/08c31c188ebccd598acaf55e888b6397d01f7eae), [`919a22b`](https://github.com/mastra-ai/mastra/commit/919a22b25876f9ed5891efe5facbe682c30ff497), [`15f9e21`](https://github.com/mastra-ai/mastra/commit/15f9e216177201ea6e3f6d0bfb063fcc0953444f), [`3443770`](https://github.com/mastra-ai/mastra/commit/3443770662df8eb24c9df3589b2792d78cfcb811), [`69136e7`](https://github.com/mastra-ai/mastra/commit/69136e748e32f57297728a4e0f9a75988462f1a7), [`b0e2ea5`](https://github.com/mastra-ai/mastra/commit/b0e2ea5b52c40fae438b9e2f7baee6f0f89c5442), [`f0a07e0`](https://github.com/mastra-ai/mastra/commit/f0a07e0111b3307c5fabfa4094c5c2cfb734fbe6), [`ff94dea`](https://github.com/mastra-ai/mastra/commit/ff94dea935f4e34545c63bcb6c29804732698809), [`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`b760b73`](https://github.com/mastra-ai/mastra/commit/b760b731aca7c8a3f041f61d57a7f125ae9cb215), [`aaa40e7`](https://github.com/mastra-ai/mastra/commit/aaa40e788628b319baa8e889407d11ad626547fa), [`1521d71`](https://github.com/mastra-ai/mastra/commit/1521d716e5daedc74690c983fbd961123c56756b), [`449aed2`](https://github.com/mastra-ai/mastra/commit/449aed2ba9d507b75bf93d427646ea94f734dfd1), [`eb648a2`](https://github.com/mastra-ai/mastra/commit/eb648a2cc1728f7678768dd70cd77619b448dab9), [`695a621`](https://github.com/mastra-ai/mastra/commit/695a621528bdabeb87f83c2277cf2bb084c7f2b4), [`9e1911d`](https://github.com/mastra-ai/mastra/commit/9e1911db2b4db85e0e768c3f15e0d61e319869f6), [`ac3cc23`](https://github.com/mastra-ai/mastra/commit/ac3cc2397d1966bc0fc2736a223abc449d3c7719), [`c456e01`](https://github.com/mastra-ai/mastra/commit/c456e0149e3c176afcefdbd9bb1d2c5917723725), [`ebac155`](https://github.com/mastra-ai/mastra/commit/ebac15564a590117db7078233f927a7e28a85106), [`a86f4df`](https://github.com/mastra-ai/mastra/commit/a86f4df0407311e0d2ea49b9a541f0938810d6a9), [`dd1c38d`](https://github.com/mastra-ai/mastra/commit/dd1c38d1b75f1b695c27b40d8d9d6ed00d5e0f6f), [`5948e6a`](https://github.com/mastra-ai/mastra/commit/5948e6a5146c83666ba3f294b2be576c82a513fb), [`5b2ff46`](https://github.com/mastra-ai/mastra/commit/5b2ff4651df70c146523a7fca773f8eb0a2272f8), [`edb07e4`](https://github.com/mastra-ai/mastra/commit/edb07e49283e0c28bd094a60e03439bf6ecf0221), [`e0941c3`](https://github.com/mastra-ai/mastra/commit/e0941c3d7fc75695d5d258e7008fd5d6e650800c), [`db41688`](https://github.com/mastra-ai/mastra/commit/db4168806d007417e2e60b4f68656dca4e5f40c9), [`2b459f4`](https://github.com/mastra-ai/mastra/commit/2b459f466fd91688eeb2a44801dc23f7f8a887ab), [`798d0c7`](https://github.com/mastra-ai/mastra/commit/798d0c740232653b1d754870e6b43a55c364ffe2), [`0c0580a`](https://github.com/mastra-ai/mastra/commit/0c0580a42f697cd2a7d5973f25bfe7da9055038a), [`8940859`](https://github.com/mastra-ai/mastra/commit/89408593658199b4ad67f7b65e888f344e64a442), [`486352b`](https://github.com/mastra-ai/mastra/commit/486352b66c746602b68a95839f830de14c7fb8c0), [`ab035c2`](https://github.com/mastra-ai/mastra/commit/ab035c2ef6d8cc7bb25f06f1a38508bd9e6f126b), [`e629310`](https://github.com/mastra-ai/mastra/commit/e629310f1a73fa236d49ec7a1d1cceb6229dc7cc), [`0131105`](https://github.com/mastra-ai/mastra/commit/0131105532e83bdcbb73352fc7d0879eebf140dc), [`5ca599d`](https://github.com/mastra-ai/mastra/commit/5ca599d0bb59a1595f19f58473fcd67cc71cef58), [`09e4bae`](https://github.com/mastra-ai/mastra/commit/09e4bae18dd5357d2ae078a4a95a2af32168ab08), [`47b1c16`](https://github.com/mastra-ai/mastra/commit/47b1c16a01c7ffb6765fe1e499b49092f8b7eba3), [`4c6b492`](https://github.com/mastra-ai/mastra/commit/4c6b492c4dd591c6a592520c1f6855d6e936d71f), [`bff1145`](https://github.com/mastra-ai/mastra/commit/bff114556b3cbadad9b2768488708f8ad0e91475), [`dff01d8`](https://github.com/mastra-ai/mastra/commit/dff01d81ce1f4e4087cfac20fa868e6db138dd14), [`9d5059e`](https://github.com/mastra-ai/mastra/commit/9d5059eae810829935fb08e81a9bb7ecd5b144a7), [`ffe84d5`](https://github.com/mastra-ai/mastra/commit/ffe84d54f3b0f85167fe977efd027dba027eb998), [`5c8ca24`](https://github.com/mastra-ai/mastra/commit/5c8ca247094e0cc2cdbd7137822fb47241f86e77), [`9d819d5`](https://github.com/mastra-ai/mastra/commit/9d819d54b61481639f4008e4694791bddf187edd), [`24b76d8`](https://github.com/mastra-ai/mastra/commit/24b76d8e17656269c8ed09a0c038adb9cc2ae95a), [`31d13d5`](https://github.com/mastra-ai/mastra/commit/31d13d5fdc2e2380e2e3ee3ec9fb29d2a00f265d), [`ef756c6`](https://github.com/mastra-ai/mastra/commit/ef756c65f82d16531c43f49a27290a416611e526), [`e191844`](https://github.com/mastra-ai/mastra/commit/e1918444ca3f80e82feef1dad506cd4ec6e2875f), [`243a823`](https://github.com/mastra-ai/mastra/commit/243a8239c5906f5c94e4f78b54676793f7510ae3), [`b00ccd3`](https://github.com/mastra-ai/mastra/commit/b00ccd325ebd5d9e37e34dd0a105caae67eb568f), [`28f5f89`](https://github.com/mastra-ai/mastra/commit/28f5f89705f2409921e3c45178796c0e0d0bbb64), [`22553f1`](https://github.com/mastra-ai/mastra/commit/22553f11c63ee5e966a9c034a349822249584691), [`4c62166`](https://github.com/mastra-ai/mastra/commit/4c621669f4a29b1f443eca3ba70b814afa286266), [`e601b27`](https://github.com/mastra-ai/mastra/commit/e601b272c70f3a5ecca610373aa6223012704892), [`7d56d92`](https://github.com/mastra-ai/mastra/commit/7d56d9213886e8353956d7d40df10045fd12b299), [`81dc110`](https://github.com/mastra-ai/mastra/commit/81dc11008d147cf5bdc8996ead1aa61dbdebb6fc), [`7bcbf10`](https://github.com/mastra-ai/mastra/commit/7bcbf10133516e03df964b941f9a34e9e4ab4177), [`029540c`](https://github.com/mastra-ai/mastra/commit/029540ca1e582fc2dd8d288ecd4a9b0f31a954ef), [`7237163`](https://github.com/mastra-ai/mastra/commit/72371635dbf96a87df4b073cc48fc655afbdce3d), [`2500740`](https://github.com/mastra-ai/mastra/commit/2500740ea23da067d6e50ec71c625ab3ce275e64), [`4353600`](https://github.com/mastra-ai/mastra/commit/43536005a65988a8eede236f69122e7f5a284ba2), [`653e65a`](https://github.com/mastra-ai/mastra/commit/653e65ae1f9502c2958a32f47a5a2df11e612a92), [`873ecbb`](https://github.com/mastra-ai/mastra/commit/873ecbb517586aa17d2f1e99283755b3ebb2863f), [`6986fb0`](https://github.com/mastra-ai/mastra/commit/6986fb064f5db6ecc24aa655e1d26529087b43b3), [`3d3366f`](https://github.com/mastra-ai/mastra/commit/3d3366f31683e7137d126a3a57174a222c5801fb), [`5a4953f`](https://github.com/mastra-ai/mastra/commit/5a4953f7d25bb15ca31ed16038092a39cb3f98b3), [`4f9bbe5`](https://github.com/mastra-ai/mastra/commit/4f9bbe5968f42c86f4930b8193de3c3c17e5bd36), [`efe406a`](https://github.com/mastra-ai/mastra/commit/efe406a1353c24993280ebc2ed61dd9f65b84b26), [`eb9e522`](https://github.com/mastra-ai/mastra/commit/eb9e522ce3070a405e5b949b7bf5609ca51d7fe2), [`fd3d338`](https://github.com/mastra-ai/mastra/commit/fd3d338a2c362174ed5b383f1f011ad9fb0302aa), [`20e6f19`](https://github.com/mastra-ai/mastra/commit/20e6f1971d51d3ff6dd7accad8aaaae826d540ed), [`053e979`](https://github.com/mastra-ai/mastra/commit/053e9793b28e970086b0507f7f3b76ea32c1e838), [`02e51fe`](https://github.com/mastra-ai/mastra/commit/02e51feddb3d4155cfbcc42624fd0d0970d032c0), [`71c8d6c`](https://github.com/mastra-ai/mastra/commit/71c8d6c161253207b2b9588bdadb7eed604f7253), [`7aedb74`](https://github.com/mastra-ai/mastra/commit/7aedb74883adf66af38e270e4068fd42e7a37036), [`3bdfa75`](https://github.com/mastra-ai/mastra/commit/3bdfa7507a91db66f176ba8221aa28dd546e464a), [`119e5c6`](https://github.com/mastra-ai/mastra/commit/119e5c65008f3e5cfca954eefc2eb85e3bf40da4), [`c6fd6fe`](https://github.com/mastra-ai/mastra/commit/c6fd6fedd09e9cf8004b03a80925f5e94826ad7e), [`8f02d80`](https://github.com/mastra-ai/mastra/commit/8f02d800777397e4b45d7f1ad041988a8b0c6630), [`fdac646`](https://github.com/mastra-ai/mastra/commit/fdac646033a0930a1a4e00d13aa64c40bb7f1e02), [`6179a9b`](https://github.com/mastra-ai/mastra/commit/6179a9ba36ffac326de3cc3c43cdc8028d37c251), [`8f3fa3a`](https://github.com/mastra-ai/mastra/commit/8f3fa3a652bb77da092f913ec51ae46e3a7e27dc), [`d07b568`](https://github.com/mastra-ai/mastra/commit/d07b5687819ea8cb1dffa776d0c1765faf4aa1ae), [`e770de9`](https://github.com/mastra-ai/mastra/commit/e770de941a287a49b1964d44db5a5763d19890a6), [`e26dc9c`](https://github.com/mastra-ai/mastra/commit/e26dc9c3ccfec54ae3dc3e2b2589f741f9ae60a6), [`55edf73`](https://github.com/mastra-ai/mastra/commit/55edf7302149d6c964fbb7908b43babfc2b52145), [`c30400a`](https://github.com/mastra-ai/mastra/commit/c30400a49b994b1b97256fe785eb6c906fc2b232), [`486352b`](https://github.com/mastra-ai/mastra/commit/486352b66c746602b68a95839f830de14c7fb8c0), [`00f4921`](https://github.com/mastra-ai/mastra/commit/00f4921dd2c91a1e5446799599ef7116a8214a1a), [`1a46a56`](https://github.com/mastra-ai/mastra/commit/1a46a566f45a3fcbadc1cf36bf86d351f264bfa3), [`ca8041c`](https://github.com/mastra-ai/mastra/commit/ca8041cce0379fda22ed293a565bcb5b6ddca68a), [`b5dc973`](https://github.com/mastra-ai/mastra/commit/b5dc9733a5158850298dfb103acb3babdba8a318), [`7051bf3`](https://github.com/mastra-ai/mastra/commit/7051bf38b3b122a069008f861f7bfc004a6d9f6e), [`a8f1494`](https://github.com/mastra-ai/mastra/commit/a8f1494f4bbdc2770bcf327d4c7d869e332183f1), [`52e2716`](https://github.com/mastra-ai/mastra/commit/52e2716b42df6eff443de72360ae83e86ec23993), [`d7aad50`](https://github.com/mastra-ai/mastra/commit/d7aad501ce61646b76b4b511e558ac4eea9884d0), [`4f0b3c6`](https://github.com/mastra-ai/mastra/commit/4f0b3c66f196c06448487f680ccbb614d281e2f7), [`27b4040`](https://github.com/mastra-ai/mastra/commit/27b4040bfa1a95d92546f420a02a626b1419a1d6), [`c61fac3`](https://github.com/mastra-ai/mastra/commit/c61fac3add96f0dcce0208c07415279e2537eb62), [`6f14f70`](https://github.com/mastra-ai/mastra/commit/6f14f706ccaaf81b69544b6c1b75ab66a41e5317), [`69e0a87`](https://github.com/mastra-ai/mastra/commit/69e0a878896a2da9494945d86e056a5f8f05b851), [`cd29ad2`](https://github.com/mastra-ai/mastra/commit/cd29ad23a255534e8191f249593849ed29160886), [`bdf4d8c`](https://github.com/mastra-ai/mastra/commit/bdf4d8cdc656d8a2c21d81834bfa3bfa70f56c16), [`854e3da`](https://github.com/mastra-ai/mastra/commit/854e3dad5daac17a91a20986399d3a51f54bf68b), [`ce18d38`](https://github.com/mastra-ai/mastra/commit/ce18d38678c65870350d123955014a8432075fd9), [`3cf540b`](https://github.com/mastra-ai/mastra/commit/3cf540b9fbfea8f4fc8d3a2319a4e6c0b0cbfd52), [`352a5d6`](https://github.com/mastra-ai/mastra/commit/352a5d625cfe09849b21e8f52a24c9f0366759d5), [`1c6ce51`](https://github.com/mastra-ai/mastra/commit/1c6ce51f875915ab57fd36873623013699a2a65d), [`74c4f22`](https://github.com/mastra-ai/mastra/commit/74c4f22ed4c71e72598eacc346ba95cdbc00294f), [`3a76a80`](https://github.com/mastra-ai/mastra/commit/3a76a80284cb71a0faa975abb3d4b2a9631e60cd), [`898a972`](https://github.com/mastra-ai/mastra/commit/898a9727d286c2510d6b702dfd367e6aaf5c6b0f), [`0793497`](https://github.com/mastra-ai/mastra/commit/079349753620c40246ffd673e3f9d7d9820beff3), [`09e4bae`](https://github.com/mastra-ai/mastra/commit/09e4bae18dd5357d2ae078a4a95a2af32168ab08), [`026b848`](https://github.com/mastra-ai/mastra/commit/026b8483fbf5b6d977be8f7e6aac8d15c75558ac), [`2c212e7`](https://github.com/mastra-ai/mastra/commit/2c212e704c90e2db83d4109e62c03f0f6ebd2667), [`a97003a`](https://github.com/mastra-ai/mastra/commit/a97003aa1cf2f4022a41912324a1e77263b326b8), [`f9a2509`](https://github.com/mastra-ai/mastra/commit/f9a25093ea72d210a5e52cfcb3bcc8b5e02dc25c), [`66741d1`](https://github.com/mastra-ai/mastra/commit/66741d1a99c4f42cf23a16109939e8348ac6852e), [`ccc141e`](https://github.com/mastra-ai/mastra/commit/ccc141ed27da0abc3a3fc28e9e5128152e8e37f4), [`27c0009`](https://github.com/mastra-ai/mastra/commit/27c0009777a6073d7631b0eb7b481d94e165b5ca), [`01f8878`](https://github.com/mastra-ai/mastra/commit/01f88783de25e4de048c1c8aace43e26373c6ea5), [`dee388d`](https://github.com/mastra-ai/mastra/commit/dee388dde02f2e63c53385ae69252a47ab6825cc), [`610a70b`](https://github.com/mastra-ai/mastra/commit/610a70bdad282079f0c630e0d7bb284578f20151), [`5df9cce`](https://github.com/mastra-ai/mastra/commit/5df9cce1a753438413f64c11eeef8f845745c2a8), [`b7e17d3`](https://github.com/mastra-ai/mastra/commit/b7e17d3f5390bb5a71efc112204413656fcdc18d), [`4c77209`](https://github.com/mastra-ai/mastra/commit/4c77209e6c11678808b365d545845918c40045c8), [`a854ede`](https://github.com/mastra-ai/mastra/commit/a854ede62bf5ac0945a624ac48913dd69c73aabf), [`fe3b897`](https://github.com/mastra-ai/mastra/commit/fe3b897c2ccbcd2b10e81b099438c7337feddf89), [`c576fc0`](https://github.com/mastra-ai/mastra/commit/c576fc0b100b2085afded91a37c97a0ea0ec09c7), [`3defc80`](https://github.com/mastra-ai/mastra/commit/3defc80cf2b88a1b7fc1cc4ddcb91e982a614609), [`00123ba`](https://github.com/mastra-ai/mastra/commit/00123ba96dc9e5cd0b110420ebdba56d8f237b25), [`16153fe`](https://github.com/mastra-ai/mastra/commit/16153fe7eb13c99401f48e6ca32707c965ee28b9), [`9f4a683`](https://github.com/mastra-ai/mastra/commit/9f4a6833e88b52574665c028fd5508ad5c2f6004), [`bc94344`](https://github.com/mastra-ai/mastra/commit/bc943444a1342d8a662151b7bce1df7dae32f59c), [`4ca4306`](https://github.com/mastra-ai/mastra/commit/4ca430614daa5fa04730205a302a43bf4accfe9f), [`cccf9c8`](https://github.com/mastra-ai/mastra/commit/cccf9c8b2d2dfc1a5e63919395b83d78c89682a0), [`74e504a`](https://github.com/mastra-ai/mastra/commit/74e504a3b584eafd2f198001c6a113bbec589fd3), [`29c4309`](https://github.com/mastra-ai/mastra/commit/29c4309f818b24304c041bcb4a8f19b5f13f6b62), [`16785ce`](https://github.com/mastra-ai/mastra/commit/16785ced928f6f22638f4488cf8a125d99211799), [`57d157f`](https://github.com/mastra-ai/mastra/commit/57d157f0b163a95c3e6c9eae31bdb11d1bfc64f9), [`61a5705`](https://github.com/mastra-ai/mastra/commit/61a570551278b6743e64243b3ce7d73de915ca8a), [`903f67d`](https://github.com/mastra-ai/mastra/commit/903f67d184504a273893818c02b961f5423a79ad), [`3f3fc30`](https://github.com/mastra-ai/mastra/commit/3f3fc3096f24c4a26cffeecfe73085928f72aa63), [`d827d08`](https://github.com/mastra-ai/mastra/commit/d827d0808ffe1f3553a84e975806cc989b9735dd), [`e33fdbd`](https://github.com/mastra-ai/mastra/commit/e33fdbd07b33920d81e823122331b0c0bee0bb59), [`4524734`](https://github.com/mastra-ai/mastra/commit/45247343e384717a7c8404296275c56201d6470f), [`7a010c5`](https://github.com/mastra-ai/mastra/commit/7a010c56b846a313a49ae42fccd3d8de2b9f292d), [`2a90c55`](https://github.com/mastra-ai/mastra/commit/2a90c55a86a9210697d5adaab5ee94584b079adc), [`2a53598`](https://github.com/mastra-ai/mastra/commit/2a53598c6d8cfeb904a7fc74e57e526d751c8fa6), [`81b6a8f`](https://github.com/mastra-ai/mastra/commit/81b6a8ff79f49a7549d15d66624ac1a0b8f5f971), [`8538a0d`](https://github.com/mastra-ai/mastra/commit/8538a0d232619bf55dad7ddc2a8b0ca77c679a87), [`d90ea65`](https://github.com/mastra-ai/mastra/commit/d90ea6536f7aa51c6545a4e9215b55858e98e16d), [`db70a48`](https://github.com/mastra-ai/mastra/commit/db70a48aeeeeb8e5f92007e8ede52c364ce15287), [`261473a`](https://github.com/mastra-ai/mastra/commit/261473ac637e633064a22076671e2e02b002214d), [`eb09742`](https://github.com/mastra-ai/mastra/commit/eb09742197f66c4c38154c3beec78313e69760b2), [`de8239b`](https://github.com/mastra-ai/mastra/commit/de8239bdcb1d8c0cfa06da21f1569912a66bbc8a), [`e4d366a`](https://github.com/mastra-ai/mastra/commit/e4d366aeb500371dd4210d6aa8361a4c21d87034), [`23c10a1`](https://github.com/mastra-ai/mastra/commit/23c10a1efdd9a693c405511ab2dc8a1236603162), [`b5e6cd7`](https://github.com/mastra-ai/mastra/commit/b5e6cd77fc8c8e64e0494c1d06cee3d84e795d1e), [`d171e55`](https://github.com/mastra-ai/mastra/commit/d171e559ead9f52ec728d424844c8f7b164c4510), [`f0fdc14`](https://github.com/mastra-ai/mastra/commit/f0fdc14ee233d619266b3d2bbdeea7d25cfc6d13), [`a4f010b`](https://github.com/mastra-ai/mastra/commit/a4f010b22e4355a5fdee70a1fe0f6e4a692cc29e), [`c7cd3c7`](https://github.com/mastra-ai/mastra/commit/c7cd3c7a187d7aaf79e2ca139de328bf609a14b4), [`db18bc9`](https://github.com/mastra-ai/mastra/commit/db18bc9c3825e2c1a0ad9a183cc9935f6691bfa1), [`96d35f6`](https://github.com/mastra-ai/mastra/commit/96d35f61376bc2b1bf148648a2c1985bd51bef55), [`68ec97d`](https://github.com/mastra-ai/mastra/commit/68ec97d4c07c6393fcf95c2481fc5d73da99f8c8), [`8dc7f55`](https://github.com/mastra-ai/mastra/commit/8dc7f55900395771da851dc7d78d53ae84fe34ec), [`cfabdd4`](https://github.com/mastra-ai/mastra/commit/cfabdd4aae7a726b706942d6836eeca110fb6267), [`9b37b56`](https://github.com/mastra-ai/mastra/commit/9b37b565e1f2a76c24f728945cc740c2b09be9da), [`01b20fe`](https://github.com/mastra-ai/mastra/commit/01b20fefb7c67c2b7d79417598ef4e60256d1225), [`dd4f34c`](https://github.com/mastra-ai/mastra/commit/dd4f34c78cbae24063463475b0619575c415f9b8), [`8379099`](https://github.com/mastra-ai/mastra/commit/8379099fc467af6bef54dd7f80c9bd75bf8bbddf), [`0dbf199`](https://github.com/mastra-ai/mastra/commit/0dbf199110f22192ce5c95b1c8148d4872b4d119), [`5cbe88a`](https://github.com/mastra-ai/mastra/commit/5cbe88aefbd9f933bca669fd371ea36bf939ac6d), [`41a23c3`](https://github.com/mastra-ai/mastra/commit/41a23c32f9877d71810f37e24930515df2ff7a0f), [`a1bd7b8`](https://github.com/mastra-ai/mastra/commit/a1bd7b8571db16b94eb01588f451a74758c96d65), [`d78b38d`](https://github.com/mastra-ai/mastra/commit/d78b38d898fce285260d3bbb4befade54331617f), [`a0a5b4b`](https://github.com/mastra-ai/mastra/commit/a0a5b4bbebe6c701ebbadf744873aa0d5ca01371), [`ce0a73a`](https://github.com/mastra-ai/mastra/commit/ce0a73abeaa75b10ca38f9e40a255a645d50ebfb), [`5d171ad`](https://github.com/mastra-ai/mastra/commit/5d171ad9ef340387276b77c2bb3e83e83332d729), [`0633100`](https://github.com/mastra-ai/mastra/commit/0633100a911ad22f5256471bdf753da21c104742), [`3759cb0`](https://github.com/mastra-ai/mastra/commit/3759cb064935b5f74c65ac2f52a1145f7352899d), [`929f69c`](https://github.com/mastra-ai/mastra/commit/929f69c3436fa20dd0f0e2f7ebe8270bd82a1529), [`c710c16`](https://github.com/mastra-ai/mastra/commit/c710c1652dccfdc4111c8412bca7a6bb1d48b441), [`10c2735`](https://github.com/mastra-ai/mastra/commit/10c27355edfdad1ee2b826b897df74125eb81fb8), [`354ad0b`](https://github.com/mastra-ai/mastra/commit/354ad0b7b1b8183ac567f236a884fc7ede6d7138), [`cfae733`](https://github.com/mastra-ai/mastra/commit/cfae73394f4920635e6c919c8e95ff9a0788e2e5), [`8c0ec25`](https://github.com/mastra-ai/mastra/commit/8c0ec25646c8a7df253ed1e5ff4863a0d3f1316c), [`e3dfda7`](https://github.com/mastra-ai/mastra/commit/e3dfda7b11bf3b8c4bb55637028befb5f387fc74), [`69ea758`](https://github.com/mastra-ai/mastra/commit/69ea758358edd7117f191c2e69c8bb5fc79e7a1a), [`73b0bb3`](https://github.com/mastra-ai/mastra/commit/73b0bb394dba7c9482eb467a97ab283dbc0ef4db), [`651e772`](https://github.com/mastra-ai/mastra/commit/651e772eb1475fb13e126d3fcc01751297a88214), [`a02e542`](https://github.com/mastra-ai/mastra/commit/a02e542d23179bad250b044b17ff023caa61739f), [`f03ae60`](https://github.com/mastra-ai/mastra/commit/f03ae60500fe350c9d828621006cdafe1975fdd8), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`a372c64`](https://github.com/mastra-ai/mastra/commit/a372c640ad1fd12e8f0613cebdc682fc156b4d95), [`993ad98`](https://github.com/mastra-ai/mastra/commit/993ad98d7ad3bebda9ecef5fec5c94349a0d04bc), [`676ccc7`](https://github.com/mastra-ai/mastra/commit/676ccc7fe92468d2d45d39c31a87825c89fd1ea0), [`3ff2c17`](https://github.com/mastra-ai/mastra/commit/3ff2c17a58e312fad5ea37377262c12d92ca0908), [`a0e437f`](https://github.com/mastra-ai/mastra/commit/a0e437fac561b28ee719e0302d72b2f9b4c138f0), [`d1e74a0`](https://github.com/mastra-ai/mastra/commit/d1e74a0a293866dece31022047f5dbab65a304d0), [`844ea5d`](https://github.com/mastra-ai/mastra/commit/844ea5dc0c248961e7bf73629ae7dcff503e853c), [`5627a8c`](https://github.com/mastra-ai/mastra/commit/5627a8c6dc11fe3711b3fa7a6ffd6eb34100a306), [`398fde3`](https://github.com/mastra-ai/mastra/commit/398fde3f39e707cda79372cdae8f9870e3b57c8d), [`c10398d`](https://github.com/mastra-ai/mastra/commit/c10398d5b88f1d4af556f4267ff06f1d11e89179), [`3ff45d1`](https://github.com/mastra-ai/mastra/commit/3ff45d10e0c80c5335a957ab563da72feb623520), [`f0f8f12`](https://github.com/mastra-ai/mastra/commit/f0f8f125c308f2d0fd36942ef652fd852df7522f), [`b61b93f`](https://github.com/mastra-ai/mastra/commit/b61b93f9e058b11dd2eec169853175d31dbdd567), [`bae33d9`](https://github.com/mastra-ai/mastra/commit/bae33d91a63fbb64d1e80519e1fc1acaed1e9013), [`39e7869`](https://github.com/mastra-ai/mastra/commit/39e7869bc7d0ee391077ce291474d8a84eedccff), [`0d7618b`](https://github.com/mastra-ai/mastra/commit/0d7618bc650bf2800934b243eca5648f4aeed9c2), [`7b763e5`](https://github.com/mastra-ai/mastra/commit/7b763e52fc3eaf699c2a99f2adf418dd46e4e9a5), [`251df45`](https://github.com/mastra-ai/mastra/commit/251df4531407dfa46d805feb40ff3fb49769f455), [`d36cfbb`](https://github.com/mastra-ai/mastra/commit/d36cfbbb6565ba5f827883cc9bb648eb14befdc1), [`f894d14`](https://github.com/mastra-ai/mastra/commit/f894d148946629af7b1f452d65a9cf864cec3765), [`8846867`](https://github.com/mastra-ai/mastra/commit/8846867ffa9a3746767618e314bebac08eb77d87), [`1924cf0`](https://github.com/mastra-ai/mastra/commit/1924cf06816e5e4d4d5333065ec0f4bb02a97799), [`c0b731f`](https://github.com/mastra-ai/mastra/commit/c0b731fb27d712dc8582e846df5c0332a6a0c5ba), [`5761926`](https://github.com/mastra-ai/mastra/commit/57619260c4a2cdd598763abbacd90de594c6bc76), [`c2b9547`](https://github.com/mastra-ai/mastra/commit/c2b9547bf435f56339f23625a743b2147ab1c7a6), [`3697853`](https://github.com/mastra-ai/mastra/commit/3697853deeb72017d90e0f38a93c1e29221aeca0), [`c900fdd`](https://github.com/mastra-ai/mastra/commit/c900fdd504c41348efdffb205cfe80d48c38fa33), [`9312dcd`](https://github.com/mastra-ai/mastra/commit/9312dcd1c6f5b321929e7d382e763d95fdc030f5), [`b2e45ec`](https://github.com/mastra-ai/mastra/commit/b2e45eca727a8db01a81ba93f1a5219c7183c839), [`5d7000f`](https://github.com/mastra-ai/mastra/commit/5d7000f757cd65ea9dc5b05e662fd83dfd44e932), [`43ca8f2`](https://github.com/mastra-ai/mastra/commit/43ca8f2c7334851cc7b4d3d2f037d8784bfbdd5f), [`d6d49f7`](https://github.com/mastra-ai/mastra/commit/d6d49f7b8714fa19a52ff9c7cf7fb7e73751901e), [`00c2387`](https://github.com/mastra-ai/mastra/commit/00c2387f5f04a365316f851e58666ac43f8c4edf), [`a534e95`](https://github.com/mastra-ai/mastra/commit/a534e9591f83b3cc1ebff99c67edf4cda7bf81d3), [`9d0e7fe`](https://github.com/mastra-ai/mastra/commit/9d0e7feca8ed98de959f53476ee1456073673348), [`53d927c`](https://github.com/mastra-ai/mastra/commit/53d927cc6f03bff33655b7e2b788da445a08731d), [`ad6250d`](https://github.com/mastra-ai/mastra/commit/ad6250dbdaad927e29f74a27b83f6c468b50a705), [`580b592`](https://github.com/mastra-ai/mastra/commit/580b5927afc82fe460dfdf9a38a902511b6b7e7f), [`604a79f`](https://github.com/mastra-ai/mastra/commit/604a79fecf276e26a54a3fe01bb94e65315d2e0e), [`42a42cf`](https://github.com/mastra-ai/mastra/commit/42a42cf3132b9786feecbb8c13c583dce5b0e198), [`3f2faf2`](https://github.com/mastra-ai/mastra/commit/3f2faf2e2d685d6c053cc5af1bf9fedf267b2ce5), [`22f64bc`](https://github.com/mastra-ai/mastra/commit/22f64bc1d37149480b58bf2fefe35b79a1e3e7d5), [`ff4d9a6`](https://github.com/mastra-ai/mastra/commit/ff4d9a6704fc87b31a380a76ed22736fdedbba5a), [`50fd320`](https://github.com/mastra-ai/mastra/commit/50fd320003d0d93831c230ef531bef41f5ba7b3a), [`847c212`](https://github.com/mastra-ai/mastra/commit/847c212caba7df0d6f2fc756b494ac3c75c3720d), [`69821ef`](https://github.com/mastra-ai/mastra/commit/69821ef806482e2c44e2197ac0b050c3fe3a5285), [`3a73998`](https://github.com/mastra-ai/mastra/commit/3a73998fa4ebeb7f3dc9301afe78095fc63e7999), [`ffa553a`](https://github.com/mastra-ai/mastra/commit/ffa553a3edc1bd17d73669fba66d6b6f4ac10897), [`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc), [`58e3931`](https://github.com/mastra-ai/mastra/commit/58e3931af9baa5921688566210f00fb0c10479fa), [`ae08bf0`](https://github.com/mastra-ai/mastra/commit/ae08bf0ebc6a4e4da992b711c4a389c32ba84cf4), [`0bed332`](https://github.com/mastra-ai/mastra/commit/0bed332843f627202c6520eaf671771313cd20f3), [`887f0b4`](https://github.com/mastra-ai/mastra/commit/887f0b4746cdbd7cb7d6b17ac9f82aeb58037ea5), [`2562143`](https://github.com/mastra-ai/mastra/commit/256214336b4faa78646c9c1776612393790d8784), [`b7959e6`](https://github.com/mastra-ai/mastra/commit/b7959e6e25a46b480f9ea2217c4c6c588c423791), [`a7ce182`](https://github.com/mastra-ai/mastra/commit/a7ce1822a8785ce45d62dd5c911af465e144f7d7), [`bda6370`](https://github.com/mastra-ai/mastra/commit/bda637009360649aaf579919e7873e33553c273e), [`d7acd8e`](https://github.com/mastra-ai/mastra/commit/d7acd8e987b5d7eff4fd98b0906c17c06a2e83d5), [`c7f1f7d`](https://github.com/mastra-ai/mastra/commit/c7f1f7d24f61f247f018cc2d1f33bf63212959a7), [`0bddc6d`](https://github.com/mastra-ai/mastra/commit/0bddc6d8dbd6f6008c0cba2e4960a2da75a55af1), [`bec5efd`](https://github.com/mastra-ai/mastra/commit/bec5efde96653ccae6604e68c696d1bc6c1a0bf5), [`5947fcd`](https://github.com/mastra-ai/mastra/commit/5947fcdd425531f29f9422026d466c2ee3113c93), [`4aa55b3`](https://github.com/mastra-ai/mastra/commit/4aa55b383cf06043943359ea316572fd969861a7), [`21735a7`](https://github.com/mastra-ai/mastra/commit/21735a7ef306963554a69a89b44f06c3bcd85141), [`735d8c1`](https://github.com/mastra-ai/mastra/commit/735d8c1c0d19fbc09e6f8b66cf41bc7655993838), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b), [`1ed5716`](https://github.com/mastra-ai/mastra/commit/1ed5716830867b3774c4a1b43cc0d82935f32b96), [`acf322e`](https://github.com/mastra-ai/mastra/commit/acf322e0f1fd0189684cf529d91c694bea918a45), [`2ca67cc`](https://github.com/mastra-ai/mastra/commit/2ca67cc3bb1f6a617353fdcab197d9efebe60d6f), [`9eedf7d`](https://github.com/mastra-ai/mastra/commit/9eedf7de1d6e0022a2f4e5e9e6fe1ec468f9b43c), [`b339816`](https://github.com/mastra-ai/mastra/commit/b339816df0984d0243d944ac2655d6ba5f809cde), [`e16d553`](https://github.com/mastra-ai/mastra/commit/e16d55338403c7553531cc568125c63d53653dff), [`6f941c4`](https://github.com/mastra-ai/mastra/commit/6f941c438ca5f578619788acc7608fc2e23bd176), [`4186bdd`](https://github.com/mastra-ai/mastra/commit/4186bdd00731305726fa06adba0b076a1d50b49f), [`08bb631`](https://github.com/mastra-ai/mastra/commit/08bb631ae2b14684b2678e3549d0b399a6f0561e), [`c942802`](https://github.com/mastra-ai/mastra/commit/c942802a477a925b01859a7b8688d4355715caaa), [`4f0331a`](https://github.com/mastra-ai/mastra/commit/4f0331a79bf6eb5ee598a5086e55de4b5a0ada03), [`a0c8c1b`](https://github.com/mastra-ai/mastra/commit/a0c8c1b87d4fee252aebda73e8637fbe01d761c9), [`1d877b8`](https://github.com/mastra-ai/mastra/commit/1d877b8d7b536a251c1a7a18db7ddcf4f68d6f8b), [`cc34739`](https://github.com/mastra-ai/mastra/commit/cc34739c34b6266a91bea561119240a7acf47887), [`c218bd3`](https://github.com/mastra-ai/mastra/commit/c218bd3759e32423735b04843a09404572631014), [`9e67002`](https://github.com/mastra-ai/mastra/commit/9e67002b52c9be19936c420a489dbee9c5fd6a78), [`7aaf973`](https://github.com/mastra-ai/mastra/commit/7aaf973f83fbbe9521f1f9e7a4fd99b8de464617), [`2c4438b`](https://github.com/mastra-ai/mastra/commit/2c4438b87817ab7eed818c7990fef010475af1a3), [`35edc49`](https://github.com/mastra-ai/mastra/commit/35edc49ac0556db609189641d6341e76771b81fc), [`4d59f58`](https://github.com/mastra-ai/mastra/commit/4d59f58de2d90d6e2810a19d4518e38ddddb9038), [`ef11a61`](https://github.com/mastra-ai/mastra/commit/ef11a61920fa0ed08a5b7ceedd192875af119749), [`2b8893c`](https://github.com/mastra-ai/mastra/commit/2b8893cb108ef9acb72ee7835cd625610d2c1a4a), [`8e5c75b`](https://github.com/mastra-ai/mastra/commit/8e5c75bdb1d08a42d45309a4c72def4b6890230f), [`e1bb9c9`](https://github.com/mastra-ai/mastra/commit/e1bb9c94b4eb68b019ae275981be3feb769b5365), [`351a11f`](https://github.com/mastra-ai/mastra/commit/351a11fcaf2ed1008977fa9b9a489fc422e51cd4), [`8a73529`](https://github.com/mastra-ai/mastra/commit/8a73529ca01187f604b1f3019d0a725ac63ae55f), [`e59e0d3`](https://github.com/mastra-ai/mastra/commit/e59e0d32afb5fcf2c9f3c00c8f81f6c21d3a63fa), [`4fba91b`](https://github.com/mastra-ai/mastra/commit/4fba91bec7c95911dc28e369437596b152b04cd0), [`465ac05`](https://github.com/mastra-ai/mastra/commit/465ac0526a91d175542091c675181f1a96c98c46), [`fa8409b`](https://github.com/mastra-ai/mastra/commit/fa8409bc39cfd8ba6643b9db5269b90b22e2a2f7), [`8a000da`](https://github.com/mastra-ai/mastra/commit/8a000da0c09c679a2312f6b3aa05b2ca78ca7393), [`e7266a2`](https://github.com/mastra-ai/mastra/commit/e7266a278db02035c97a5e9cd9d1669a6b7a535d), [`173c535`](https://github.com/mastra-ai/mastra/commit/173c535c0645b0da404fe09f003778f0b0d4e019), [`12b0cc4`](https://github.com/mastra-ai/mastra/commit/12b0cc4077d886b1a552637dedb70a7ade93528c), [`3bf6c5f`](https://github.com/mastra-ai/mastra/commit/3bf6c5f104c25226cd84e0c77f9dec15f2cac2db)]:
869
- - @mastra/core@1.0.0
870
-
871
- ## 2.0.0-beta.7
872
-
873
- ### Major Changes
874
-
875
- - Refactor workflow and tool types to remove Zod-specific constraints ([#11814](https://github.com/mastra-ai/mastra/pull/11814))
876
-
877
- Removed Zod-specific type constraints across all workflow implementations and tool types, replacing them with generic types. This ensures type consistency across default, evented, and inngest workflows while preparing for Zod v4 migration.
878
-
879
- **Workflow Changes:**
880
- - Removed `z.ZodObject<any>` and `z.ZodType<any>` constraints from all workflow generic types
881
- - Updated method signatures to use `TInput` and `TState` directly instead of `z.infer<TInput>` and `z.infer<TState>`
882
- - Aligned conditional types across all workflow implementations using `TInput extends unknown` pattern
883
- - Fixed `TSteps` generic to properly use `TEngineType` instead of `any`
884
-
885
- **Tool Changes:**
886
- - Removed Zod schema constraints from `ToolExecutionContext` and related interfaces
887
- - Simplified type parameters from `TSuspendSchema extends ZodLikeSchema` to `TSuspend` and `TResume`
888
- - Updated tool execution context types to use generic types
889
-
890
- **Type Utilities:**
891
- - Refactored type helpers to work with generic schemas instead of Zod-specific types
892
- - Updated type extraction utilities for better compatibility
893
-
894
- This change maintains backward compatibility while improving type consistency and preparing for Zod v4 support across all affected packages.
895
-
896
- ### Minor Changes
897
-
898
- - Add schema-driven metadata extraction with Zod support ([#11833](https://github.com/mastra-ai/mastra/pull/11833))
899
-
900
- Introduces a new `SchemaExtractor` that enables extraction of custom structured metadata from document chunks using user-defined Zod schemas. This allows for domain-specific metadata structures (e.g., product details, legal entities, sentiment analysis) to be reliably extracted via LLM structured output.
901
- - Extract domain-specific metadata using your own Zod schemas (e.g., product details, legal entities, sentiment)
902
- - Customize extraction behavior with your own LLM model and instructions
903
- - Organize extracted data by nesting it under custom metadata keys
904
- - Existing extractors (title, summary, keywords, questions) remain unchanged and fully compatible
905
-
906
- **Before** (limited to built-in extractors):
907
-
908
- ```typescript
909
- await document.extractMetadata({
910
- extract: {
911
- title: true,
912
- summary: true,
913
- },
914
- });
915
- ```
916
-
917
- **After** (with custom Zod schema):
918
-
919
- ```typescript
920
- import { z } from 'zod';
921
-
922
- const productSchema = z.object({
923
- name: z.string(),
924
- price: z.number(),
925
- category: z.string(),
926
- });
927
-
928
- await document.extractMetadata({
929
- extract: {
930
- title: true,
931
- schema: {
932
- schema: productSchema,
933
- instructions: 'Extract product details from the document',
934
- metadataKey: 'product',
935
- },
936
- },
937
- });
938
- ```
939
-
940
- With `metadataKey`, extracted data is nested under the key:
941
-
942
- ```typescript
943
- {
944
- title: "Product Document",
945
- summary: "A comprehensive guide",
946
- product: {
947
- name: "Wireless Headphones",
948
- price: 149.99,
949
- category: "Electronics"
950
- }
951
- }
952
- ```
953
-
954
- Without `metadataKey`, extracted data is returned inline:
955
-
956
- ```typescript
957
- {
958
- title: "Product Document",
959
- summary: "A comprehensive guide",
960
- name: "Wireless Headphones",
961
- price: 149.99,
962
- category: "Electronics"
963
- }
964
- ```
965
-
966
- Fixes #11799
967
-
968
- - Renamed `keepSeparator` parameter to `separatorPosition` with a cleaner type. ([#11802](https://github.com/mastra-ai/mastra/pull/11802))
969
-
970
- The `keepSeparator` parameter had a confusing `boolean | 'start' | 'end'` type where `true` was secretly an alias for `'start'`. The new `separatorPosition` parameter uses explicit `'start' | 'end'` values, and omitting the parameter discards the separator (previous default behavior).
971
-
972
- **Migration**
973
-
974
- ```typescript
975
- // Before
976
- await doc.chunk({
977
- strategy: 'character',
978
- separator: '.',
979
- keepSeparator: true, // or 'start'
980
- });
981
-
982
- await doc.chunk({
983
- strategy: 'character',
984
- separator: '.',
985
- keepSeparator: 'end',
986
- });
987
-
988
- await doc.chunk({
989
- strategy: 'character',
990
- separator: '.',
991
- keepSeparator: false, // or omit entirely
992
- });
993
-
994
- // After
995
- await doc.chunk({
996
- strategy: 'character',
997
- separator: '.',
998
- separatorPosition: 'start',
999
- });
1000
-
1001
- await doc.chunk({
1002
- strategy: 'character',
1003
- separator: '.',
1004
- separatorPosition: 'end',
1005
- });
1006
-
1007
- await doc.chunk({
1008
- strategy: 'character',
1009
- separator: '.',
1010
- // omit separatorPosition to discard separator
1011
- });
1012
- ```
1013
-
1014
- ### Patch Changes
1015
-
1016
- - Updated dependencies [[`ebae12a`](https://github.com/mastra-ai/mastra/commit/ebae12a2dd0212e75478981053b148a2c246962d), [`c61a0a5`](https://github.com/mastra-ai/mastra/commit/c61a0a5de4904c88fd8b3718bc26d1be1c2ec6e7), [`69136e7`](https://github.com/mastra-ai/mastra/commit/69136e748e32f57297728a4e0f9a75988462f1a7), [`449aed2`](https://github.com/mastra-ai/mastra/commit/449aed2ba9d507b75bf93d427646ea94f734dfd1), [`eb648a2`](https://github.com/mastra-ai/mastra/commit/eb648a2cc1728f7678768dd70cd77619b448dab9), [`0131105`](https://github.com/mastra-ai/mastra/commit/0131105532e83bdcbb73352fc7d0879eebf140dc), [`9d5059e`](https://github.com/mastra-ai/mastra/commit/9d5059eae810829935fb08e81a9bb7ecd5b144a7), [`ef756c6`](https://github.com/mastra-ai/mastra/commit/ef756c65f82d16531c43f49a27290a416611e526), [`b00ccd3`](https://github.com/mastra-ai/mastra/commit/b00ccd325ebd5d9e37e34dd0a105caae67eb568f), [`3bdfa75`](https://github.com/mastra-ai/mastra/commit/3bdfa7507a91db66f176ba8221aa28dd546e464a), [`e770de9`](https://github.com/mastra-ai/mastra/commit/e770de941a287a49b1964d44db5a5763d19890a6), [`52e2716`](https://github.com/mastra-ai/mastra/commit/52e2716b42df6eff443de72360ae83e86ec23993), [`27b4040`](https://github.com/mastra-ai/mastra/commit/27b4040bfa1a95d92546f420a02a626b1419a1d6), [`610a70b`](https://github.com/mastra-ai/mastra/commit/610a70bdad282079f0c630e0d7bb284578f20151), [`8dc7f55`](https://github.com/mastra-ai/mastra/commit/8dc7f55900395771da851dc7d78d53ae84fe34ec), [`8379099`](https://github.com/mastra-ai/mastra/commit/8379099fc467af6bef54dd7f80c9bd75bf8bbddf), [`8c0ec25`](https://github.com/mastra-ai/mastra/commit/8c0ec25646c8a7df253ed1e5ff4863a0d3f1316c), [`ff4d9a6`](https://github.com/mastra-ai/mastra/commit/ff4d9a6704fc87b31a380a76ed22736fdedbba5a), [`69821ef`](https://github.com/mastra-ai/mastra/commit/69821ef806482e2c44e2197ac0b050c3fe3a5285), [`1ed5716`](https://github.com/mastra-ai/mastra/commit/1ed5716830867b3774c4a1b43cc0d82935f32b96), [`4186bdd`](https://github.com/mastra-ai/mastra/commit/4186bdd00731305726fa06adba0b076a1d50b49f), [`7aaf973`](https://github.com/mastra-ai/mastra/commit/7aaf973f83fbbe9521f1f9e7a4fd99b8de464617)]:
1017
- - @mastra/core@1.0.0-beta.22
1018
-
1019
- ## 2.0.0-beta.6
1020
-
1021
- ### Patch Changes
1022
-
1023
- - Remove unnecessary `ai` package peer dependency to enable compatibility with AI SDK v6. The rag package doesn't directly use the ai package, so this peer dependency was unnecessarily constraining version compatibility. ([#11724](https://github.com/mastra-ai/mastra/pull/11724))
1024
-
1025
- - Updated dependencies [[`08766f1`](https://github.com/mastra-ai/mastra/commit/08766f15e13ac0692fde2a8bd366c2e16e4321df), [`ae8baf7`](https://github.com/mastra-ai/mastra/commit/ae8baf7d8adcb0ff9dac11880400452bc49b33ff), [`cfabdd4`](https://github.com/mastra-ai/mastra/commit/cfabdd4aae7a726b706942d6836eeca110fb6267), [`a0e437f`](https://github.com/mastra-ai/mastra/commit/a0e437fac561b28ee719e0302d72b2f9b4c138f0), [`bec5efd`](https://github.com/mastra-ai/mastra/commit/bec5efde96653ccae6604e68c696d1bc6c1a0bf5), [`9eedf7d`](https://github.com/mastra-ai/mastra/commit/9eedf7de1d6e0022a2f4e5e9e6fe1ec468f9b43c)]:
1026
- - @mastra/core@1.0.0-beta.21
1027
-
1028
- ## 2.0.0-beta.5
1029
-
1030
- ### Minor Changes
1031
-
1032
- - Add dynamic vectorStore resolver support for multi-tenant applications ([#11542](https://github.com/mastra-ai/mastra/pull/11542))
1033
-
1034
- The vectorStore option in createVectorQueryTool and createGraphRAGTool now accepts a resolver function in addition to static instances. This enables multi-tenant setups where each tenant has isolated data in separate PostgreSQL schemas.
1035
-
1036
- Also improves providerOptions type safety by using MastraEmbeddingOptions types instead of a generic Record type.
1037
-
1038
- ### Patch Changes
1039
-
1040
- - dependencies updates: ([#10133](https://github.com/mastra-ai/mastra/pull/10133))
1041
- - Updated dependency [`js-tiktoken@^1.0.21` ↗︎](https://www.npmjs.com/package/js-tiktoken/v/1.0.21) (from `^1.0.20`, in `dependencies`)
1042
-
1043
- - Add embedded documentation support for Mastra packages ([#11472](https://github.com/mastra-ai/mastra/pull/11472))
1044
-
1045
- Mastra packages now include embedded documentation in the published npm package under `dist/docs/`. This enables coding agents and AI assistants to understand and use the framework by reading documentation directly from `node_modules`.
1046
-
1047
- Each package includes:
1048
- - **SKILL.md** - Entry point explaining the package's purpose and capabilities
1049
- - **SOURCE_MAP.json** - Machine-readable index mapping exports to types and implementation files
1050
- - **Topic folders** - Conceptual documentation organized by feature area
1051
-
1052
- Documentation is driven by the `packages` frontmatter field in MDX files, which maps docs to their corresponding packages. CI validation ensures all docs include this field.
1053
-
1054
- - Updated dependencies [[`d2d3e22`](https://github.com/mastra-ai/mastra/commit/d2d3e22a419ee243f8812a84e3453dd44365ecb0), [`bc72b52`](https://github.com/mastra-ai/mastra/commit/bc72b529ee4478fe89ecd85a8be47ce0127b82a0), [`05b8bee`](https://github.com/mastra-ai/mastra/commit/05b8bee9e50e6c2a4a2bf210eca25ee212ca24fa), [`c042bd0`](https://github.com/mastra-ai/mastra/commit/c042bd0b743e0e86199d0cb83344ca7690e34a9c), [`940a2b2`](https://github.com/mastra-ai/mastra/commit/940a2b27480626ed7e74f55806dcd2181c1dd0c2), [`e0941c3`](https://github.com/mastra-ai/mastra/commit/e0941c3d7fc75695d5d258e7008fd5d6e650800c), [`0c0580a`](https://github.com/mastra-ai/mastra/commit/0c0580a42f697cd2a7d5973f25bfe7da9055038a), [`28f5f89`](https://github.com/mastra-ai/mastra/commit/28f5f89705f2409921e3c45178796c0e0d0bbb64), [`e601b27`](https://github.com/mastra-ai/mastra/commit/e601b272c70f3a5ecca610373aa6223012704892), [`3d3366f`](https://github.com/mastra-ai/mastra/commit/3d3366f31683e7137d126a3a57174a222c5801fb), [`5a4953f`](https://github.com/mastra-ai/mastra/commit/5a4953f7d25bb15ca31ed16038092a39cb3f98b3), [`eb9e522`](https://github.com/mastra-ai/mastra/commit/eb9e522ce3070a405e5b949b7bf5609ca51d7fe2), [`20e6f19`](https://github.com/mastra-ai/mastra/commit/20e6f1971d51d3ff6dd7accad8aaaae826d540ed), [`4f0b3c6`](https://github.com/mastra-ai/mastra/commit/4f0b3c66f196c06448487f680ccbb614d281e2f7), [`74c4f22`](https://github.com/mastra-ai/mastra/commit/74c4f22ed4c71e72598eacc346ba95cdbc00294f), [`81b6a8f`](https://github.com/mastra-ai/mastra/commit/81b6a8ff79f49a7549d15d66624ac1a0b8f5f971), [`e4d366a`](https://github.com/mastra-ai/mastra/commit/e4d366aeb500371dd4210d6aa8361a4c21d87034), [`a4f010b`](https://github.com/mastra-ai/mastra/commit/a4f010b22e4355a5fdee70a1fe0f6e4a692cc29e), [`73b0bb3`](https://github.com/mastra-ai/mastra/commit/73b0bb394dba7c9482eb467a97ab283dbc0ef4db), [`5627a8c`](https://github.com/mastra-ai/mastra/commit/5627a8c6dc11fe3711b3fa7a6ffd6eb34100a306), [`3ff45d1`](https://github.com/mastra-ai/mastra/commit/3ff45d10e0c80c5335a957ab563da72feb623520), [`251df45`](https://github.com/mastra-ai/mastra/commit/251df4531407dfa46d805feb40ff3fb49769f455), [`f894d14`](https://github.com/mastra-ai/mastra/commit/f894d148946629af7b1f452d65a9cf864cec3765), [`c2b9547`](https://github.com/mastra-ai/mastra/commit/c2b9547bf435f56339f23625a743b2147ab1c7a6), [`580b592`](https://github.com/mastra-ai/mastra/commit/580b5927afc82fe460dfdf9a38a902511b6b7e7f), [`58e3931`](https://github.com/mastra-ai/mastra/commit/58e3931af9baa5921688566210f00fb0c10479fa), [`08bb631`](https://github.com/mastra-ai/mastra/commit/08bb631ae2b14684b2678e3549d0b399a6f0561e), [`4fba91b`](https://github.com/mastra-ai/mastra/commit/4fba91bec7c95911dc28e369437596b152b04cd0), [`12b0cc4`](https://github.com/mastra-ai/mastra/commit/12b0cc4077d886b1a552637dedb70a7ade93528c)]:
1055
- - @mastra/core@1.0.0-beta.20
1056
-
1057
- ## 2.0.0-beta.4
1058
-
1059
- ### Patch Changes
1060
-
1061
- - Add support for AI SDK v6 (LanguageModelV3) ([#11191](https://github.com/mastra-ai/mastra/pull/11191))
1062
-
1063
- Agents can now use `LanguageModelV3` models from AI SDK v6 beta providers like `@ai-sdk/openai@^3.0.0-beta`.
1064
-
1065
- **New features:**
1066
- - Usage normalization: V3's nested usage format is normalized to Mastra's flat format with `reasoningTokens`, `cachedInputTokens`, and raw data preserved in a `raw` field
1067
-
1068
- **Backward compatible:** All existing V1 and V2 models continue to work unchanged.
1069
-
1070
- - Updated dependencies [[`4f94ed8`](https://github.com/mastra-ai/mastra/commit/4f94ed8177abfde3ec536e3574883e075423350c), [`ac3cc23`](https://github.com/mastra-ai/mastra/commit/ac3cc2397d1966bc0fc2736a223abc449d3c7719), [`a86f4df`](https://github.com/mastra-ai/mastra/commit/a86f4df0407311e0d2ea49b9a541f0938810d6a9), [`029540c`](https://github.com/mastra-ai/mastra/commit/029540ca1e582fc2dd8d288ecd4a9b0f31a954ef), [`66741d1`](https://github.com/mastra-ai/mastra/commit/66741d1a99c4f42cf23a16109939e8348ac6852e), [`01b20fe`](https://github.com/mastra-ai/mastra/commit/01b20fefb7c67c2b7d79417598ef4e60256d1225), [`0dbf199`](https://github.com/mastra-ai/mastra/commit/0dbf199110f22192ce5c95b1c8148d4872b4d119), [`a7ce182`](https://github.com/mastra-ai/mastra/commit/a7ce1822a8785ce45d62dd5c911af465e144f7d7)]:
1071
- - @mastra/core@1.0.0-beta.14
1072
-
1073
- ## 2.0.0-beta.3
1074
-
1075
- ### Patch Changes
1076
-
1077
- - Add maxSize support for HTML chunking strategies ([#10654](https://github.com/mastra-ai/mastra/pull/10654))
1078
-
1079
- Added support for the `maxSize` option in HTML chunking strategies (`headers` and `sections`), allowing users to control the maximum chunk size when chunking HTML documents. Previously, HTML chunks could be excessively large when sections contained substantial content.
1080
-
1081
- **Changes:**
1082
- - Added `maxSize` support to `headers` strategy - applies `RecursiveCharacterTransformer` after header-based splitting
1083
- - Added `maxSize` support to `sections` strategy - applies `RecursiveCharacterTransformer` after section-based splitting
1084
- - Fixed `splitHtmlByHeaders` content extraction bug - changed from broken `nextElementSibling` to working `parentNode.childNodes` approach
1085
- - Added comprehensive test coverage including integration test with real arXiv paper
1086
-
1087
- **Usage:**
1088
-
1089
- ```typescript
1090
- import { MDocument } from '@mastra/rag';
1091
-
1092
- const doc = MDocument.fromHTML(htmlContent);
1093
-
1094
- const chunks = await doc.chunk({
1095
- strategy: 'html',
1096
- headers: [
1097
- ['h1', 'Header 1'],
1098
- ['h2', 'Header 2'],
1099
- ['h3', 'Header 3'],
1100
- ],
1101
- maxSize: 512, // Control chunk size
1102
- overlap: 50, // Optional overlap for context
1103
- });
1104
- ```
1105
-
1106
- **Results from real arXiv paper test:**
1107
- - Without maxSize: 22 chunks, max 45,531 chars (too big!)
1108
- - With maxSize=512: 499 chunks, max 512 chars (properly sized)
1109
-
1110
- Fixes #7942
1111
-
1112
- - Updated dependencies [[`ac0d2f4`](https://github.com/mastra-ai/mastra/commit/ac0d2f4ff8831f72c1c66c2be809706d17f65789), [`1a0d3fc`](https://github.com/mastra-ai/mastra/commit/1a0d3fc811482c9c376cdf79ee615c23bae9b2d6), [`85a628b`](https://github.com/mastra-ai/mastra/commit/85a628b1224a8f64cd82ea7f033774bf22df7a7e), [`c237233`](https://github.com/mastra-ai/mastra/commit/c23723399ccedf7f5744b3f40997b79246bfbe64), [`15f9e21`](https://github.com/mastra-ai/mastra/commit/15f9e216177201ea6e3f6d0bfb063fcc0953444f), [`ff94dea`](https://github.com/mastra-ai/mastra/commit/ff94dea935f4e34545c63bcb6c29804732698809), [`5b2ff46`](https://github.com/mastra-ai/mastra/commit/5b2ff4651df70c146523a7fca773f8eb0a2272f8), [`db41688`](https://github.com/mastra-ai/mastra/commit/db4168806d007417e2e60b4f68656dca4e5f40c9), [`5ca599d`](https://github.com/mastra-ai/mastra/commit/5ca599d0bb59a1595f19f58473fcd67cc71cef58), [`bff1145`](https://github.com/mastra-ai/mastra/commit/bff114556b3cbadad9b2768488708f8ad0e91475), [`5c8ca24`](https://github.com/mastra-ai/mastra/commit/5c8ca247094e0cc2cdbd7137822fb47241f86e77), [`e191844`](https://github.com/mastra-ai/mastra/commit/e1918444ca3f80e82feef1dad506cd4ec6e2875f), [`22553f1`](https://github.com/mastra-ai/mastra/commit/22553f11c63ee5e966a9c034a349822249584691), [`7237163`](https://github.com/mastra-ai/mastra/commit/72371635dbf96a87df4b073cc48fc655afbdce3d), [`2500740`](https://github.com/mastra-ai/mastra/commit/2500740ea23da067d6e50ec71c625ab3ce275e64), [`873ecbb`](https://github.com/mastra-ai/mastra/commit/873ecbb517586aa17d2f1e99283755b3ebb2863f), [`4f9bbe5`](https://github.com/mastra-ai/mastra/commit/4f9bbe5968f42c86f4930b8193de3c3c17e5bd36), [`02e51fe`](https://github.com/mastra-ai/mastra/commit/02e51feddb3d4155cfbcc42624fd0d0970d032c0), [`8f3fa3a`](https://github.com/mastra-ai/mastra/commit/8f3fa3a652bb77da092f913ec51ae46e3a7e27dc), [`cd29ad2`](https://github.com/mastra-ai/mastra/commit/cd29ad23a255534e8191f249593849ed29160886), [`bdf4d8c`](https://github.com/mastra-ai/mastra/commit/bdf4d8cdc656d8a2c21d81834bfa3bfa70f56c16), [`854e3da`](https://github.com/mastra-ai/mastra/commit/854e3dad5daac17a91a20986399d3a51f54bf68b), [`ce18d38`](https://github.com/mastra-ai/mastra/commit/ce18d38678c65870350d123955014a8432075fd9), [`cccf9c8`](https://github.com/mastra-ai/mastra/commit/cccf9c8b2d2dfc1a5e63919395b83d78c89682a0), [`61a5705`](https://github.com/mastra-ai/mastra/commit/61a570551278b6743e64243b3ce7d73de915ca8a), [`db70a48`](https://github.com/mastra-ai/mastra/commit/db70a48aeeeeb8e5f92007e8ede52c364ce15287), [`f0fdc14`](https://github.com/mastra-ai/mastra/commit/f0fdc14ee233d619266b3d2bbdeea7d25cfc6d13), [`db18bc9`](https://github.com/mastra-ai/mastra/commit/db18bc9c3825e2c1a0ad9a183cc9935f6691bfa1), [`9b37b56`](https://github.com/mastra-ai/mastra/commit/9b37b565e1f2a76c24f728945cc740c2b09be9da), [`41a23c3`](https://github.com/mastra-ai/mastra/commit/41a23c32f9877d71810f37e24930515df2ff7a0f), [`5d171ad`](https://github.com/mastra-ai/mastra/commit/5d171ad9ef340387276b77c2bb3e83e83332d729), [`f03ae60`](https://github.com/mastra-ai/mastra/commit/f03ae60500fe350c9d828621006cdafe1975fdd8), [`d1e74a0`](https://github.com/mastra-ai/mastra/commit/d1e74a0a293866dece31022047f5dbab65a304d0), [`39e7869`](https://github.com/mastra-ai/mastra/commit/39e7869bc7d0ee391077ce291474d8a84eedccff), [`5761926`](https://github.com/mastra-ai/mastra/commit/57619260c4a2cdd598763abbacd90de594c6bc76), [`c900fdd`](https://github.com/mastra-ai/mastra/commit/c900fdd504c41348efdffb205cfe80d48c38fa33), [`604a79f`](https://github.com/mastra-ai/mastra/commit/604a79fecf276e26a54a3fe01bb94e65315d2e0e), [`887f0b4`](https://github.com/mastra-ai/mastra/commit/887f0b4746cdbd7cb7d6b17ac9f82aeb58037ea5), [`2562143`](https://github.com/mastra-ai/mastra/commit/256214336b4faa78646c9c1776612393790d8784), [`ef11a61`](https://github.com/mastra-ai/mastra/commit/ef11a61920fa0ed08a5b7ceedd192875af119749)]:
1113
- - @mastra/core@1.0.0-beta.6
1114
-
1115
- ## 2.0.0-beta.2
1116
-
1117
- ### Patch Changes
1118
-
1119
- - Add table support to markdown transformer ([#10487](https://github.com/mastra-ai/mastra/pull/10487))
1120
-
1121
- Added support for markdown tables in the `MarkdownHeaderTransformer` to prevent tables from being split in the middle during document chunking. Tables are now treated as semantic units similar to code blocks.
1122
-
1123
- **Changes:**
1124
- - Updated `MarkdownHeaderTransformer` to detect and preserve markdown tables during chunking
1125
- - Tables are identified by lines containing pipe characters (`|`)
1126
- - Tables are kept together as a single block, preventing splits that would break table structure
1127
- - Added comprehensive test coverage for table handling in various scenarios
1128
- - Works with both simple and complex tables, including multi-row tables and tables with different formatting
1129
-
1130
- **Usage:**
1131
-
1132
- ```typescript
1133
- import { MDocument } from '@mastra/rag';
1134
-
1135
- const doc = MDocument.fromMarkdown(`
1136
- # Data Report
1137
-
1138
- ## Results
1139
-
1140
- | Name | Score | Status |
1141
- |------|-------|--------|
1142
- | Alice | 95 | Pass |
1143
- | Bob | 87 | Pass |
1144
- | Carol | 78 | Pass |
1145
-
1146
- ## Summary
1147
-
1148
- The results show...
1149
- `);
1150
-
1151
- const chunks = await doc.chunk({
1152
- strategy: 'markdown',
1153
- headers: [
1154
- ['#', 'title'],
1155
- ['##', 'section'],
1156
- ],
1157
- });
1158
-
1159
- // Tables will now be preserved intact within chunks
1160
- ```
1161
-
1162
- - Fix invalid filter handling in vector queries and graph-rag searches. Invalid filter inputs now throw explicit errors instead of silently falling back to empty filters, preventing unintended unfiltered results. ([#10375](https://github.com/mastra-ai/mastra/pull/10375))
1163
-
1164
- - Updated dependencies [[`21a15de`](https://github.com/mastra-ai/mastra/commit/21a15de369fe82aac26bb642ed7be73505475e8b), [`feb7ee4`](https://github.com/mastra-ai/mastra/commit/feb7ee4d09a75edb46c6669a3beaceec78811747), [`b0e2ea5`](https://github.com/mastra-ai/mastra/commit/b0e2ea5b52c40fae438b9e2f7baee6f0f89c5442), [`c456e01`](https://github.com/mastra-ai/mastra/commit/c456e0149e3c176afcefdbd9bb1d2c5917723725), [`ab035c2`](https://github.com/mastra-ai/mastra/commit/ab035c2ef6d8cc7bb25f06f1a38508bd9e6f126b), [`1a46a56`](https://github.com/mastra-ai/mastra/commit/1a46a566f45a3fcbadc1cf36bf86d351f264bfa3), [`3cf540b`](https://github.com/mastra-ai/mastra/commit/3cf540b9fbfea8f4fc8d3a2319a4e6c0b0cbfd52), [`1c6ce51`](https://github.com/mastra-ai/mastra/commit/1c6ce51f875915ab57fd36873623013699a2a65d), [`898a972`](https://github.com/mastra-ai/mastra/commit/898a9727d286c2510d6b702dfd367e6aaf5c6b0f), [`a97003a`](https://github.com/mastra-ai/mastra/commit/a97003aa1cf2f4022a41912324a1e77263b326b8), [`ccc141e`](https://github.com/mastra-ai/mastra/commit/ccc141ed27da0abc3a3fc28e9e5128152e8e37f4), [`fe3b897`](https://github.com/mastra-ai/mastra/commit/fe3b897c2ccbcd2b10e81b099438c7337feddf89), [`00123ba`](https://github.com/mastra-ai/mastra/commit/00123ba96dc9e5cd0b110420ebdba56d8f237b25), [`29c4309`](https://github.com/mastra-ai/mastra/commit/29c4309f818b24304c041bcb4a8f19b5f13f6b62), [`16785ce`](https://github.com/mastra-ai/mastra/commit/16785ced928f6f22638f4488cf8a125d99211799), [`de8239b`](https://github.com/mastra-ai/mastra/commit/de8239bdcb1d8c0cfa06da21f1569912a66bbc8a), [`b5e6cd7`](https://github.com/mastra-ai/mastra/commit/b5e6cd77fc8c8e64e0494c1d06cee3d84e795d1e), [`3759cb0`](https://github.com/mastra-ai/mastra/commit/3759cb064935b5f74c65ac2f52a1145f7352899d), [`651e772`](https://github.com/mastra-ai/mastra/commit/651e772eb1475fb13e126d3fcc01751297a88214), [`b61b93f`](https://github.com/mastra-ai/mastra/commit/b61b93f9e058b11dd2eec169853175d31dbdd567), [`bae33d9`](https://github.com/mastra-ai/mastra/commit/bae33d91a63fbb64d1e80519e1fc1acaed1e9013), [`c0b731f`](https://github.com/mastra-ai/mastra/commit/c0b731fb27d712dc8582e846df5c0332a6a0c5ba), [`43ca8f2`](https://github.com/mastra-ai/mastra/commit/43ca8f2c7334851cc7b4d3d2f037d8784bfbdd5f), [`2ca67cc`](https://github.com/mastra-ai/mastra/commit/2ca67cc3bb1f6a617353fdcab197d9efebe60d6f), [`9e67002`](https://github.com/mastra-ai/mastra/commit/9e67002b52c9be19936c420a489dbee9c5fd6a78), [`35edc49`](https://github.com/mastra-ai/mastra/commit/35edc49ac0556db609189641d6341e76771b81fc)]:
1165
- - @mastra/core@1.0.0-beta.5
1166
-
1167
- ## 2.0.0-beta.1
1168
-
1169
- ### Patch Changes
1170
-
1171
- - dependencies updates: ([#9842](https://github.com/mastra-ai/mastra/pull/9842))
1172
- - Updated dependency [`@paralleldrive/cuid2@^2.3.1` ↗︎](https://www.npmjs.com/package/@paralleldrive/cuid2/v/2.3.1) (from `^2.2.2`, in `dependencies`)
1173
- - Updated dependencies [[`2319326`](https://github.com/mastra-ai/mastra/commit/2319326f8c64e503a09bbcf14be2dd65405445e0), [`d629361`](https://github.com/mastra-ai/mastra/commit/d629361a60f6565b5bfb11976fdaf7308af858e2), [`08c31c1`](https://github.com/mastra-ai/mastra/commit/08c31c188ebccd598acaf55e888b6397d01f7eae), [`fd3d338`](https://github.com/mastra-ai/mastra/commit/fd3d338a2c362174ed5b383f1f011ad9fb0302aa), [`c30400a`](https://github.com/mastra-ai/mastra/commit/c30400a49b994b1b97256fe785eb6c906fc2b232), [`69e0a87`](https://github.com/mastra-ai/mastra/commit/69e0a878896a2da9494945d86e056a5f8f05b851), [`01f8878`](https://github.com/mastra-ai/mastra/commit/01f88783de25e4de048c1c8aace43e26373c6ea5), [`4c77209`](https://github.com/mastra-ai/mastra/commit/4c77209e6c11678808b365d545845918c40045c8), [`d827d08`](https://github.com/mastra-ai/mastra/commit/d827d0808ffe1f3553a84e975806cc989b9735dd), [`23c10a1`](https://github.com/mastra-ai/mastra/commit/23c10a1efdd9a693c405511ab2dc8a1236603162), [`676ccc7`](https://github.com/mastra-ai/mastra/commit/676ccc7fe92468d2d45d39c31a87825c89fd1ea0), [`c10398d`](https://github.com/mastra-ai/mastra/commit/c10398d5b88f1d4af556f4267ff06f1d11e89179), [`00c2387`](https://github.com/mastra-ai/mastra/commit/00c2387f5f04a365316f851e58666ac43f8c4edf), [`ad6250d`](https://github.com/mastra-ai/mastra/commit/ad6250dbdaad927e29f74a27b83f6c468b50a705), [`3a73998`](https://github.com/mastra-ai/mastra/commit/3a73998fa4ebeb7f3dc9301afe78095fc63e7999), [`e16d553`](https://github.com/mastra-ai/mastra/commit/e16d55338403c7553531cc568125c63d53653dff), [`4d59f58`](https://github.com/mastra-ai/mastra/commit/4d59f58de2d90d6e2810a19d4518e38ddddb9038), [`e1bb9c9`](https://github.com/mastra-ai/mastra/commit/e1bb9c94b4eb68b019ae275981be3feb769b5365), [`351a11f`](https://github.com/mastra-ai/mastra/commit/351a11fcaf2ed1008977fa9b9a489fc422e51cd4)]:
1174
- - @mastra/core@1.0.0-beta.3
1175
-
1176
- ## 2.0.0-beta.0
1177
-
1178
- ### Major Changes
1179
-
1180
- - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
1181
-
1182
- - Rename RuntimeContext to RequestContext ([#9511](https://github.com/mastra-ai/mastra/pull/9511))
1183
-
1184
- - Remove deprecated vector prompts and cohere provider from code ([#9596](https://github.com/mastra-ai/mastra/pull/9596))
1185
-
1186
- - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
1187
-
1188
- ### Minor Changes
1189
-
1190
- - Update peer dependencies to match core package version bump (1.0.0) ([#9596](https://github.com/mastra-ai/mastra/pull/9596))
1191
-
1192
- - Update peer dependencies to match core package version bump (1.0.0) ([#9587](https://github.com/mastra-ai/mastra/pull/9587))
1193
-
1194
- ### Patch Changes
1195
-
1196
- - Update peer dependencies to match core package version bump (1.0.0) ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
1197
-
1198
- - Update tool execution signature ([#9587](https://github.com/mastra-ai/mastra/pull/9587))
1199
-
1200
- Consolidated the 3 different execution contexts to one
1201
-
1202
- ```typescript
1203
- // before depending on the context the tool was executed in
1204
- tool.execute({ context: data });
1205
- tool.execute({ context: { inputData: data } });
1206
- tool.execute(data);
1207
-
1208
- // now, for all contexts
1209
- tool.execute(data, context);
1210
- ```
1211
-
1212
- **Before:**
1213
-
1214
- ```typescript
1215
- inputSchema: z.object({ something: z.string() }),
1216
- execute: async ({ context, tracingContext, runId, ... }) => {
1217
- return doSomething(context.string);
1218
- }
1219
- ```
1220
-
1221
- **After:**
1222
-
1223
- ```typescript
1224
- inputSchema: z.object({ something: z.string() }),
1225
- execute: async (inputData, context) => {
1226
- const { agent, mcp, workflow, ...sharedContext } = context
1227
-
1228
- // context that only an agent would get like toolCallId, messages, suspend, resume, etc
1229
- if (agent) {
1230
- doSomething(inputData.something, agent)
1231
- // context that only a workflow would get like runId, state, suspend, resume, etc
1232
- } else if (workflow) {
1233
- doSomething(inputData.something, workflow)
1234
- // context that only a workflow would get like "extra", "elicitation"
1235
- } else if (mcp) {
1236
- doSomething(inputData.something, mcp)
1237
- } else {
1238
- // Running a tool in no execution context
1239
- return doSomething(inputData.something);
1240
- }
1241
- }
1242
- ```
1243
-
1244
- - Remove format references from rag package ([#9646](https://github.com/mastra-ai/mastra/pull/9646))
1245
-
1246
- - Updated dependencies [[`39c9743`](https://github.com/mastra-ai/mastra/commit/39c97432d084294f8ba85fbf3ef28098ff21459e), [`f743dbb`](https://github.com/mastra-ai/mastra/commit/f743dbb8b40d1627b5c10c0e6fc154f4ebb6e394), [`fec5129`](https://github.com/mastra-ai/mastra/commit/fec5129de7fc64423ea03661a56cef31dc747a0d), [`0491e7c`](https://github.com/mastra-ai/mastra/commit/0491e7c9b714cb0ba22187ee062147ec2dd7c712), [`f6f4903`](https://github.com/mastra-ai/mastra/commit/f6f4903397314f73362061dc5a3e8e7c61ea34aa), [`0e8ed46`](https://github.com/mastra-ai/mastra/commit/0e8ed467c54d6901a6a365f270ec15d6faadb36c), [`6c049d9`](https://github.com/mastra-ai/mastra/commit/6c049d94063fdcbd5b81c4912a2bf82a92c9cc0b), [`2f897df`](https://github.com/mastra-ai/mastra/commit/2f897df208508f46f51b7625e5dd20c37f93e0e3), [`3443770`](https://github.com/mastra-ai/mastra/commit/3443770662df8eb24c9df3589b2792d78cfcb811), [`f0a07e0`](https://github.com/mastra-ai/mastra/commit/f0a07e0111b3307c5fabfa4094c5c2cfb734fbe6), [`aaa40e7`](https://github.com/mastra-ai/mastra/commit/aaa40e788628b319baa8e889407d11ad626547fa), [`1521d71`](https://github.com/mastra-ai/mastra/commit/1521d716e5daedc74690c983fbd961123c56756b), [`9e1911d`](https://github.com/mastra-ai/mastra/commit/9e1911db2b4db85e0e768c3f15e0d61e319869f6), [`ebac155`](https://github.com/mastra-ai/mastra/commit/ebac15564a590117db7078233f927a7e28a85106), [`dd1c38d`](https://github.com/mastra-ai/mastra/commit/dd1c38d1b75f1b695c27b40d8d9d6ed00d5e0f6f), [`5948e6a`](https://github.com/mastra-ai/mastra/commit/5948e6a5146c83666ba3f294b2be576c82a513fb), [`8940859`](https://github.com/mastra-ai/mastra/commit/89408593658199b4ad67f7b65e888f344e64a442), [`e629310`](https://github.com/mastra-ai/mastra/commit/e629310f1a73fa236d49ec7a1d1cceb6229dc7cc), [`4c6b492`](https://github.com/mastra-ai/mastra/commit/4c6b492c4dd591c6a592520c1f6855d6e936d71f), [`dff01d8`](https://github.com/mastra-ai/mastra/commit/dff01d81ce1f4e4087cfac20fa868e6db138dd14), [`9d819d5`](https://github.com/mastra-ai/mastra/commit/9d819d54b61481639f4008e4694791bddf187edd), [`71c8d6c`](https://github.com/mastra-ai/mastra/commit/71c8d6c161253207b2b9588bdadb7eed604f7253), [`6179a9b`](https://github.com/mastra-ai/mastra/commit/6179a9ba36ffac326de3cc3c43cdc8028d37c251), [`00f4921`](https://github.com/mastra-ai/mastra/commit/00f4921dd2c91a1e5446799599ef7116a8214a1a), [`ca8041c`](https://github.com/mastra-ai/mastra/commit/ca8041cce0379fda22ed293a565bcb5b6ddca68a), [`7051bf3`](https://github.com/mastra-ai/mastra/commit/7051bf38b3b122a069008f861f7bfc004a6d9f6e), [`a8f1494`](https://github.com/mastra-ai/mastra/commit/a8f1494f4bbdc2770bcf327d4c7d869e332183f1), [`0793497`](https://github.com/mastra-ai/mastra/commit/079349753620c40246ffd673e3f9d7d9820beff3), [`5df9cce`](https://github.com/mastra-ai/mastra/commit/5df9cce1a753438413f64c11eeef8f845745c2a8), [`a854ede`](https://github.com/mastra-ai/mastra/commit/a854ede62bf5ac0945a624ac48913dd69c73aabf), [`c576fc0`](https://github.com/mastra-ai/mastra/commit/c576fc0b100b2085afded91a37c97a0ea0ec09c7), [`3defc80`](https://github.com/mastra-ai/mastra/commit/3defc80cf2b88a1b7fc1cc4ddcb91e982a614609), [`16153fe`](https://github.com/mastra-ai/mastra/commit/16153fe7eb13c99401f48e6ca32707c965ee28b9), [`9f4a683`](https://github.com/mastra-ai/mastra/commit/9f4a6833e88b52574665c028fd5508ad5c2f6004), [`bc94344`](https://github.com/mastra-ai/mastra/commit/bc943444a1342d8a662151b7bce1df7dae32f59c), [`57d157f`](https://github.com/mastra-ai/mastra/commit/57d157f0b163a95c3e6c9eae31bdb11d1bfc64f9), [`903f67d`](https://github.com/mastra-ai/mastra/commit/903f67d184504a273893818c02b961f5423a79ad), [`2a90c55`](https://github.com/mastra-ai/mastra/commit/2a90c55a86a9210697d5adaab5ee94584b079adc), [`eb09742`](https://github.com/mastra-ai/mastra/commit/eb09742197f66c4c38154c3beec78313e69760b2), [`96d35f6`](https://github.com/mastra-ai/mastra/commit/96d35f61376bc2b1bf148648a2c1985bd51bef55), [`5cbe88a`](https://github.com/mastra-ai/mastra/commit/5cbe88aefbd9f933bca669fd371ea36bf939ac6d), [`a1bd7b8`](https://github.com/mastra-ai/mastra/commit/a1bd7b8571db16b94eb01588f451a74758c96d65), [`d78b38d`](https://github.com/mastra-ai/mastra/commit/d78b38d898fce285260d3bbb4befade54331617f), [`0633100`](https://github.com/mastra-ai/mastra/commit/0633100a911ad22f5256471bdf753da21c104742), [`c710c16`](https://github.com/mastra-ai/mastra/commit/c710c1652dccfdc4111c8412bca7a6bb1d48b441), [`354ad0b`](https://github.com/mastra-ai/mastra/commit/354ad0b7b1b8183ac567f236a884fc7ede6d7138), [`cfae733`](https://github.com/mastra-ai/mastra/commit/cfae73394f4920635e6c919c8e95ff9a0788e2e5), [`e3dfda7`](https://github.com/mastra-ai/mastra/commit/e3dfda7b11bf3b8c4bb55637028befb5f387fc74), [`844ea5d`](https://github.com/mastra-ai/mastra/commit/844ea5dc0c248961e7bf73629ae7dcff503e853c), [`398fde3`](https://github.com/mastra-ai/mastra/commit/398fde3f39e707cda79372cdae8f9870e3b57c8d), [`f0f8f12`](https://github.com/mastra-ai/mastra/commit/f0f8f125c308f2d0fd36942ef652fd852df7522f), [`0d7618b`](https://github.com/mastra-ai/mastra/commit/0d7618bc650bf2800934b243eca5648f4aeed9c2), [`7b763e5`](https://github.com/mastra-ai/mastra/commit/7b763e52fc3eaf699c2a99f2adf418dd46e4e9a5), [`d36cfbb`](https://github.com/mastra-ai/mastra/commit/d36cfbbb6565ba5f827883cc9bb648eb14befdc1), [`3697853`](https://github.com/mastra-ai/mastra/commit/3697853deeb72017d90e0f38a93c1e29221aeca0), [`b2e45ec`](https://github.com/mastra-ai/mastra/commit/b2e45eca727a8db01a81ba93f1a5219c7183c839), [`d6d49f7`](https://github.com/mastra-ai/mastra/commit/d6d49f7b8714fa19a52ff9c7cf7fb7e73751901e), [`a534e95`](https://github.com/mastra-ai/mastra/commit/a534e9591f83b3cc1ebff99c67edf4cda7bf81d3), [`9d0e7fe`](https://github.com/mastra-ai/mastra/commit/9d0e7feca8ed98de959f53476ee1456073673348), [`53d927c`](https://github.com/mastra-ai/mastra/commit/53d927cc6f03bff33655b7e2b788da445a08731d), [`3f2faf2`](https://github.com/mastra-ai/mastra/commit/3f2faf2e2d685d6c053cc5af1bf9fedf267b2ce5), [`22f64bc`](https://github.com/mastra-ai/mastra/commit/22f64bc1d37149480b58bf2fefe35b79a1e3e7d5), [`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc), [`b7959e6`](https://github.com/mastra-ai/mastra/commit/b7959e6e25a46b480f9ea2217c4c6c588c423791), [`bda6370`](https://github.com/mastra-ai/mastra/commit/bda637009360649aaf579919e7873e33553c273e), [`d7acd8e`](https://github.com/mastra-ai/mastra/commit/d7acd8e987b5d7eff4fd98b0906c17c06a2e83d5), [`c7f1f7d`](https://github.com/mastra-ai/mastra/commit/c7f1f7d24f61f247f018cc2d1f33bf63212959a7), [`0bddc6d`](https://github.com/mastra-ai/mastra/commit/0bddc6d8dbd6f6008c0cba2e4960a2da75a55af1), [`735d8c1`](https://github.com/mastra-ai/mastra/commit/735d8c1c0d19fbc09e6f8b66cf41bc7655993838), [`acf322e`](https://github.com/mastra-ai/mastra/commit/acf322e0f1fd0189684cf529d91c694bea918a45), [`c942802`](https://github.com/mastra-ai/mastra/commit/c942802a477a925b01859a7b8688d4355715caaa), [`a0c8c1b`](https://github.com/mastra-ai/mastra/commit/a0c8c1b87d4fee252aebda73e8637fbe01d761c9), [`cc34739`](https://github.com/mastra-ai/mastra/commit/cc34739c34b6266a91bea561119240a7acf47887), [`c218bd3`](https://github.com/mastra-ai/mastra/commit/c218bd3759e32423735b04843a09404572631014), [`2c4438b`](https://github.com/mastra-ai/mastra/commit/2c4438b87817ab7eed818c7990fef010475af1a3), [`2b8893c`](https://github.com/mastra-ai/mastra/commit/2b8893cb108ef9acb72ee7835cd625610d2c1a4a), [`8e5c75b`](https://github.com/mastra-ai/mastra/commit/8e5c75bdb1d08a42d45309a4c72def4b6890230f), [`e59e0d3`](https://github.com/mastra-ai/mastra/commit/e59e0d32afb5fcf2c9f3c00c8f81f6c21d3a63fa), [`fa8409b`](https://github.com/mastra-ai/mastra/commit/fa8409bc39cfd8ba6643b9db5269b90b22e2a2f7), [`173c535`](https://github.com/mastra-ai/mastra/commit/173c535c0645b0da404fe09f003778f0b0d4e019)]:
1247
- - @mastra/core@1.0.0-beta.0
1248
-
1249
- ## 1.3.2
1250
-
1251
- ### Patch Changes
1252
-
1253
- - Update peerdeps to 0.23.0-0 ([#9043](https://github.com/mastra-ai/mastra/pull/9043))
1254
-
1255
- - Updated dependencies [[`c67ca32`](https://github.com/mastra-ai/mastra/commit/c67ca32e3c2cf69bfc146580770c720220ca44ac), [`efb5ed9`](https://github.com/mastra-ai/mastra/commit/efb5ed946ae7f410bc68c9430beb4b010afd25ec), [`dbc9e12`](https://github.com/mastra-ai/mastra/commit/dbc9e1216ba575ba59ead4afb727a01215f7de4f), [`99e41b9`](https://github.com/mastra-ai/mastra/commit/99e41b94957cdd25137d3ac12e94e8b21aa01b68), [`c28833c`](https://github.com/mastra-ai/mastra/commit/c28833c5b6d8e10eeffd7f7d39129d53b8bca240), [`8ea07b4`](https://github.com/mastra-ai/mastra/commit/8ea07b4bdc73e4218437dbb6dcb0f4b23e745a44), [`ba201b8`](https://github.com/mastra-ai/mastra/commit/ba201b8f8feac4c72350f2dbd52c13c7297ba7b0), [`f053e89`](https://github.com/mastra-ai/mastra/commit/f053e89160dbd0bd3333fc3492f68231b5c7c349), [`4fc4136`](https://github.com/mastra-ai/mastra/commit/4fc413652866a8d2240694fddb2562e9edbb70df), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`d10baf5`](https://github.com/mastra-ai/mastra/commit/d10baf5a3c924f2a6654e23a3e318ed03f189b76), [`038c55a`](https://github.com/mastra-ai/mastra/commit/038c55a7090fc1b1513a966386d3072617f836ac), [`182f045`](https://github.com/mastra-ai/mastra/commit/182f0458f25bd70aa774e64fd923c8a483eddbf1), [`9a1a485`](https://github.com/mastra-ai/mastra/commit/9a1a4859b855e37239f652bf14b1ecd1029b8c4e), [`9257233`](https://github.com/mastra-ai/mastra/commit/9257233c4ffce09b2bedc2a9adbd70d7a83fa8e2), [`7620d2b`](https://github.com/mastra-ai/mastra/commit/7620d2bddeb4fae4c3c0a0b4e672969795fca11a), [`b2365f0`](https://github.com/mastra-ai/mastra/commit/b2365f038dd4c5f06400428b224af963f399ad50), [`0f1a4c9`](https://github.com/mastra-ai/mastra/commit/0f1a4c984fb4b104b2f0b63ba18c9fa77f567700), [`9029ba3`](https://github.com/mastra-ai/mastra/commit/9029ba34459c8859fed4c6b73efd8e2d0021e7ba), [`426cc56`](https://github.com/mastra-ai/mastra/commit/426cc561c85ae76a112ded2385532a91f9f9f074), [`00931fb`](https://github.com/mastra-ai/mastra/commit/00931fb1a21aa42c4fbc20c2c40dd62466b8fc8f), [`e473bfe`](https://github.com/mastra-ai/mastra/commit/e473bfe416c0b8e876973c2b6a6f13c394b7a93f), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`2db6160`](https://github.com/mastra-ai/mastra/commit/2db6160e2022ff8827c15d30157e684683b934b5), [`8aeea37`](https://github.com/mastra-ai/mastra/commit/8aeea37efdde347c635a67fed56794943b7f74ec), [`02fe153`](https://github.com/mastra-ai/mastra/commit/02fe15351d6021d214da48ec982a0e9e4150bcee), [`648e2ca`](https://github.com/mastra-ai/mastra/commit/648e2ca42da54838c6ccbdaadc6fadd808fa6b86), [`74567b3`](https://github.com/mastra-ai/mastra/commit/74567b3d237ae3915cd0bca3cf55fa0a64e4e4a4), [`b65c5e0`](https://github.com/mastra-ai/mastra/commit/b65c5e0fe6f3c390a9a8bbcf69304d972c3a4afb), [`15a1733`](https://github.com/mastra-ai/mastra/commit/15a1733074cee8bd37370e1af34cd818e89fa7ac), [`fc2a774`](https://github.com/mastra-ai/mastra/commit/fc2a77468981aaddc3e77f83f0c4ad4a4af140da), [`4e08933`](https://github.com/mastra-ai/mastra/commit/4e08933625464dfde178347af5b6278fcf34188e)]:
1256
- - @mastra/core@0.22.0
1257
-
1258
- ## 1.3.2-alpha.0
1259
-
1260
- ### Patch Changes
1261
-
1262
- - Update peerdeps to 0.23.0-0 ([#9043](https://github.com/mastra-ai/mastra/pull/9043))
1263
-
1264
- - Updated dependencies [[`efb5ed9`](https://github.com/mastra-ai/mastra/commit/efb5ed946ae7f410bc68c9430beb4b010afd25ec), [`8ea07b4`](https://github.com/mastra-ai/mastra/commit/8ea07b4bdc73e4218437dbb6dcb0f4b23e745a44), [`ba201b8`](https://github.com/mastra-ai/mastra/commit/ba201b8f8feac4c72350f2dbd52c13c7297ba7b0), [`4fc4136`](https://github.com/mastra-ai/mastra/commit/4fc413652866a8d2240694fddb2562e9edbb70df), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`d10baf5`](https://github.com/mastra-ai/mastra/commit/d10baf5a3c924f2a6654e23a3e318ed03f189b76), [`038c55a`](https://github.com/mastra-ai/mastra/commit/038c55a7090fc1b1513a966386d3072617f836ac), [`182f045`](https://github.com/mastra-ai/mastra/commit/182f0458f25bd70aa774e64fd923c8a483eddbf1), [`7620d2b`](https://github.com/mastra-ai/mastra/commit/7620d2bddeb4fae4c3c0a0b4e672969795fca11a), [`b2365f0`](https://github.com/mastra-ai/mastra/commit/b2365f038dd4c5f06400428b224af963f399ad50), [`9029ba3`](https://github.com/mastra-ai/mastra/commit/9029ba34459c8859fed4c6b73efd8e2d0021e7ba), [`426cc56`](https://github.com/mastra-ai/mastra/commit/426cc561c85ae76a112ded2385532a91f9f9f074), [`00931fb`](https://github.com/mastra-ai/mastra/commit/00931fb1a21aa42c4fbc20c2c40dd62466b8fc8f), [`e473bfe`](https://github.com/mastra-ai/mastra/commit/e473bfe416c0b8e876973c2b6a6f13c394b7a93f), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`648e2ca`](https://github.com/mastra-ai/mastra/commit/648e2ca42da54838c6ccbdaadc6fadd808fa6b86), [`b65c5e0`](https://github.com/mastra-ai/mastra/commit/b65c5e0fe6f3c390a9a8bbcf69304d972c3a4afb)]:
1265
- - @mastra/core@0.22.0-alpha.1
1266
-
1267
- ## 1.3.1
1268
-
1269
- ### Patch Changes
1270
-
1271
- - Update peer dependencies to match core package version bump (0.21.0) ([#8619](https://github.com/mastra-ai/mastra/pull/8619))
1272
-
1273
- - Update peer dependencies to match core package version bump (0.21.0) ([#8557](https://github.com/mastra-ai/mastra/pull/8557))
1274
-
1275
- - Update peer dependencies to match core package version bump (0.21.0) ([#8626](https://github.com/mastra-ai/mastra/pull/8626))
1276
-
1277
- - Update peer dependencies to match core package version bump (0.21.0) ([#8686](https://github.com/mastra-ai/mastra/pull/8686))
1278
-
1279
- - Updated dependencies [[`1ed9670`](https://github.com/mastra-ai/mastra/commit/1ed9670d3ca50cb60dc2e517738c5eef3968ed27), [`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`f59fc1e`](https://github.com/mastra-ai/mastra/commit/f59fc1e406b8912e692f6bff6cfd4754cc8d165c), [`158381d`](https://github.com/mastra-ai/mastra/commit/158381d39335be934b81ef8a1947bccace492c25), [`a1799bc`](https://github.com/mastra-ai/mastra/commit/a1799bcc1b5a1cdc188f2ac0165f17a1c4ac6f7b), [`6ff6094`](https://github.com/mastra-ai/mastra/commit/6ff60946f4ecfebdeef6e21d2b230c2204f2c9b8), [`fb703b9`](https://github.com/mastra-ai/mastra/commit/fb703b9634eeaff1a6eb2b5531ce0f9e8fb04727), [`37a2314`](https://github.com/mastra-ai/mastra/commit/37a23148e0e5a3b40d4f9f098b194671a8a49faf), [`7b1ef57`](https://github.com/mastra-ai/mastra/commit/7b1ef57fc071c2aa2a2e32905b18cd88719c5a39), [`05a9dee`](https://github.com/mastra-ai/mastra/commit/05a9dee3d355694d28847bfffb6289657fcf7dfa), [`e3c1077`](https://github.com/mastra-ai/mastra/commit/e3c107763aedd1643d3def5df450c235da9ff76c), [`1908ca0`](https://github.com/mastra-ai/mastra/commit/1908ca0521f90e43779cc29ab590173ca560443c), [`1bccdb3`](https://github.com/mastra-ai/mastra/commit/1bccdb33eb90cbeba2dc5ece1c2561fb774b26b6), [`5ef944a`](https://github.com/mastra-ai/mastra/commit/5ef944a3721d93105675cac2b2311432ff8cc393), [`d6b186f`](https://github.com/mastra-ai/mastra/commit/d6b186fb08f1caf1b86f73d3a5ee88fb999ca3be), [`ee68e82`](https://github.com/mastra-ai/mastra/commit/ee68e8289ea4408d29849e899bc6e78b3bd4e843), [`228228b`](https://github.com/mastra-ai/mastra/commit/228228b0b1de9291cb8887587f5cea1a8757ebad), [`ea33930`](https://github.com/mastra-ai/mastra/commit/ea339301e82d6318257720d811b043014ee44064), [`65493b3`](https://github.com/mastra-ai/mastra/commit/65493b31c36f6fdb78f9679f7e1ecf0c250aa5ee), [`a998b8f`](https://github.com/mastra-ai/mastra/commit/a998b8f858091c2ec47683e60766cf12d03001e4), [`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`8a37bdd`](https://github.com/mastra-ai/mastra/commit/8a37bddb6d8614a32c5b70303d583d80c620ea61), [`135d6f2`](https://github.com/mastra-ai/mastra/commit/135d6f22a326ed1dffff858700669dff09d2c9eb)]:
1280
- - @mastra/core@0.21.0
1281
-
1282
- ## 1.3.1-alpha.0
1283
-
1284
- ### Patch Changes
1285
-
1286
- - Update peer dependencies to match core package version bump (0.21.0) ([#8619](https://github.com/mastra-ai/mastra/pull/8619))
1287
-
1288
- - Update peer dependencies to match core package version bump (0.21.0) ([#8557](https://github.com/mastra-ai/mastra/pull/8557))
1289
-
1290
- - Update peer dependencies to match core package version bump (0.21.0) ([#8626](https://github.com/mastra-ai/mastra/pull/8626))
1291
-
1292
- - Update peer dependencies to match core package version bump (0.21.0) ([#8686](https://github.com/mastra-ai/mastra/pull/8686))
1293
-
1294
- - Updated dependencies [[`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`7b1ef57`](https://github.com/mastra-ai/mastra/commit/7b1ef57fc071c2aa2a2e32905b18cd88719c5a39), [`ee68e82`](https://github.com/mastra-ai/mastra/commit/ee68e8289ea4408d29849e899bc6e78b3bd4e843), [`228228b`](https://github.com/mastra-ai/mastra/commit/228228b0b1de9291cb8887587f5cea1a8757ebad), [`ea33930`](https://github.com/mastra-ai/mastra/commit/ea339301e82d6318257720d811b043014ee44064), [`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`135d6f2`](https://github.com/mastra-ai/mastra/commit/135d6f22a326ed1dffff858700669dff09d2c9eb), [`59d036d`](https://github.com/mastra-ai/mastra/commit/59d036d4c2706b430b0e3f1f1e0ee853ce16ca04)]:
1295
- - @mastra/core@0.21.0-alpha.0
1296
-
1297
- ## 1.3.0
1298
-
1299
- ### Minor Changes
1300
-
1301
- - Breaking change to move the agent.streamVNext/generateVNext implementation to the default stream/generate. The old stream/generate have now been moved to streamLegacy and generateLegacy ([#8097](https://github.com/mastra-ai/mastra/pull/8097))
1302
-
1303
- ### Patch Changes
1304
-
1305
- - Updated dependencies [[`00cb6bd`](https://github.com/mastra-ai/mastra/commit/00cb6bdf78737c0fac14a5a0c7b532a11e38558a), [`869ba22`](https://github.com/mastra-ai/mastra/commit/869ba222e1d6b58fc1b65e7c9fd55ca4e01b8c2f), [`1b73665`](https://github.com/mastra-ai/mastra/commit/1b73665e8e23f5c09d49fcf3e7d709c75259259e), [`f7d7475`](https://github.com/mastra-ai/mastra/commit/f7d747507341aef60ed39e4b49318db1f86034a6), [`084b77b`](https://github.com/mastra-ai/mastra/commit/084b77b2955960e0190af8db3f77138aa83ed65c), [`a93ff84`](https://github.com/mastra-ai/mastra/commit/a93ff84b5e1af07ee236ac8873dac9b49aa5d501), [`bc5aacb`](https://github.com/mastra-ai/mastra/commit/bc5aacb646d468d325327e36117129f28cd13bf6), [`6b5af12`](https://github.com/mastra-ai/mastra/commit/6b5af12ce9e09066e0c32e821c203a6954498bea), [`bf60e4a`](https://github.com/mastra-ai/mastra/commit/bf60e4a89c515afd9570b7b79f33b95e7d07c397), [`d41aee5`](https://github.com/mastra-ai/mastra/commit/d41aee526d124e35f42720a08e64043229193679), [`e8fe13c`](https://github.com/mastra-ai/mastra/commit/e8fe13c4b4c255a42520127797ec394310f7c919), [`3ca833d`](https://github.com/mastra-ai/mastra/commit/3ca833dc994c38e3c9b4f9b4478a61cd8e07b32a), [`1edb8d1`](https://github.com/mastra-ai/mastra/commit/1edb8d1cfb963e72a12412990fb9170936c9904c), [`fbf6e32`](https://github.com/mastra-ai/mastra/commit/fbf6e324946332d0f5ed8930bf9d4d4479cefd7a), [`4753027`](https://github.com/mastra-ai/mastra/commit/4753027ee889288775c6958bdfeda03ff909af67)]:
1306
- - @mastra/core@0.20.0
1307
-
1308
- ## 1.3.0-alpha.0
1309
-
1310
- ### Minor Changes
1311
-
1312
- - Breaking change to move the agent.streamVNext/generateVNext implementation to the default stream/generate. The old stream/generate have now been moved to streamLegacy and generateLegacy ([#8097](https://github.com/mastra-ai/mastra/pull/8097))
1313
-
1314
- ### Patch Changes
1315
-
1316
- - Updated dependencies [[`00cb6bd`](https://github.com/mastra-ai/mastra/commit/00cb6bdf78737c0fac14a5a0c7b532a11e38558a), [`869ba22`](https://github.com/mastra-ai/mastra/commit/869ba222e1d6b58fc1b65e7c9fd55ca4e01b8c2f), [`1b73665`](https://github.com/mastra-ai/mastra/commit/1b73665e8e23f5c09d49fcf3e7d709c75259259e), [`f7d7475`](https://github.com/mastra-ai/mastra/commit/f7d747507341aef60ed39e4b49318db1f86034a6), [`084b77b`](https://github.com/mastra-ai/mastra/commit/084b77b2955960e0190af8db3f77138aa83ed65c), [`a93ff84`](https://github.com/mastra-ai/mastra/commit/a93ff84b5e1af07ee236ac8873dac9b49aa5d501), [`bc5aacb`](https://github.com/mastra-ai/mastra/commit/bc5aacb646d468d325327e36117129f28cd13bf6), [`6b5af12`](https://github.com/mastra-ai/mastra/commit/6b5af12ce9e09066e0c32e821c203a6954498bea), [`bf60e4a`](https://github.com/mastra-ai/mastra/commit/bf60e4a89c515afd9570b7b79f33b95e7d07c397), [`d41aee5`](https://github.com/mastra-ai/mastra/commit/d41aee526d124e35f42720a08e64043229193679), [`e8fe13c`](https://github.com/mastra-ai/mastra/commit/e8fe13c4b4c255a42520127797ec394310f7c919), [`3ca833d`](https://github.com/mastra-ai/mastra/commit/3ca833dc994c38e3c9b4f9b4478a61cd8e07b32a), [`1edb8d1`](https://github.com/mastra-ai/mastra/commit/1edb8d1cfb963e72a12412990fb9170936c9904c), [`fbf6e32`](https://github.com/mastra-ai/mastra/commit/fbf6e324946332d0f5ed8930bf9d4d4479cefd7a), [`4753027`](https://github.com/mastra-ai/mastra/commit/4753027ee889288775c6958bdfeda03ff909af67)]:
1317
- - @mastra/core@0.20.0-alpha.0
1318
-
1319
- ## 1.2.7
1320
-
1321
- ### Patch Changes
1322
-
1323
- - Update peer deps ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
1324
-
1325
- - Updated dependencies [[`dc099b4`](https://github.com/mastra-ai/mastra/commit/dc099b40fb31147ba3f362f98d991892033c4c67), [`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`b342a68`](https://github.com/mastra-ai/mastra/commit/b342a68e1399cf1ece9ba11bda112db89d21118c), [`a7243e2`](https://github.com/mastra-ai/mastra/commit/a7243e2e58762667a6e3921e755e89d6bb0a3282), [`7fceb0a`](https://github.com/mastra-ai/mastra/commit/7fceb0a327d678e812f90f5387c5bc4f38bd039e), [`303a9c0`](https://github.com/mastra-ai/mastra/commit/303a9c0d7dd58795915979f06a0512359e4532fb), [`df64f9e`](https://github.com/mastra-ai/mastra/commit/df64f9ef814916fff9baedd861c988084e7c41de), [`370f8a6`](https://github.com/mastra-ai/mastra/commit/370f8a6480faec70fef18d72e5f7538f27004301), [`809eea0`](https://github.com/mastra-ai/mastra/commit/809eea092fa80c3f69b9eaf078d843b57fd2a88e), [`683e5a1`](https://github.com/mastra-ai/mastra/commit/683e5a1466e48b686825b2c11f84680f296138e4), [`3679378`](https://github.com/mastra-ai/mastra/commit/3679378673350aa314741dc826f837b1984149bc), [`7775bc2`](https://github.com/mastra-ai/mastra/commit/7775bc20bb1ad1ab24797fb420e4f96c65b0d8ec), [`623ffaf`](https://github.com/mastra-ai/mastra/commit/623ffaf2d969e11e99a0224633cf7b5a0815c857), [`9fc1613`](https://github.com/mastra-ai/mastra/commit/9fc16136400186648880fd990119ac15f7c02ee4), [`61f62aa`](https://github.com/mastra-ai/mastra/commit/61f62aa31bc88fe4ddf8da6240dbcfbeb07358bd), [`db1891a`](https://github.com/mastra-ai/mastra/commit/db1891a4707443720b7cd8a260dc7e1d49b3609c), [`e8f379d`](https://github.com/mastra-ai/mastra/commit/e8f379d390efa264c4e0874f9ac0cf8839b07777), [`652066b`](https://github.com/mastra-ai/mastra/commit/652066bd1efc6bb6813ba950ed1d7573e8b7d9d4), [`3e292ba`](https://github.com/mastra-ai/mastra/commit/3e292ba00837886d5d68a34cbc0d9b703c991883), [`418c136`](https://github.com/mastra-ai/mastra/commit/418c1366843d88e491bca3f87763899ce855ca29), [`ea8d386`](https://github.com/mastra-ai/mastra/commit/ea8d386cd8c5593664515fd5770c06bf2aa980ef), [`67b0f00`](https://github.com/mastra-ai/mastra/commit/67b0f005b520335c71fb85cbaa25df4ce8484a81), [`c2a4919`](https://github.com/mastra-ai/mastra/commit/c2a4919ba6797d8bdb1509e02287496eef69303e), [`c84b7d0`](https://github.com/mastra-ai/mastra/commit/c84b7d093c4657772140cbfd2b15ef72f3315ed5), [`0130986`](https://github.com/mastra-ai/mastra/commit/0130986fc62d0edcc626dd593282661dbb9af141)]:
1326
- - @mastra/core@0.19.0
1327
-
1328
- ## 1.2.7-alpha.0
1329
-
1330
- ### Patch Changes
1331
-
1332
- - Update peer deps ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
1333
-
1334
- - Updated dependencies [[`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`a7243e2`](https://github.com/mastra-ai/mastra/commit/a7243e2e58762667a6e3921e755e89d6bb0a3282), [`7fceb0a`](https://github.com/mastra-ai/mastra/commit/7fceb0a327d678e812f90f5387c5bc4f38bd039e), [`df64f9e`](https://github.com/mastra-ai/mastra/commit/df64f9ef814916fff9baedd861c988084e7c41de), [`809eea0`](https://github.com/mastra-ai/mastra/commit/809eea092fa80c3f69b9eaf078d843b57fd2a88e), [`683e5a1`](https://github.com/mastra-ai/mastra/commit/683e5a1466e48b686825b2c11f84680f296138e4), [`3679378`](https://github.com/mastra-ai/mastra/commit/3679378673350aa314741dc826f837b1984149bc), [`7775bc2`](https://github.com/mastra-ai/mastra/commit/7775bc20bb1ad1ab24797fb420e4f96c65b0d8ec), [`db1891a`](https://github.com/mastra-ai/mastra/commit/db1891a4707443720b7cd8a260dc7e1d49b3609c), [`e8f379d`](https://github.com/mastra-ai/mastra/commit/e8f379d390efa264c4e0874f9ac0cf8839b07777), [`652066b`](https://github.com/mastra-ai/mastra/commit/652066bd1efc6bb6813ba950ed1d7573e8b7d9d4), [`ea8d386`](https://github.com/mastra-ai/mastra/commit/ea8d386cd8c5593664515fd5770c06bf2aa980ef), [`c2a4919`](https://github.com/mastra-ai/mastra/commit/c2a4919ba6797d8bdb1509e02287496eef69303e), [`0130986`](https://github.com/mastra-ai/mastra/commit/0130986fc62d0edcc626dd593282661dbb9af141)]:
1335
- - @mastra/core@0.19.0-alpha.1
1336
-
1337
- ## 1.2.6
1338
-
1339
- ### Patch Changes
1340
-
1341
- - dependencies updates: ([#8011](https://github.com/mastra-ai/mastra/pull/8011))
1342
- - Updated dependency [`node-html-better-parser@^1.5.8` ↗︎](https://www.npmjs.com/package/node-html-better-parser/v/1.5.8) (from `^1.5.7`, in `dependencies`)
1343
-
1344
- - Update Peerdeps for packages based on core minor bump ([#8025](https://github.com/mastra-ai/mastra/pull/8025))
1345
-
1346
- - Updated dependencies [[`cf34503`](https://github.com/mastra-ai/mastra/commit/cf345031de4e157f29087946449e60b965e9c8a9), [`6b4b1e4`](https://github.com/mastra-ai/mastra/commit/6b4b1e4235428d39e51cbda9832704c0ba70ab32), [`3469fca`](https://github.com/mastra-ai/mastra/commit/3469fca7bb7e5e19369ff9f7044716a5e4b02585), [`a61f23f`](https://github.com/mastra-ai/mastra/commit/a61f23fbbca4b88b763d94f1d784c47895ed72d7), [`4b339b8`](https://github.com/mastra-ai/mastra/commit/4b339b8141c20d6a6d80583c7e8c5c05d8c19492), [`d1dc606`](https://github.com/mastra-ai/mastra/commit/d1dc6067b0557a71190b68d56ee15b48c26d2411), [`c45298a`](https://github.com/mastra-ai/mastra/commit/c45298a0a0791db35cf79f1199d77004da0704cb), [`c4a8204`](https://github.com/mastra-ai/mastra/commit/c4a82046bfd241d6044e234bc5917d5a01fe6b55), [`d3bd4d4`](https://github.com/mastra-ai/mastra/commit/d3bd4d482a685bbb67bfa89be91c90dca3fa71ad), [`c591dfc`](https://github.com/mastra-ai/mastra/commit/c591dfc1e600fae1dedffe239357d250e146378f), [`1920c5c`](https://github.com/mastra-ai/mastra/commit/1920c5c6d666f687785c73021196aa551e579e0d), [`b6a3b65`](https://github.com/mastra-ai/mastra/commit/b6a3b65d830fa0ca7754ad6481661d1f2c878f21), [`af3abb6`](https://github.com/mastra-ai/mastra/commit/af3abb6f7c7585d856e22d27f4e7d2ece2186b9a)]:
1347
- - @mastra/core@0.18.0
1348
-
1349
- ## 1.2.6-alpha.0
1350
-
1351
- ### Patch Changes
1352
-
1353
- - dependencies updates: ([#8011](https://github.com/mastra-ai/mastra/pull/8011))
1354
- - Updated dependency [`node-html-better-parser@^1.5.8` ↗︎](https://www.npmjs.com/package/node-html-better-parser/v/1.5.8) (from `^1.5.7`, in `dependencies`)
1355
-
1356
- - Update Peerdeps for packages based on core minor bump ([#8025](https://github.com/mastra-ai/mastra/pull/8025))
1357
-
1358
- - Updated dependencies [[`cf34503`](https://github.com/mastra-ai/mastra/commit/cf345031de4e157f29087946449e60b965e9c8a9), [`6b4b1e4`](https://github.com/mastra-ai/mastra/commit/6b4b1e4235428d39e51cbda9832704c0ba70ab32), [`3469fca`](https://github.com/mastra-ai/mastra/commit/3469fca7bb7e5e19369ff9f7044716a5e4b02585), [`c4a8204`](https://github.com/mastra-ai/mastra/commit/c4a82046bfd241d6044e234bc5917d5a01fe6b55)]:
1359
- - @mastra/core@0.18.0-alpha.2
1360
-
1361
- ## 1.2.5
1362
-
1363
- ### Patch Changes
1364
-
1365
- - dependencies updates: ([#7753](https://github.com/mastra-ai/mastra/pull/7753))
1366
- - Updated dependency [`node-html-better-parser@^1.5.3` ↗︎](https://www.npmjs.com/package/node-html-better-parser/v/1.5.3) (from `^1.5.2`, in `dependencies`)
1367
-
1368
- - dependencies updates: ([#7801](https://github.com/mastra-ai/mastra/pull/7801))
1369
- - Updated dependency [`node-html-better-parser@^1.5.7` ↗︎](https://www.npmjs.com/package/node-html-better-parser/v/1.5.7) (from `^1.5.3`, in `dependencies`)
1370
-
1371
- - Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
1372
-
1373
- - fix(rag): rerank compatibility with AI SDK V2 models ([#7828](https://github.com/mastra-ai/mastra/pull/7828))
1374
-
1375
- - Updated dependencies [[`197cbb2`](https://github.com/mastra-ai/mastra/commit/197cbb248fc8cb4bbf61bf70b770f1388b445df2), [`a1bb887`](https://github.com/mastra-ai/mastra/commit/a1bb887e8bfae44230f487648da72e96ef824561), [`6590763`](https://github.com/mastra-ai/mastra/commit/65907630ef4bf4127067cecd1cb21b56f55d5f1b), [`fb84c21`](https://github.com/mastra-ai/mastra/commit/fb84c21859d09bdc8f158bd5412bdc4b5835a61c), [`5802bf5`](https://github.com/mastra-ai/mastra/commit/5802bf57f6182e4b67c28d7d91abed349a8d14f3), [`5bda53a`](https://github.com/mastra-ai/mastra/commit/5bda53a9747bfa7d876d754fc92c83a06e503f62), [`c2eade3`](https://github.com/mastra-ai/mastra/commit/c2eade3508ef309662f065e5f340d7840295dd53), [`f26a8fd`](https://github.com/mastra-ai/mastra/commit/f26a8fd99fcb0497a5d86c28324430d7f6a5fb83), [`222965a`](https://github.com/mastra-ai/mastra/commit/222965a98ce8197b86673ec594244650b5960257), [`6047778`](https://github.com/mastra-ai/mastra/commit/6047778e501df460648f31decddf8e443f36e373), [`a0f5f1c`](https://github.com/mastra-ai/mastra/commit/a0f5f1ca39c3c5c6d26202e9fcab986b4fe14568), [`9d4fc09`](https://github.com/mastra-ai/mastra/commit/9d4fc09b2ad55caa7738c7ceb3a905e454f74cdd), [`05c7abf`](https://github.com/mastra-ai/mastra/commit/05c7abfe105a015b7760c9bf33ff4419727502a0), [`0324ceb`](https://github.com/mastra-ai/mastra/commit/0324ceb8af9d16c12a531f90e575f6aab797ac81), [`d75ccf0`](https://github.com/mastra-ai/mastra/commit/d75ccf06dfd2582b916aa12624e3cd61b279edf1), [`0f9d227`](https://github.com/mastra-ai/mastra/commit/0f9d227890a98db33865abbea39daf407cd55ef7), [`b356f5f`](https://github.com/mastra-ai/mastra/commit/b356f5f7566cb3edb755d91f00b72fc1420b2a37), [`de056a0`](https://github.com/mastra-ai/mastra/commit/de056a02cbb43f6aa0380ab2150ea404af9ec0dd), [`f5ce05f`](https://github.com/mastra-ai/mastra/commit/f5ce05f831d42c69559bf4c0fdb46ccb920fc3a3), [`60c9cec`](https://github.com/mastra-ai/mastra/commit/60c9cec7048a79a87440f7840c383875bd710d93), [`c93532a`](https://github.com/mastra-ai/mastra/commit/c93532a340b80e4dd946d4c138d9381de5f70399), [`6cb1fcb`](https://github.com/mastra-ai/mastra/commit/6cb1fcbc8d0378ffed0d17784c96e68f30cb0272), [`aee4f00`](https://github.com/mastra-ai/mastra/commit/aee4f00e61e1a42e81a6d74ff149dbe69e32695a), [`9f6f30f`](https://github.com/mastra-ai/mastra/commit/9f6f30f04ec6648bbca798ea8aad59317c40d8db), [`547c621`](https://github.com/mastra-ai/mastra/commit/547c62104af3f7a551b3754e9cbdf0a3fbba15e4), [`897995e`](https://github.com/mastra-ai/mastra/commit/897995e630d572fe2891e7ede817938cabb43251), [`0fed8f2`](https://github.com/mastra-ai/mastra/commit/0fed8f2aa84b167b3415ea6f8f70755775132c8d), [`4f9ea8c`](https://github.com/mastra-ai/mastra/commit/4f9ea8c95ea74ba9abbf3b2ab6106c7d7bc45689), [`1a1fbe6`](https://github.com/mastra-ai/mastra/commit/1a1fbe66efb7d94abc373ed0dd9676adb8122454), [`d706fad`](https://github.com/mastra-ai/mastra/commit/d706fad6e6e4b72357b18d229ba38e6c913c0e70), [`87fd07f`](https://github.com/mastra-ai/mastra/commit/87fd07ff35387a38728967163460231b5d33ae3b), [`5c3768f`](https://github.com/mastra-ai/mastra/commit/5c3768fa959454232ad76715c381f4aac00c6881), [`2685a78`](https://github.com/mastra-ai/mastra/commit/2685a78f224b8b04e20d4fab5ac1adb638190071), [`36f39c0`](https://github.com/mastra-ai/mastra/commit/36f39c00dc794952dc3c11aab91c2fa8bca74b11), [`239b5a4`](https://github.com/mastra-ai/mastra/commit/239b5a497aeae2e8b4d764f46217cfff2284788e), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382)]:
1376
- - @mastra/core@0.17.0
1377
-
1378
- ## 1.2.5-alpha.1
1379
-
1380
- ### Patch Changes
1381
-
1382
- - dependencies updates: ([#7801](https://github.com/mastra-ai/mastra/pull/7801))
1383
- - Updated dependency [`node-html-better-parser@^1.5.7` ↗︎](https://www.npmjs.com/package/node-html-better-parser/v/1.5.7) (from `^1.5.3`, in `dependencies`)
1384
-
1385
- - Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
1386
-
1387
- - fix(rag): rerank compatibility with AI SDK V2 models ([#7828](https://github.com/mastra-ai/mastra/pull/7828))
1388
-
1389
- - Updated dependencies [[`a1bb887`](https://github.com/mastra-ai/mastra/commit/a1bb887e8bfae44230f487648da72e96ef824561), [`a0f5f1c`](https://github.com/mastra-ai/mastra/commit/a0f5f1ca39c3c5c6d26202e9fcab986b4fe14568), [`b356f5f`](https://github.com/mastra-ai/mastra/commit/b356f5f7566cb3edb755d91f00b72fc1420b2a37), [`f5ce05f`](https://github.com/mastra-ai/mastra/commit/f5ce05f831d42c69559bf4c0fdb46ccb920fc3a3), [`9f6f30f`](https://github.com/mastra-ai/mastra/commit/9f6f30f04ec6648bbca798ea8aad59317c40d8db), [`d706fad`](https://github.com/mastra-ai/mastra/commit/d706fad6e6e4b72357b18d229ba38e6c913c0e70), [`5c3768f`](https://github.com/mastra-ai/mastra/commit/5c3768fa959454232ad76715c381f4aac00c6881), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382)]:
1390
- - @mastra/core@0.17.0-alpha.3
1391
-
1392
- ## 1.2.5-alpha.0
1393
-
1394
- ### Patch Changes
1395
-
1396
- - dependencies updates: ([#7753](https://github.com/mastra-ai/mastra/pull/7753))
1397
- - Updated dependency [`node-html-better-parser@^1.5.3` ↗︎](https://www.npmjs.com/package/node-html-better-parser/v/1.5.3) (from `^1.5.2`, in `dependencies`)
1398
- - Updated dependencies [[`5802bf5`](https://github.com/mastra-ai/mastra/commit/5802bf57f6182e4b67c28d7d91abed349a8d14f3), [`5bda53a`](https://github.com/mastra-ai/mastra/commit/5bda53a9747bfa7d876d754fc92c83a06e503f62), [`f26a8fd`](https://github.com/mastra-ai/mastra/commit/f26a8fd99fcb0497a5d86c28324430d7f6a5fb83), [`1a1fbe6`](https://github.com/mastra-ai/mastra/commit/1a1fbe66efb7d94abc373ed0dd9676adb8122454), [`36f39c0`](https://github.com/mastra-ai/mastra/commit/36f39c00dc794952dc3c11aab91c2fa8bca74b11)]:
1399
- - @mastra/core@0.16.4-alpha.0
1400
-
1401
- ## 1.2.4
1402
-
1403
- ### Patch Changes
1404
-
1405
- - 376913a: Update peerdeps
1406
- - Updated dependencies [8fbf79e]
1407
- - Updated dependencies [fd83526]
1408
- - Updated dependencies [d0b90ab]
1409
- - Updated dependencies [6f5eb7a]
1410
- - Updated dependencies [a01cf14]
1411
- - Updated dependencies [a9e50ee]
1412
- - Updated dependencies [5397eb4]
1413
- - Updated dependencies [c9f4e4a]
1414
- - Updated dependencies [0acbc80]
1415
- - @mastra/core@0.16.0
1416
-
1417
- ## 1.2.4-alpha.0
1418
-
1419
- ### Patch Changes
1420
-
1421
- - 376913a: Update peerdeps
1422
- - Updated dependencies [8fbf79e]
1423
- - @mastra/core@0.16.0-alpha.1
1424
-
1425
- ## 1.2.3
1426
-
1427
- ### Patch Changes
1428
-
1429
- - de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
1430
- - 29de0e1: MastraEmbeddingModel and ts hack
1431
- - f0dfcac: updated core peerdep
1432
- - b415a4e: added providerOptions to createVectorQueryTool and createGraphRAGTool
1433
- - 6ac697e: improveEmbeddingModelStuff
1434
- - Updated dependencies [ab48c97]
1435
- - Updated dependencies [85ef90b]
1436
- - Updated dependencies [aedbbfa]
1437
- - Updated dependencies [ff89505]
1438
- - Updated dependencies [637f323]
1439
- - Updated dependencies [de3cbc6]
1440
- - Updated dependencies [c19bcf7]
1441
- - Updated dependencies [4474d04]
1442
- - Updated dependencies [183dc95]
1443
- - Updated dependencies [a1111e2]
1444
- - Updated dependencies [b42a961]
1445
- - Updated dependencies [61debef]
1446
- - Updated dependencies [9beaeff]
1447
- - Updated dependencies [29de0e1]
1448
- - Updated dependencies [f643c65]
1449
- - Updated dependencies [00c74e7]
1450
- - Updated dependencies [fef7375]
1451
- - Updated dependencies [e3d8fea]
1452
- - Updated dependencies [45e4d39]
1453
- - Updated dependencies [9eee594]
1454
- - Updated dependencies [7149d8d]
1455
- - Updated dependencies [822c2e8]
1456
- - Updated dependencies [979912c]
1457
- - Updated dependencies [7dcf4c0]
1458
- - Updated dependencies [4106a58]
1459
- - Updated dependencies [ad78bfc]
1460
- - Updated dependencies [0302f50]
1461
- - Updated dependencies [6ac697e]
1462
- - Updated dependencies [74db265]
1463
- - Updated dependencies [0ce418a]
1464
- - Updated dependencies [af90672]
1465
- - Updated dependencies [8387952]
1466
- - Updated dependencies [7f3b8da]
1467
- - Updated dependencies [905352b]
1468
- - Updated dependencies [599d04c]
1469
- - Updated dependencies [56041d0]
1470
- - Updated dependencies [3412597]
1471
- - Updated dependencies [5eca5d2]
1472
- - Updated dependencies [f2cda47]
1473
- - Updated dependencies [5de1555]
1474
- - Updated dependencies [cfd377a]
1475
- - Updated dependencies [1ed5a3e]
1476
- - @mastra/core@0.15.3
1477
-
1478
- ## 1.2.3-alpha.2
1479
-
1480
- ### Patch Changes
1481
-
1482
- - [#7394](https://github.com/mastra-ai/mastra/pull/7394) [`f0dfcac`](https://github.com/mastra-ai/mastra/commit/f0dfcac4458bdf789b975e2d63e984f5d1e7c4d3) Thanks [@NikAiyer](https://github.com/NikAiyer)! - updated core peerdep
1483
-
1484
- - Updated dependencies [[`7149d8d`](https://github.com/mastra-ai/mastra/commit/7149d8d4bdc1edf0008e0ca9b7925eb0b8b60dbe)]:
1485
- - @mastra/core@0.15.3-alpha.7
1486
-
1487
- ## 1.2.3-alpha.1
1488
-
1489
- ### Patch Changes
1490
-
1491
- - [#7343](https://github.com/mastra-ai/mastra/pull/7343) [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e) Thanks [@LekoArts](https://github.com/LekoArts)! - Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
1492
-
1493
- - Updated dependencies [[`85ef90b`](https://github.com/mastra-ai/mastra/commit/85ef90bb2cd4ae4df855c7ac175f7d392c55c1bf), [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e)]:
1494
- - @mastra/core@0.15.3-alpha.5
1495
-
1496
- ## 1.2.3-alpha.0
1497
-
1498
- ### Patch Changes
1499
-
1500
- - [#7124](https://github.com/mastra-ai/mastra/pull/7124) [`29de0e1`](https://github.com/mastra-ai/mastra/commit/29de0e1b0a7173317ae7d1ab0c0993167c659f2b) Thanks [@abhiaiyer91](https://github.com/abhiaiyer91)! - MastraEmbeddingModel and ts hack
1501
-
1502
- - [#7120](https://github.com/mastra-ai/mastra/pull/7120) [`b415a4e`](https://github.com/mastra-ai/mastra/commit/b415a4e05b2546ccb9b5ba31a2bdf23deb1c7fa8) Thanks [@NikAiyer](https://github.com/NikAiyer)! - added providerOptions to createVectorQueryTool and createGraphRAGTool
1503
-
1504
- - [#7125](https://github.com/mastra-ai/mastra/pull/7125) [`6ac697e`](https://github.com/mastra-ai/mastra/commit/6ac697edcc2435482c247cba615277ec4765dcc4) Thanks [@abhiaiyer91](https://github.com/abhiaiyer91)! - improveEmbeddingModelStuff
1505
-
1506
- - Updated dependencies [[`637f323`](https://github.com/mastra-ai/mastra/commit/637f32371d79a8f78c52c0d53411af0915fcec67), [`29de0e1`](https://github.com/mastra-ai/mastra/commit/29de0e1b0a7173317ae7d1ab0c0993167c659f2b), [`6ac697e`](https://github.com/mastra-ai/mastra/commit/6ac697edcc2435482c247cba615277ec4765dcc4)]:
1507
- - @mastra/core@0.15.3-alpha.1
1508
-
1509
- ## 1.2.2
1510
-
1511
- ### Patch Changes
1512
-
1513
- - [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
1514
-
1515
- - Updated dependencies []:
1516
- - @mastra/core@0.15.2
1517
-
1518
- ## 1.2.1
1519
-
1520
- ### Patch Changes
1521
-
1522
- - [`95b2aa9`](https://github.com/mastra-ai/mastra/commit/95b2aa908230919e67efcac0d69005a2d5745298) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdeps @mastra/core
1523
-
1524
- - Updated dependencies []:
1525
- - @mastra/core@0.15.1
1526
-
1527
- ## 1.2.0
1528
-
1529
- ### Minor Changes
1530
-
1531
- - [#7028](https://github.com/mastra-ai/mastra/pull/7028) [`da58ccc`](https://github.com/mastra-ai/mastra/commit/da58ccc1f2ac33da0cb97b00443fc6208b45bdec) Thanks [@wardpeet](https://github.com/wardpeet)! - Bump core peerdependency
1532
-
1533
- - [#7032](https://github.com/mastra-ai/mastra/pull/7032) [`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c) Thanks [@wardpeet](https://github.com/wardpeet)! - Bump zod peerdep to 3.25.0 to support both v3/v4
1534
-
1535
- ### Patch Changes
1536
-
1537
- - [#6996](https://github.com/mastra-ai/mastra/pull/6996) [`24d9ee3`](https://github.com/mastra-ai/mastra/commit/24d9ee3db1c09d15f27a5d0971b102abcfcf7dfd) Thanks [@wardpeet](https://github.com/wardpeet)! - Improve type resolving
1538
-
1539
- - [#6982](https://github.com/mastra-ai/mastra/pull/6982) [`94e9f54`](https://github.com/mastra-ai/mastra/commit/94e9f547d66ef7cd01d9075ab53b5ca9a1cae100) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix AI peerdeps for NPM install
1540
-
1541
- - [#6942](https://github.com/mastra-ai/mastra/pull/6942) [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01) Thanks [@wardpeet](https://github.com/wardpeet)! - Add zod as peerdeps for all packages
1542
-
1543
- - Updated dependencies [[`0778757`](https://github.com/mastra-ai/mastra/commit/07787570e4addbd501522037bd2542c3d9e26822), [`943a7f3`](https://github.com/mastra-ai/mastra/commit/943a7f3dbc6a8ab3f9b7bc7c8a1c5b319c3d7f56), [`bf504a8`](https://github.com/mastra-ai/mastra/commit/bf504a833051f6f321d832cc7d631f3cb86d657b), [`be49354`](https://github.com/mastra-ai/mastra/commit/be493546dca540101923ec700feb31f9a13939f2), [`d591ab3`](https://github.com/mastra-ai/mastra/commit/d591ab3ecc985c1870c0db347f8d7a20f7360536), [`ba82abe`](https://github.com/mastra-ai/mastra/commit/ba82abe76e869316bb5a9c95e8ea3946f3436fae), [`727f7e5`](https://github.com/mastra-ai/mastra/commit/727f7e5086e62e0dfe3356fb6dcd8bcb420af246), [`e6f5046`](https://github.com/mastra-ai/mastra/commit/e6f50467aff317e67e8bd74c485c3fbe2a5a6db1), [`82d9f64`](https://github.com/mastra-ai/mastra/commit/82d9f647fbe4f0177320e7c05073fce88599aa95), [`2e58325`](https://github.com/mastra-ai/mastra/commit/2e58325beb170f5b92f856e27d915cd26917e5e6), [`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c), [`4189486`](https://github.com/mastra-ai/mastra/commit/4189486c6718fda78347bdf4ce4d3fc33b2236e1), [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01), [`9613558`](https://github.com/mastra-ai/mastra/commit/9613558e6475f4710e05d1be7553a32ee7bddc20)]:
1544
- - @mastra/core@0.15.0
1545
-
1546
- ## 1.2.0-alpha.2
1547
-
1548
- ### Minor Changes
1549
-
1550
- - [#7032](https://github.com/mastra-ai/mastra/pull/7032) [`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c) Thanks [@wardpeet](https://github.com/wardpeet)! - Bump zod peerdep to 3.25.0 to support both v3/v4
1551
-
1552
- ### Patch Changes
1553
-
1554
- - Updated dependencies [[`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c)]:
1555
- - @mastra/core@0.15.0-alpha.4
1556
-
1557
- ## 1.2.0-alpha.1
1558
-
1559
- ### Minor Changes
1560
-
1561
- - [#7028](https://github.com/mastra-ai/mastra/pull/7028) [`da58ccc`](https://github.com/mastra-ai/mastra/commit/da58ccc1f2ac33da0cb97b00443fc6208b45bdec) Thanks [@wardpeet](https://github.com/wardpeet)! - Bump core peerdependency
1562
-
1563
- ### Patch Changes
1564
-
1565
- - Updated dependencies []:
1566
- - @mastra/core@0.15.0-alpha.3
1567
-
1568
- ## 1.1.1-alpha.0
1569
-
1570
- ### Patch Changes
1571
-
1572
- - [#6996](https://github.com/mastra-ai/mastra/pull/6996) [`24d9ee3`](https://github.com/mastra-ai/mastra/commit/24d9ee3db1c09d15f27a5d0971b102abcfcf7dfd) Thanks [@wardpeet](https://github.com/wardpeet)! - Improve type resolving
1573
-
1574
- - [#6982](https://github.com/mastra-ai/mastra/pull/6982) [`94e9f54`](https://github.com/mastra-ai/mastra/commit/94e9f547d66ef7cd01d9075ab53b5ca9a1cae100) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix AI peerdeps for NPM install
1575
-
1576
- - [#6942](https://github.com/mastra-ai/mastra/pull/6942) [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01) Thanks [@wardpeet](https://github.com/wardpeet)! - Add zod as peerdeps for all packages
1577
-
1578
- - Updated dependencies [[`943a7f3`](https://github.com/mastra-ai/mastra/commit/943a7f3dbc6a8ab3f9b7bc7c8a1c5b319c3d7f56), [`be49354`](https://github.com/mastra-ai/mastra/commit/be493546dca540101923ec700feb31f9a13939f2), [`d591ab3`](https://github.com/mastra-ai/mastra/commit/d591ab3ecc985c1870c0db347f8d7a20f7360536), [`ba82abe`](https://github.com/mastra-ai/mastra/commit/ba82abe76e869316bb5a9c95e8ea3946f3436fae), [`727f7e5`](https://github.com/mastra-ai/mastra/commit/727f7e5086e62e0dfe3356fb6dcd8bcb420af246), [`82d9f64`](https://github.com/mastra-ai/mastra/commit/82d9f647fbe4f0177320e7c05073fce88599aa95), [`4189486`](https://github.com/mastra-ai/mastra/commit/4189486c6718fda78347bdf4ce4d3fc33b2236e1), [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01)]:
1579
- - @mastra/core@0.14.2-alpha.1
1580
-
1581
- ## 1.1.0
1582
-
1583
- ### Minor Changes
1584
-
1585
- - 03997ae: Update peer deps of core
1586
-
1587
- ### Patch Changes
1588
-
1589
- - 2454423: Agentic loop and streaming workflow: generateVNext and streamVNext
1590
- - Updated dependencies [227c7e6]
1591
- - Updated dependencies [12cae67]
1592
- - Updated dependencies [fd3a3eb]
1593
- - Updated dependencies [6faaee5]
1594
- - Updated dependencies [4232b14]
1595
- - Updated dependencies [a89de7e]
1596
- - Updated dependencies [5a37d0c]
1597
- - Updated dependencies [4bde0cb]
1598
- - Updated dependencies [cf4f357]
1599
- - Updated dependencies [ad888a2]
1600
- - Updated dependencies [481751d]
1601
- - Updated dependencies [2454423]
1602
- - Updated dependencies [194e395]
1603
- - Updated dependencies [a722c0b]
1604
- - Updated dependencies [c30bca8]
1605
- - Updated dependencies [3b5fec7]
1606
- - Updated dependencies [a8f129d]
1607
- - @mastra/core@0.14.0
1608
-
1609
- ## 1.1.0-alpha.1
1610
-
1611
- ### Minor Changes
1612
-
1613
- - 03997ae: Update peer deps of core
1614
-
1615
- ### Patch Changes
1616
-
1617
- - @mastra/core@0.14.0-alpha.7
1618
-
1619
- ## 1.0.9-alpha.0
1620
-
1621
- ### Patch Changes
1622
-
1623
- - a741dde: generateVNext plumbing
1624
- - Updated dependencies [0a7f675]
1625
- - Updated dependencies [12cae67]
1626
- - Updated dependencies [5a37d0c]
1627
- - Updated dependencies [4bde0cb]
1628
- - Updated dependencies [1a80071]
1629
- - Updated dependencies [36a3be8]
1630
- - Updated dependencies [361757b]
1631
- - Updated dependencies [2bb9955]
1632
- - Updated dependencies [2454423]
1633
- - Updated dependencies [a44d91e]
1634
- - Updated dependencies [dfb91e9]
1635
- - Updated dependencies [a741dde]
1636
- - Updated dependencies [7cb3fc0]
1637
- - Updated dependencies [195eabb]
1638
- - Updated dependencies [b78b95b]
1639
- - @mastra/core@0.14.0-alpha.4
1640
-
1641
- ## 1.0.8
1642
-
1643
- ### Patch Changes
1644
-
1645
- - 1be6004: Added semantic markdown chunking strategy.
1646
- - Updated dependencies [d5330bf]
1647
- - Updated dependencies [2e74797]
1648
- - Updated dependencies [8388649]
1649
- - Updated dependencies [a239d41]
1650
- - Updated dependencies [dd94a26]
1651
- - Updated dependencies [3ba6772]
1652
- - Updated dependencies [b5cf2a3]
1653
- - Updated dependencies [2fff911]
1654
- - Updated dependencies [b32c50d]
1655
- - Updated dependencies [63449d0]
1656
- - Updated dependencies [121a3f8]
1657
- - Updated dependencies [ec510e7]
1658
- - @mastra/core@0.13.2
1659
-
1660
- ## 1.0.8-alpha.0
1661
-
1662
- ### Patch Changes
1663
-
1664
- - 1be6004: Added semantic markdown chunking strategy.
1665
- - Updated dependencies [8388649]
1666
- - Updated dependencies [dd94a26]
1667
- - Updated dependencies [3ba6772]
1668
- - Updated dependencies [2fff911]
1669
- - @mastra/core@0.13.2-alpha.0
1670
-
1671
- ## 1.0.7
1672
-
1673
- ### Patch Changes
1674
-
1675
- - 351b36e: update evals and rag ai sdk package versions
1676
- - ccd519c: Add sentence chunking strategy and strategy-specific parameter validation for all existing strategies.
1677
- - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
1678
- - Updated dependencies [cb36de0]
1679
- - Updated dependencies [d0496e6]
1680
- - Updated dependencies [a82b851]
1681
- - Updated dependencies [ea0c5f2]
1682
- - Updated dependencies [41a0a0e]
1683
- - Updated dependencies [2871020]
1684
- - Updated dependencies [94f4812]
1685
- - Updated dependencies [e202b82]
1686
- - Updated dependencies [e00f6a0]
1687
- - Updated dependencies [4a406ec]
1688
- - Updated dependencies [b0e43c1]
1689
- - Updated dependencies [5d377e5]
1690
- - Updated dependencies [1fb812e]
1691
- - Updated dependencies [35c5798]
1692
- - @mastra/core@0.13.0
1693
-
1694
- ## 1.0.7-alpha.1
1695
-
1696
- ### Patch Changes
1697
-
1698
- - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
1699
- - Updated dependencies [cb36de0]
1700
- - Updated dependencies [a82b851]
1701
- - Updated dependencies [41a0a0e]
1702
- - Updated dependencies [2871020]
1703
- - Updated dependencies [4a406ec]
1704
- - Updated dependencies [5d377e5]
1705
- - @mastra/core@0.13.0-alpha.2
1706
-
1707
- ## 1.0.7-alpha.0
1708
-
1709
- ### Patch Changes
1710
-
1711
- - 351b36e: update evals and rag ai sdk package versions
1712
- - ccd519c: Add sentence chunking strategy and strategy-specific parameter validation for all existing strategies.
1713
- - Updated dependencies [ea0c5f2]
1714
- - Updated dependencies [b0e43c1]
1715
- - Updated dependencies [1fb812e]
1716
- - Updated dependencies [35c5798]
1717
- - @mastra/core@0.13.0-alpha.1
1718
-
1719
- ## 1.0.6
1720
-
1721
- ### Patch Changes
1722
-
1723
- - 613eec3: dependencies updates:
1724
- - Updated dependency [`node-html-better-parser@^1.5.2` ↗︎](https://www.npmjs.com/package/node-html-better-parser/v/1.5.2) (from `^1.5.1`, in `dependencies`)
1725
- - Updated dependencies [33dcb07]
1726
- - Updated dependencies [d0d9500]
1727
- - Updated dependencies [d30b1a0]
1728
- - Updated dependencies [bff87f7]
1729
- - Updated dependencies [b4a8df0]
1730
- - @mastra/core@0.12.1
1731
-
1732
- ## 1.0.6-alpha.0
1733
-
1734
- ### Patch Changes
1735
-
1736
- - 613eec3: dependencies updates:
1737
- - Updated dependency [`node-html-better-parser@^1.5.2` ↗︎](https://www.npmjs.com/package/node-html-better-parser/v/1.5.2) (from `^1.5.1`, in `dependencies`)
1738
- - Updated dependencies [33dcb07]
1739
- - Updated dependencies [d30b1a0]
1740
- - Updated dependencies [bff87f7]
1741
- - Updated dependencies [b4a8df0]
1742
- - @mastra/core@0.12.1-alpha.0
1743
-
1744
- ## 1.0.5
1745
-
1746
- ### Patch Changes
1747
-
1748
- - fc437d9: dependencies updates:
1749
- - Updated dependency [`node-html-better-parser@^1.5.1` ↗︎](https://www.npmjs.com/package/node-html-better-parser/v/1.5.1) (from `^1.4.11`, in `dependencies`)
1750
- - b5a6da2: Allow vector query tool to be used without a Mastra server
1751
- - f42c4c2: update peer deps for packages to latest core range
1752
- - Updated dependencies [510e2c8]
1753
- - Updated dependencies [2f72fb2]
1754
- - Updated dependencies [27cc97a]
1755
- - Updated dependencies [3f89307]
1756
- - Updated dependencies [9eda7d4]
1757
- - Updated dependencies [9d49408]
1758
- - Updated dependencies [41daa63]
1759
- - Updated dependencies [ad0a58b]
1760
- - Updated dependencies [254a36b]
1761
- - Updated dependencies [2ecf658]
1762
- - Updated dependencies [7a7754f]
1763
- - Updated dependencies [fc92d80]
1764
- - Updated dependencies [e0f73c6]
1765
- - Updated dependencies [0b89602]
1766
- - Updated dependencies [4d37822]
1767
- - Updated dependencies [23a6a7c]
1768
- - Updated dependencies [cda801d]
1769
- - Updated dependencies [a77c823]
1770
- - Updated dependencies [ff9c125]
1771
- - Updated dependencies [09bca64]
1772
- - Updated dependencies [b8efbb9]
1773
- - Updated dependencies [71466e7]
1774
- - Updated dependencies [0c99fbe]
1775
- - @mastra/core@0.12.0
1776
-
1777
- ## 1.0.5-alpha.1
1778
-
1779
- ### Patch Changes
1780
-
1781
- - f42c4c2: update peer deps for packages to latest core range
1782
- - @mastra/core@0.12.0-alpha.5
1783
-
1784
- ## 1.0.5-alpha.0
1785
-
1786
- ### Patch Changes
1787
-
1788
- - fc437d9: dependencies updates:
1789
- - Updated dependency [`node-html-better-parser@^1.5.1` ↗︎](https://www.npmjs.com/package/node-html-better-parser/v/1.5.1) (from `^1.4.11`, in `dependencies`)
1790
- - b5a6da2: Allow vector query tool to be used without a Mastra server
1791
- - Updated dependencies [510e2c8]
1792
- - Updated dependencies [2f72fb2]
1793
- - Updated dependencies [3f89307]
1794
- - Updated dependencies [9eda7d4]
1795
- - Updated dependencies [9d49408]
1796
- - Updated dependencies [2ecf658]
1797
- - Updated dependencies [7a7754f]
1798
- - Updated dependencies [fc92d80]
1799
- - Updated dependencies [23a6a7c]
1800
- - Updated dependencies [09bca64]
1801
- - @mastra/core@0.12.0-alpha.0
1802
-
1803
- ## 1.0.4
1804
-
1805
- ### Patch Changes
1806
-
1807
- - ce088f5: Update all peerdeps to latest core
1808
- - @mastra/core@0.11.1
1809
-
1810
- ## 1.0.3
1811
-
1812
- ### Patch Changes
1813
-
1814
- - edff568: Export types changeset
1815
- - 89ec9d4: remove cohere-ai client dependency and just make a fetch call
1816
- - Updated dependencies [0b56518]
1817
- - Updated dependencies [db5cc15]
1818
- - Updated dependencies [2ba5b76]
1819
- - Updated dependencies [5237998]
1820
- - Updated dependencies [c3a30de]
1821
- - Updated dependencies [37c1acd]
1822
- - Updated dependencies [1aa60b1]
1823
- - Updated dependencies [89ec9d4]
1824
- - Updated dependencies [cf3a184]
1825
- - Updated dependencies [d6bfd60]
1826
- - Updated dependencies [626b0f4]
1827
- - Updated dependencies [c22a91f]
1828
- - Updated dependencies [f7403ab]
1829
- - Updated dependencies [6c89d7f]
1830
- - @mastra/core@0.10.15
1831
-
1832
- ## 1.0.3-alpha.0
1833
-
1834
- ### Patch Changes
1835
-
1836
- - edff568: Export types changeset
1837
- - 89ec9d4: remove cohere-ai client dependency and just make a fetch call
1838
- - Updated dependencies [db5cc15]
1839
- - Updated dependencies [5237998]
1840
- - Updated dependencies [37c1acd]
1841
- - Updated dependencies [1aa60b1]
1842
- - Updated dependencies [89ec9d4]
1843
- - Updated dependencies [626b0f4]
1844
- - Updated dependencies [c22a91f]
1845
- - Updated dependencies [f7403ab]
1846
- - Updated dependencies [6c89d7f]
1847
- - @mastra/core@0.10.15-alpha.0
1848
-
1849
- ## 1.0.2
1850
-
1851
- ### Patch Changes
1852
-
1853
- - 43da563: Refactor relevance provider
1854
- - Updated dependencies [2873c7f]
1855
- - Updated dependencies [1c1c6a1]
1856
- - Updated dependencies [f8ce2cc]
1857
- - Updated dependencies [8c846b6]
1858
- - Updated dependencies [c7bbf1e]
1859
- - Updated dependencies [8722d53]
1860
- - Updated dependencies [565cc0c]
1861
- - Updated dependencies [b790fd1]
1862
- - Updated dependencies [132027f]
1863
- - Updated dependencies [0c85311]
1864
- - Updated dependencies [d7ed04d]
1865
- - Updated dependencies [cb16baf]
1866
- - Updated dependencies [f36e4f1]
1867
- - Updated dependencies [7f6e403]
1868
- - @mastra/core@0.10.11
1869
-
1870
- ## 1.0.2-alpha.0
1871
-
1872
- ### Patch Changes
1873
-
1874
- - 43da563: Refactor relevance provider
1875
- - Updated dependencies [c7bbf1e]
1876
- - Updated dependencies [8722d53]
1877
- - Updated dependencies [132027f]
1878
- - Updated dependencies [0c85311]
1879
- - Updated dependencies [cb16baf]
1880
- - @mastra/core@0.10.11-alpha.3
1881
-
1882
- ## 1.0.1
1883
-
1884
- ### Patch Changes
1885
-
1886
- - 8e1b6e9: dependencies updates:
1887
- - Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
1888
- - a85fa13: Add model to createVectorQueryTool runtimeContext
1889
- - Updated dependencies [15e9d26]
1890
- - Updated dependencies [d1baedb]
1891
- - Updated dependencies [d8f2d19]
1892
- - Updated dependencies [4d21bf2]
1893
- - Updated dependencies [07d6d88]
1894
- - Updated dependencies [9d52b17]
1895
- - Updated dependencies [2097952]
1896
- - Updated dependencies [792c4c0]
1897
- - Updated dependencies [5d74aab]
1898
- - Updated dependencies [a8b194f]
1899
- - Updated dependencies [4fb0cc2]
1900
- - Updated dependencies [d2a7a31]
1901
- - Updated dependencies [502fe05]
1902
- - Updated dependencies [144eb0b]
1903
- - Updated dependencies [8ba1b51]
1904
- - Updated dependencies [4efcfa0]
1905
- - Updated dependencies [0e17048]
1906
- - @mastra/core@0.10.7
1907
-
1908
- ## 1.0.1-alpha.0
1909
-
1910
- ### Patch Changes
1911
-
1912
- - 8e1b6e9: dependencies updates:
1913
- - Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
1914
- - a85fa13: Add model to createVectorQueryTool runtimeContext
1915
- - Updated dependencies [15e9d26]
1916
- - Updated dependencies [07d6d88]
1917
- - Updated dependencies [5d74aab]
1918
- - Updated dependencies [144eb0b]
1919
- - @mastra/core@0.10.7-alpha.2
1920
-
1921
- ## 1.0.0
1922
-
1923
- ### Major Changes
1924
-
1925
- - 75136cd: Add LaTeX chunking support by adding a case for Language.LATEX in getSeparatorsForLanguage.
1926
-
1927
- ### Patch Changes
1928
-
1929
- - 63f6b7d: dependencies updates:
1930
- - Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
1931
- - Updated dependencies [63f6b7d]
1932
- - Updated dependencies [12a95fc]
1933
- - Updated dependencies [4b0f8a6]
1934
- - Updated dependencies [51264a5]
1935
- - Updated dependencies [8e6f677]
1936
- - Updated dependencies [d70c420]
1937
- - Updated dependencies [ee9af57]
1938
- - Updated dependencies [36f1c36]
1939
- - Updated dependencies [2a16996]
1940
- - Updated dependencies [10d352e]
1941
- - Updated dependencies [9589624]
1942
- - Updated dependencies [53d3c37]
1943
- - Updated dependencies [751c894]
1944
- - Updated dependencies [577ce3a]
1945
- - Updated dependencies [9260b3a]
1946
- - @mastra/core@0.10.6
1947
-
1948
- ## 1.0.0-alpha.0
1949
-
1950
- ### Major Changes
1951
-
1952
- - 75136cd: Add LaTeX chunking support by adding a case for Language.LATEX in getSeparatorsForLanguage.
1953
-
1954
- ### Patch Changes
1955
-
1956
- - 63f6b7d: dependencies updates:
1957
- - Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
1958
- - Updated dependencies [63f6b7d]
1959
- - Updated dependencies [36f1c36]
1960
- - Updated dependencies [10d352e]
1961
- - Updated dependencies [53d3c37]
1962
- - @mastra/core@0.10.6-alpha.0
1963
-
1964
- ## 0.10.3
1965
-
1966
- ### Patch Changes
1967
-
1968
- - 71999e9: dependencies updates:
1969
- - Updated dependency [`js-tiktoken@^1.0.20` ↗︎](https://www.npmjs.com/package/js-tiktoken/v/1.0.20) (from `^1.0.19`, in `dependencies`)
1970
- - Updated dependency [`node-html-better-parser@^1.4.11` ↗︎](https://www.npmjs.com/package/node-html-better-parser/v/1.4.11) (from `^1.4.7`, in `dependencies`)
1971
- - 1ccccff: dependencies updates:
1972
- - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
1973
- - 1ccccff: dependencies updates:
1974
- - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
1975
- - Updated dependencies [d1ed912]
1976
- - Updated dependencies [f6fd25f]
1977
- - Updated dependencies [dffb67b]
1978
- - Updated dependencies [f1f1f1b]
1979
- - Updated dependencies [925ab94]
1980
- - Updated dependencies [f9816ae]
1981
- - Updated dependencies [82090c1]
1982
- - Updated dependencies [1b443fd]
1983
- - Updated dependencies [ce97900]
1984
- - Updated dependencies [f1309d3]
1985
- - Updated dependencies [14a2566]
1986
- - Updated dependencies [f7f8293]
1987
- - Updated dependencies [48eddb9]
1988
- - @mastra/core@0.10.4
1989
-
1990
- ## 0.10.3-alpha.1
1991
-
1992
- ### Patch Changes
1993
-
1994
- - 1ccccff: dependencies updates:
1995
- - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
1996
- - 1ccccff: dependencies updates:
1997
- - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
1998
- - Updated dependencies [f6fd25f]
1999
- - Updated dependencies [dffb67b]
2000
- - Updated dependencies [f1309d3]
2001
- - Updated dependencies [f7f8293]
2002
- - @mastra/core@0.10.4-alpha.1
2003
-
2004
- ## 0.10.3-alpha.0
2005
-
2006
- ### Patch Changes
2007
-
2008
- - 71999e9: dependencies updates:
2009
- - Updated dependency [`js-tiktoken@^1.0.20` ↗︎](https://www.npmjs.com/package/js-tiktoken/v/1.0.20) (from `^1.0.19`, in `dependencies`)
2010
- - Updated dependency [`node-html-better-parser@^1.4.11` ↗︎](https://www.npmjs.com/package/node-html-better-parser/v/1.4.11) (from `^1.4.7`, in `dependencies`)
2011
- - Updated dependencies [d1ed912]
2012
- - Updated dependencies [f1f1f1b]
2013
- - Updated dependencies [f9816ae]
2014
- - Updated dependencies [82090c1]
2015
- - Updated dependencies [1b443fd]
2016
- - Updated dependencies [ce97900]
2017
- - Updated dependencies [14a2566]
2018
- - @mastra/core@0.10.4-alpha.0
2019
-
2020
- ## 0.10.2
2021
-
2022
- ### Patch Changes
2023
-
2024
- - a60d630: Adds runtime and initialization DB specific configuration to createVectorQueryTool to account for different configuration between db providers.
2025
- - f0d559f: Fix peerdeps for alpha channel
2026
- - Updated dependencies [ee77e78]
2027
- - Updated dependencies [592a2db]
2028
- - Updated dependencies [e5dc18d]
2029
- - Updated dependencies [ab5adbe]
2030
- - Updated dependencies [1e8bb40]
2031
- - Updated dependencies [1b5fc55]
2032
- - Updated dependencies [195c428]
2033
- - Updated dependencies [f73e11b]
2034
- - Updated dependencies [37643b8]
2035
- - Updated dependencies [99fd6cf]
2036
- - Updated dependencies [c5bf1ce]
2037
- - Updated dependencies [add596e]
2038
- - Updated dependencies [8dc94d8]
2039
- - Updated dependencies [ecebbeb]
2040
- - Updated dependencies [79d5145]
2041
- - Updated dependencies [12b7002]
2042
- - Updated dependencies [2901125]
2043
- - @mastra/core@0.10.2
2044
-
2045
- ## 0.10.2-alpha.1
2046
-
2047
- ### Patch Changes
2048
-
2049
- - a60d630: Adds runtime and initialization DB specific configuration to createVectorQueryTool to account for different configuration between db providers.
2050
- - Updated dependencies [1b5fc55]
2051
- - Updated dependencies [add596e]
2052
- - Updated dependencies [ecebbeb]
2053
- - @mastra/core@0.10.2-alpha.5
2054
-
2055
- ## 0.10.2-alpha.0
2056
-
2057
- ### Patch Changes
2058
-
2059
- - f0d559f: Fix peerdeps for alpha channel
2060
- - Updated dependencies [1e8bb40]
2061
- - @mastra/core@0.10.2-alpha.2
2062
-
2063
- ## 0.10.1
2064
-
2065
- ### Patch Changes
2066
-
2067
- - 8784cef: Changed stripHeaders for markdown chunking to strip headers correctly from output when true
2068
- - f56fd29: added return type for vector-query and graph-rag
2069
- - Updated dependencies [d70b807]
2070
- - Updated dependencies [6d16390]
2071
- - Updated dependencies [1e4a421]
2072
- - Updated dependencies [200d0da]
2073
- - Updated dependencies [bf5f17b]
2074
- - Updated dependencies [5343f93]
2075
- - Updated dependencies [38aee50]
2076
- - Updated dependencies [5c41100]
2077
- - Updated dependencies [d6a759b]
2078
- - Updated dependencies [6015bdf]
2079
- - @mastra/core@0.10.1
2080
-
2081
- ## 0.10.1-alpha.1
2082
-
2083
- ### Patch Changes
2084
-
2085
- - f56fd29: added return type for vector-query and graph-rag
2086
-
2087
- ## 0.10.1-alpha.0
2088
-
2089
- ### Patch Changes
2090
-
2091
- - 8784cef: Changed stripHeaders for markdown chunking to strip headers correctly from output when true
2092
- - Updated dependencies [6d16390]
2093
- - Updated dependencies [1e4a421]
2094
- - @mastra/core@0.10.1-alpha.0
2095
-
2096
- ## 0.10.0
2097
-
2098
- ### Minor Changes
2099
-
2100
- - 83da932: Move @mastra/core to peerdeps
2101
-
2102
- ### Patch Changes
2103
-
2104
- - 4424836: [MASTRA-2591] Rag Tool Return Types
2105
- - 8cdd799: [MASTRA-3078] added sources to return for vector query tool
2106
- - 4f62987: update rerank weight sum to use big.js
2107
- - Updated dependencies [b3a3d63]
2108
- - Updated dependencies [344f453]
2109
- - Updated dependencies [0a3ae6d]
2110
- - Updated dependencies [95911be]
2111
- - Updated dependencies [f53a6ac]
2112
- - Updated dependencies [5eb5a99]
2113
- - Updated dependencies [7e632c5]
2114
- - Updated dependencies [1e9fbfa]
2115
- - Updated dependencies [eabdcd9]
2116
- - Updated dependencies [90be034]
2117
- - Updated dependencies [99f050a]
2118
- - Updated dependencies [d0ee3c6]
2119
- - Updated dependencies [b2ae5aa]
2120
- - Updated dependencies [23f258c]
2121
- - Updated dependencies [a7292b0]
2122
- - Updated dependencies [0dcb9f0]
2123
- - Updated dependencies [2672a05]
2124
- - @mastra/core@0.10.0
2125
-
2126
- ## 0.2.0-alpha.1
2127
-
2128
- ### Minor Changes
2129
-
2130
- - 83da932: Move @mastra/core to peerdeps
2131
-
2132
- ### Patch Changes
2133
-
2134
- - 4424836: [MASTRA-2591] Rag Tool Return Types
2135
- - 8cdd799: [MASTRA-3078] added sources to return for vector query tool
2136
- - 4f62987: update rerank weight sum to use big.js
2137
- - Updated dependencies [b3a3d63]
2138
- - Updated dependencies [344f453]
2139
- - Updated dependencies [0a3ae6d]
2140
- - Updated dependencies [95911be]
2141
- - Updated dependencies [5eb5a99]
2142
- - Updated dependencies [7e632c5]
2143
- - Updated dependencies [1e9fbfa]
2144
- - Updated dependencies [b2ae5aa]
2145
- - Updated dependencies [a7292b0]
2146
- - Updated dependencies [0dcb9f0]
2147
- - @mastra/core@0.10.0-alpha.1
2148
-
2149
- ## 0.1.24-alpha.0
2150
-
2151
- ### Patch Changes
2152
-
2153
- - Updated dependencies [f53a6ac]
2154
- - Updated dependencies [eabdcd9]
2155
- - Updated dependencies [90be034]
2156
- - Updated dependencies [99f050a]
2157
- - Updated dependencies [d0ee3c6]
2158
- - Updated dependencies [23f258c]
2159
- - Updated dependencies [2672a05]
2160
- - @mastra/core@0.9.5-alpha.0
2161
-
2162
- ## 0.1.23
2163
-
2164
- ### Patch Changes
2165
-
2166
- - Updated dependencies [396be50]
2167
- - Updated dependencies [ab80e7e]
2168
- - Updated dependencies [c3bd795]
2169
- - Updated dependencies [da082f8]
2170
- - Updated dependencies [a5810ce]
2171
- - Updated dependencies [3e9c131]
2172
- - Updated dependencies [3171b5b]
2173
- - Updated dependencies [973e5ac]
2174
- - Updated dependencies [daf942f]
2175
- - Updated dependencies [0b8b868]
2176
- - Updated dependencies [9e1eff5]
2177
- - Updated dependencies [6fa1ad1]
2178
- - Updated dependencies [c28d7a0]
2179
- - Updated dependencies [edf1e88]
2180
- - @mastra/core@0.9.4
2181
-
2182
- ## 0.1.23-alpha.4
2183
-
2184
- ### Patch Changes
2185
-
2186
- - Updated dependencies [3e9c131]
2187
- - @mastra/core@0.9.4-alpha.4
2188
-
2189
- ## 0.1.23-alpha.3
2190
-
2191
- ### Patch Changes
2192
-
2193
- - Updated dependencies [396be50]
2194
- - Updated dependencies [c3bd795]
2195
- - Updated dependencies [da082f8]
2196
- - Updated dependencies [a5810ce]
2197
- - @mastra/core@0.9.4-alpha.3
2198
-
2199
- ## 0.1.23-alpha.2
2200
-
2201
- ### Patch Changes
2202
-
2203
- - Updated dependencies [3171b5b]
2204
- - Updated dependencies [973e5ac]
2205
- - Updated dependencies [9e1eff5]
2206
- - @mastra/core@0.9.4-alpha.2
2207
-
2208
- ## 0.1.23-alpha.1
2209
-
2210
- ### Patch Changes
2211
-
2212
- - Updated dependencies [ab80e7e]
2213
- - Updated dependencies [6fa1ad1]
2214
- - Updated dependencies [c28d7a0]
2215
- - Updated dependencies [edf1e88]
2216
- - @mastra/core@0.9.4-alpha.1
2217
-
2218
- ## 0.1.23-alpha.0
2219
-
2220
- ### Patch Changes
2221
-
2222
- - Updated dependencies [daf942f]
2223
- - Updated dependencies [0b8b868]
2224
- - @mastra/core@0.9.4-alpha.0
2225
-
2226
- ## 0.1.22
2227
-
2228
- ### Patch Changes
2229
-
2230
- - Updated dependencies [e450778]
2231
- - Updated dependencies [8902157]
2232
- - Updated dependencies [ca0dc88]
2233
- - Updated dependencies [526c570]
2234
- - Updated dependencies [d7a6a33]
2235
- - Updated dependencies [9cd1a46]
2236
- - Updated dependencies [b5d2de0]
2237
- - Updated dependencies [644f8ad]
2238
- - Updated dependencies [70dbf51]
2239
- - @mastra/core@0.9.3
2240
-
2241
- ## 0.1.22-alpha.1
2242
-
2243
- ### Patch Changes
2244
-
2245
- - Updated dependencies [e450778]
2246
- - Updated dependencies [8902157]
2247
- - Updated dependencies [ca0dc88]
2248
- - Updated dependencies [9cd1a46]
2249
- - Updated dependencies [70dbf51]
2250
- - @mastra/core@0.9.3-alpha.1
2251
-
2252
- ## 0.1.22-alpha.0
2253
-
2254
- ### Patch Changes
2255
-
2256
- - Updated dependencies [526c570]
2257
- - Updated dependencies [b5d2de0]
2258
- - Updated dependencies [644f8ad]
2259
- - @mastra/core@0.9.3-alpha.0
2260
-
2261
- ## 0.1.21
2262
-
2263
- ### Patch Changes
2264
-
2265
- - 2cf3b8f: dependencies updates:
2266
- - Updated dependency [`zod@^3.24.3` ↗︎](https://www.npmjs.com/package/zod/v/3.24.3) (from `^3.24.2`, in `dependencies`)
2267
- - Updated dependencies [6052aa6]
2268
- - Updated dependencies [967b41c]
2269
- - Updated dependencies [3d2fb5c]
2270
- - Updated dependencies [26738f4]
2271
- - Updated dependencies [4155f47]
2272
- - Updated dependencies [7eeb2bc]
2273
- - Updated dependencies [b804723]
2274
- - Updated dependencies [8607972]
2275
- - Updated dependencies [ccef9f9]
2276
- - Updated dependencies [0097d50]
2277
- - Updated dependencies [7eeb2bc]
2278
- - Updated dependencies [17826a9]
2279
- - Updated dependencies [7d8b7c7]
2280
- - Updated dependencies [fba031f]
2281
- - Updated dependencies [3a5f1e1]
2282
- - Updated dependencies [51e6923]
2283
- - Updated dependencies [8398d89]
2284
- - @mastra/core@0.9.2
2285
-
2286
- ## 0.1.21-alpha.6
2287
-
2288
- ### Patch Changes
2289
-
2290
- - Updated dependencies [6052aa6]
2291
- - Updated dependencies [7d8b7c7]
2292
- - Updated dependencies [3a5f1e1]
2293
- - Updated dependencies [8398d89]
2294
- - @mastra/core@0.9.2-alpha.6
2295
-
2296
- ## 0.1.21-alpha.5
2297
-
2298
- ### Patch Changes
2299
-
2300
- - Updated dependencies [3d2fb5c]
2301
- - Updated dependencies [7eeb2bc]
2302
- - Updated dependencies [8607972]
2303
- - Updated dependencies [7eeb2bc]
2304
- - Updated dependencies [fba031f]
2305
- - @mastra/core@0.9.2-alpha.5
2306
-
2307
- ## 0.1.21-alpha.4
2308
-
2309
- ### Patch Changes
2310
-
2311
- - Updated dependencies [ccef9f9]
2312
- - Updated dependencies [51e6923]
2313
- - @mastra/core@0.9.2-alpha.4
2314
-
2315
- ## 0.1.21-alpha.3
2316
-
2317
- ### Patch Changes
2318
-
2319
- - Updated dependencies [967b41c]
2320
- - Updated dependencies [4155f47]
2321
- - Updated dependencies [17826a9]
2322
- - @mastra/core@0.9.2-alpha.3
2323
-
2324
- ## 0.1.21-alpha.2
2325
-
2326
- ### Patch Changes
2327
-
2328
- - Updated dependencies [26738f4]
2329
- - @mastra/core@0.9.2-alpha.2
2330
-
2331
- ## 0.1.21-alpha.1
2332
-
2333
- ### Patch Changes
2334
-
2335
- - Updated dependencies [b804723]
2336
- - @mastra/core@0.9.2-alpha.1
2337
-
2338
- ## 0.1.21-alpha.0
2339
-
2340
- ### Patch Changes
2341
-
2342
- - Updated dependencies [0097d50]
2343
- - @mastra/core@0.9.2-alpha.0
2344
-
2345
- ## 0.1.20
2346
-
2347
- ### Patch Changes
2348
-
2349
- - 6278b62: [MASTRA-3185] Remove Llamaindex
2350
- - 8fb46d6: [MASTRA-3171] pin llamaindex version to 0.9.6
2351
- - 5f826d9: Moved vector store specific prompts from @mastra/rag to be exported from the store that the prompt belongs to, ie @mastra/pg
2352
- - db1d220: switch to llamaindex core pinned version
2353
- - c4c6f04: added and updated docs for mongodb
2354
- - Updated dependencies [405b63d]
2355
- - Updated dependencies [81fb7f6]
2356
- - Updated dependencies [20275d4]
2357
- - Updated dependencies [7d1892c]
2358
- - Updated dependencies [a90a082]
2359
- - Updated dependencies [2d17c73]
2360
- - Updated dependencies [61e92f5]
2361
- - Updated dependencies [35955b0]
2362
- - Updated dependencies [6262bd5]
2363
- - Updated dependencies [c1409ef]
2364
- - Updated dependencies [3e7b69d]
2365
- - Updated dependencies [e4943b8]
2366
- - Updated dependencies [11d4485]
2367
- - Updated dependencies [479f490]
2368
- - Updated dependencies [c23a81c]
2369
- - Updated dependencies [2d4001d]
2370
- - Updated dependencies [c71013a]
2371
- - Updated dependencies [1d3b1cd]
2372
- - @mastra/core@0.9.1
2373
-
2374
- ## 0.1.20-alpha.8
2375
-
2376
- ### Patch Changes
2377
-
2378
- - Updated dependencies [2d17c73]
2379
- - @mastra/core@0.9.1-alpha.8
2380
-
2381
- ## 0.1.20-alpha.7
2382
-
2383
- ### Patch Changes
2384
-
2385
- - Updated dependencies [1d3b1cd]
2386
- - @mastra/core@0.9.1-alpha.7
2387
-
2388
- ## 0.1.20-alpha.6
2389
-
2390
- ### Patch Changes
2391
-
2392
- - Updated dependencies [c23a81c]
2393
- - @mastra/core@0.9.1-alpha.6
2394
-
2395
- ## 0.1.20-alpha.5
2396
-
2397
- ### Patch Changes
2398
-
2399
- - 5f826d9: Moved vector store specific prompts from @mastra/rag to be exported from the store that the prompt belongs to, ie @mastra/pg
2400
- - Updated dependencies [3e7b69d]
2401
- - @mastra/core@0.9.1-alpha.5
2402
-
2403
- ## 0.1.20-alpha.4
2404
-
2405
- ### Patch Changes
2406
-
2407
- - Updated dependencies [e4943b8]
2408
- - Updated dependencies [479f490]
2409
- - @mastra/core@0.9.1-alpha.4
2410
-
2411
- ## 0.1.20-alpha.3
2412
-
2413
- ### Patch Changes
2414
-
2415
- - c4c6f04: added and updated docs for mongodb
2416
- - Updated dependencies [6262bd5]
2417
- - @mastra/core@0.9.1-alpha.3
2418
-
2419
- ## 0.1.20-alpha.2
2420
-
2421
- ### Patch Changes
2422
-
2423
- - Updated dependencies [405b63d]
2424
- - Updated dependencies [61e92f5]
2425
- - Updated dependencies [c71013a]
2426
- - @mastra/core@0.9.1-alpha.2
2427
-
2428
- ## 0.1.20-alpha.1
2429
-
2430
- ### Patch Changes
2431
-
2432
- - 6278b62: [MASTRA-3185] Remove Llamaindex
2433
- - 8fb46d6: [MASTRA-3171] pin llamaindex version to 0.9.6
2434
- - db1d220: switch to llamaindex core pinned version
2435
- - Updated dependencies [20275d4]
2436
- - Updated dependencies [7d1892c]
2437
- - Updated dependencies [a90a082]
2438
- - Updated dependencies [35955b0]
2439
- - Updated dependencies [c1409ef]
2440
- - Updated dependencies [11d4485]
2441
- - Updated dependencies [2d4001d]
2442
- - @mastra/core@0.9.1-alpha.1
2443
-
2444
- ## 0.1.20-alpha.0
2445
-
2446
- ### Patch Changes
2447
-
2448
- - Updated dependencies [81fb7f6]
2449
- - @mastra/core@0.9.1-alpha.0
2450
-
2451
- ## 0.1.19
2452
-
2453
- ### Patch Changes
2454
-
2455
- - f850f80: use custom extractors rather than llamaindex versions, and remove @llamaindex/core and @llamaindex/env packages
2456
- - Updated dependencies [000a6d4]
2457
- - Updated dependencies [08bb78e]
2458
- - Updated dependencies [ed2f549]
2459
- - Updated dependencies [7e92011]
2460
- - Updated dependencies [9ee4293]
2461
- - Updated dependencies [03f3cd0]
2462
- - Updated dependencies [c0f22b4]
2463
- - Updated dependencies [71d9444]
2464
- - Updated dependencies [157c741]
2465
- - Updated dependencies [8a8a73b]
2466
- - Updated dependencies [0a033fa]
2467
- - Updated dependencies [fe3ae4d]
2468
- - Updated dependencies [9c26508]
2469
- - Updated dependencies [0f4eae3]
2470
- - Updated dependencies [16a8648]
2471
- - Updated dependencies [6f92295]
2472
- - @mastra/core@0.9.0
2473
-
2474
- ## 0.1.19-alpha.8
2475
-
2476
- ### Patch Changes
2477
-
2478
- - Updated dependencies [000a6d4]
2479
- - Updated dependencies [ed2f549]
2480
- - Updated dependencies [c0f22b4]
2481
- - Updated dependencies [0a033fa]
2482
- - Updated dependencies [9c26508]
2483
- - Updated dependencies [0f4eae3]
2484
- - Updated dependencies [16a8648]
2485
- - @mastra/core@0.9.0-alpha.8
2486
-
2487
- ## 0.1.19-alpha.7
2488
-
2489
- ### Patch Changes
2490
-
2491
- - Updated dependencies [71d9444]
2492
- - @mastra/core@0.9.0-alpha.7
2493
-
2494
- ## 0.1.19-alpha.6
2495
-
2496
- ### Patch Changes
2497
-
2498
- - Updated dependencies [157c741]
2499
- - @mastra/core@0.9.0-alpha.6
2500
-
2501
- ## 0.1.19-alpha.5
2502
-
2503
- ### Patch Changes
2504
-
2505
- - Updated dependencies [08bb78e]
2506
- - @mastra/core@0.9.0-alpha.5
2507
-
2508
- ## 0.1.19-alpha.4
2509
-
2510
- ### Patch Changes
2511
-
2512
- - f850f80: use custom extractors rather than llamaindex versions, and remove @llamaindex/core and @llamaindex/env packages
2513
- - Updated dependencies [7e92011]
2514
- - @mastra/core@0.9.0-alpha.4
2515
-
2516
- ## 0.1.19-alpha.3
2517
-
2518
- ### Patch Changes
2519
-
2520
- - Updated dependencies [fe3ae4d]
2521
- - @mastra/core@0.9.0-alpha.3
2522
-
2523
- ## 0.1.19-alpha.2
2524
-
2525
- ### Patch Changes
2526
-
2527
- - Updated dependencies [9ee4293]
2528
- - @mastra/core@0.8.4-alpha.2
2529
-
2530
- ## 0.1.19-alpha.1
2531
-
2532
- ### Patch Changes
2533
-
2534
- - Updated dependencies [8a8a73b]
2535
- - Updated dependencies [6f92295]
2536
- - @mastra/core@0.8.4-alpha.1
2537
-
2538
- ## 0.1.19-alpha.0
2539
-
2540
- ### Patch Changes
2541
-
2542
- - Updated dependencies [03f3cd0]
2543
- - @mastra/core@0.8.4-alpha.0
2544
-
2545
- ## 0.1.18
2546
-
2547
- ### Patch Changes
2548
-
2549
- - 18d0758: [MASTRA-3073] added error logging and more debug logs to vector-query and graph-rag
2550
- - 37bb612: Add Elastic-2.0 licensing for packages
2551
- - Updated dependencies [d72318f]
2552
- - Updated dependencies [0bcc862]
2553
- - Updated dependencies [10a8caf]
2554
- - Updated dependencies [359b089]
2555
- - Updated dependencies [32e7b71]
2556
- - Updated dependencies [37bb612]
2557
- - Updated dependencies [7f1b291]
2558
- - @mastra/core@0.8.3
2559
-
2560
- ## 0.1.18-alpha.6
2561
-
2562
- ### Patch Changes
2563
-
2564
- - Updated dependencies [d72318f]
2565
- - @mastra/core@0.8.3-alpha.5
2566
-
2567
- ## 0.1.18-alpha.5
2568
-
2569
- ### Patch Changes
2570
-
2571
- - 18d0758: [MASTRA-3073] added error logging and more debug logs to vector-query and graph-rag
2572
-
2573
- ## 0.1.18-alpha.4
2574
-
2575
- ### Patch Changes
2576
-
2577
- - Updated dependencies [7f1b291]
2578
- - @mastra/core@0.8.3-alpha.4
2579
-
2580
- ## 0.1.18-alpha.3
2581
-
2582
- ### Patch Changes
2583
-
2584
- - Updated dependencies [10a8caf]
2585
- - @mastra/core@0.8.3-alpha.3
2586
-
2587
- ## 0.1.18-alpha.2
2588
-
2589
- ### Patch Changes
2590
-
2591
- - Updated dependencies [0bcc862]
2592
- - @mastra/core@0.8.3-alpha.2
2593
-
2594
- ## 0.1.18-alpha.1
2595
-
2596
- ### Patch Changes
2597
-
2598
- - 37bb612: Add Elastic-2.0 licensing for packages
2599
- - Updated dependencies [32e7b71]
2600
- - Updated dependencies [37bb612]
2601
- - @mastra/core@0.8.3-alpha.1
2602
-
2603
- ## 0.1.18-alpha.0
2604
-
2605
- ### Patch Changes
2606
-
2607
- - Updated dependencies [359b089]
2608
- - @mastra/core@0.8.3-alpha.0
2609
-
2610
- ## 0.1.17
2611
-
2612
- ### Patch Changes
2613
-
2614
- - Updated dependencies [a06aadc]
2615
- - @mastra/core@0.8.2
2616
-
2617
- ## 0.1.17-alpha.0
2618
-
2619
- ### Patch Changes
2620
-
2621
- - Updated dependencies [a06aadc]
2622
- - @mastra/core@0.8.2-alpha.0
2623
-
2624
- ## 0.1.16
2625
-
2626
- ### Patch Changes
2627
-
2628
- - Updated dependencies [99e2998]
2629
- - Updated dependencies [8fdb414]
2630
- - @mastra/core@0.8.1
2631
-
2632
- ## 0.1.16-alpha.0
2633
-
2634
- ### Patch Changes
2635
-
2636
- - Updated dependencies [99e2998]
2637
- - Updated dependencies [8fdb414]
2638
- - @mastra/core@0.8.1-alpha.0
2639
-
2640
- ## 0.1.15
2641
-
2642
- ### Patch Changes
2643
-
2644
- - e47f529: Updated KeywordExtraction in chunk
2645
- - 7599d77: fix(deps): update ai sdk to ^4.2.2
2646
- - Updated dependencies [56c31b7]
2647
- - Updated dependencies [619c39d]
2648
- - Updated dependencies [5ae0180]
2649
- - Updated dependencies [fe56be0]
2650
- - Updated dependencies [93875ed]
2651
- - Updated dependencies [107bcfe]
2652
- - Updated dependencies [9bfa12b]
2653
- - Updated dependencies [515ebfb]
2654
- - Updated dependencies [5b4e19f]
2655
- - Updated dependencies [dbbbf80]
2656
- - Updated dependencies [a0967a0]
2657
- - Updated dependencies [fca3b21]
2658
- - Updated dependencies [88fa727]
2659
- - Updated dependencies [f37f535]
2660
- - Updated dependencies [a3f0e90]
2661
- - Updated dependencies [4d67826]
2662
- - Updated dependencies [6330967]
2663
- - Updated dependencies [8393832]
2664
- - Updated dependencies [6330967]
2665
- - Updated dependencies [99d43b9]
2666
- - Updated dependencies [d7e08e8]
2667
- - Updated dependencies [febc8a6]
2668
- - Updated dependencies [7599d77]
2669
- - Updated dependencies [0118361]
2670
- - Updated dependencies [619c39d]
2671
- - Updated dependencies [cafae83]
2672
- - Updated dependencies [8076ecf]
2673
- - Updated dependencies [8df4a77]
2674
- - Updated dependencies [304397c]
2675
- - @mastra/core@0.8.0
2676
-
2677
- ## 0.1.15-alpha.8
2678
-
2679
- ### Patch Changes
2680
-
2681
- - Updated dependencies [8df4a77]
2682
- - @mastra/core@0.8.0-alpha.8
2683
-
2684
- ## 0.1.15-alpha.7
2685
-
2686
- ### Patch Changes
2687
-
2688
- - Updated dependencies [febc8a6]
2689
- - @mastra/core@0.8.0-alpha.7
2690
-
2691
- ## 0.1.15-alpha.6
2692
-
2693
- ### Patch Changes
2694
-
2695
- - Updated dependencies [a3f0e90]
2696
- - @mastra/core@0.8.0-alpha.6
2697
-
2698
- ## 0.1.15-alpha.5
2699
-
2700
- ### Patch Changes
2701
-
2702
- - Updated dependencies [93875ed]
2703
- - @mastra/core@0.8.0-alpha.5
2704
-
2705
- ## 0.1.15-alpha.4
2706
-
2707
- ### Patch Changes
2708
-
2709
- - Updated dependencies [d7e08e8]
2710
- - @mastra/core@0.8.0-alpha.4
2711
-
2712
- ## 0.1.15-alpha.3
2713
-
2714
- ### Patch Changes
2715
-
2716
- - Updated dependencies [5ae0180]
2717
- - Updated dependencies [9bfa12b]
2718
- - Updated dependencies [515ebfb]
2719
- - Updated dependencies [88fa727]
2720
- - Updated dependencies [f37f535]
2721
- - Updated dependencies [4d67826]
2722
- - Updated dependencies [6330967]
2723
- - Updated dependencies [8393832]
2724
- - Updated dependencies [6330967]
2725
- - @mastra/core@0.8.0-alpha.3
2726
-
2727
- ## 0.1.15-alpha.2
2728
-
2729
- ### Patch Changes
2730
-
2731
- - Updated dependencies [56c31b7]
2732
- - Updated dependencies [dbbbf80]
2733
- - Updated dependencies [99d43b9]
2734
- - @mastra/core@0.8.0-alpha.2
2735
-
2736
- ## 0.1.15-alpha.1
2737
-
2738
- ### Patch Changes
2739
-
2740
- - e47f529: Updated KeywordExtraction in chunk
2741
- - Updated dependencies [619c39d]
2742
- - Updated dependencies [fe56be0]
2743
- - Updated dependencies [a0967a0]
2744
- - Updated dependencies [fca3b21]
2745
- - Updated dependencies [0118361]
2746
- - Updated dependencies [619c39d]
2747
- - @mastra/core@0.8.0-alpha.1
2748
-
2749
- ## 0.1.15-alpha.0
2750
-
2751
- ### Patch Changes
2752
-
2753
- - 7599d77: fix(deps): update ai sdk to ^4.2.2
2754
- - Updated dependencies [107bcfe]
2755
- - Updated dependencies [5b4e19f]
2756
- - Updated dependencies [7599d77]
2757
- - Updated dependencies [cafae83]
2758
- - Updated dependencies [8076ecf]
2759
- - Updated dependencies [304397c]
2760
- - @mastra/core@0.7.1-alpha.0
2761
-
2762
- ## 0.1.14
2763
-
2764
- ### Patch Changes
2765
-
2766
- - Updated dependencies [b4fbc59]
2767
- - Updated dependencies [a838fde]
2768
- - Updated dependencies [a8bd4cf]
2769
- - Updated dependencies [7a3eeb0]
2770
- - Updated dependencies [0b54522]
2771
- - Updated dependencies [b3b34f5]
2772
- - Updated dependencies [1af25d5]
2773
- - Updated dependencies [a4686e8]
2774
- - Updated dependencies [6530ad1]
2775
- - Updated dependencies [27439ad]
2776
- - @mastra/core@0.7.0
2777
-
2778
- ## 0.1.14-alpha.3
2779
-
2780
- ### Patch Changes
2781
-
2782
- - Updated dependencies [b3b34f5]
2783
- - Updated dependencies [a4686e8]
2784
- - @mastra/core@0.7.0-alpha.3
2785
-
2786
- ## 0.1.14-alpha.2
2787
-
2788
- ### Patch Changes
2789
-
2790
- - Updated dependencies [a838fde]
2791
- - Updated dependencies [a8bd4cf]
2792
- - Updated dependencies [7a3eeb0]
2793
- - Updated dependencies [6530ad1]
2794
- - @mastra/core@0.7.0-alpha.2
2795
-
2796
- ## 0.1.14-alpha.1
2797
-
2798
- ### Patch Changes
2799
-
2800
- - Updated dependencies [0b54522]
2801
- - Updated dependencies [1af25d5]
2802
- - Updated dependencies [27439ad]
2803
- - @mastra/core@0.7.0-alpha.1
2804
-
2805
- ## 0.1.14-alpha.0
2806
-
2807
- ### Patch Changes
2808
-
2809
- - Updated dependencies [b4fbc59]
2810
- - @mastra/core@0.6.5-alpha.0
2811
-
2812
- ## 0.1.13
2813
-
2814
- ### Patch Changes
2815
-
2816
- - ac30427: Updated inputschema for vectorquery tool
2817
- - Updated dependencies [6794797]
2818
- - Updated dependencies [fb68a80]
2819
- - Updated dependencies [b56a681]
2820
- - Updated dependencies [248cb07]
2821
- - @mastra/core@0.6.4
2822
-
2823
- ## 0.1.13-alpha.2
2824
-
2825
- ### Patch Changes
2826
-
2827
- - ac30427: Updated inputschema for vectorquery tool
2828
-
2829
- ## 0.1.13-alpha.1
2830
-
2831
- ### Patch Changes
2832
-
2833
- - Updated dependencies [6794797]
2834
- - @mastra/core@0.6.4-alpha.1
2835
-
2836
- ## 0.1.13-alpha.0
2837
-
2838
- ### Patch Changes
2839
-
2840
- - Updated dependencies [fb68a80]
2841
- - Updated dependencies [b56a681]
2842
- - Updated dependencies [248cb07]
2843
- - @mastra/core@0.6.4-alpha.0
2844
-
2845
- ## 0.1.12
2846
-
2847
- ### Patch Changes
2848
-
2849
- - 404640e: AgentNetwork changeset
2850
- - Updated dependencies [404640e]
2851
- - Updated dependencies [3bce733]
2852
- - @mastra/core@0.6.3
2853
-
2854
- ## 0.1.12-alpha.1
2855
-
2856
- ### Patch Changes
2857
-
2858
- - Updated dependencies [3bce733]
2859
- - @mastra/core@0.6.3-alpha.1
2860
-
2861
- ## 0.1.12-alpha.0
2862
-
2863
- ### Patch Changes
2864
-
2865
- - 404640e: AgentNetwork changeset
2866
- - Updated dependencies [404640e]
2867
- - @mastra/core@0.6.3-alpha.0
2868
-
2869
- ## 0.1.11
2870
-
2871
- ### Patch Changes
2872
-
2873
- - Updated dependencies [beaf1c2]
2874
- - Updated dependencies [3084e13]
2875
- - @mastra/core@0.6.2
2876
-
2877
- ## 0.1.11-alpha.0
2878
-
2879
- ### Patch Changes
2880
-
2881
- - Updated dependencies [beaf1c2]
2882
- - Updated dependencies [3084e13]
2883
- - @mastra/core@0.6.2-alpha.0
2884
-
2885
- ## 0.1.10
2886
-
2887
- ### Patch Changes
2888
-
2889
- - ff1a76c: Update Vector Query and GraphRag tool schema
2890
- - b195f6e: Update character chunking strategy
2891
- - Updated dependencies [fc2f89c]
2892
- - Updated dependencies [dfbb131]
2893
- - Updated dependencies [f4854ee]
2894
- - Updated dependencies [afaf73f]
2895
- - Updated dependencies [0850b4c]
2896
- - Updated dependencies [7bcfaee]
2897
- - Updated dependencies [44631b1]
2898
- - Updated dependencies [9116d70]
2899
- - Updated dependencies [6e559a0]
2900
- - Updated dependencies [5f43505]
2901
- - @mastra/core@0.6.1
2902
-
2903
- ## 0.1.10-alpha.2
2904
-
2905
- ### Patch Changes
2906
-
2907
- - Updated dependencies [fc2f89c]
2908
- - Updated dependencies [dfbb131]
2909
- - Updated dependencies [0850b4c]
2910
- - Updated dependencies [9116d70]
2911
- - @mastra/core@0.6.1-alpha.2
2912
-
2913
- ## 0.1.10-alpha.1
2914
-
2915
- ### Patch Changes
2916
-
2917
- - ff1a76c: Update Vector Query and GraphRag tool schema
2918
- - b195f6e: Update character chunking strategy
2919
- - Updated dependencies [f4854ee]
2920
- - Updated dependencies [afaf73f]
2921
- - Updated dependencies [44631b1]
2922
- - Updated dependencies [6e559a0]
2923
- - Updated dependencies [5f43505]
2924
- - @mastra/core@0.6.1-alpha.1
2925
-
2926
- ## 0.1.10-alpha.0
2927
-
2928
- ### Patch Changes
2929
-
2930
- - Updated dependencies [7bcfaee]
2931
- - @mastra/core@0.6.1-alpha.0
2932
-
2933
- ## 0.1.9
2934
-
2935
- ### Patch Changes
2936
-
2937
- - f14c830: Updated overlap for character and text transformer
2938
- - Updated dependencies [16b98d9]
2939
- - Updated dependencies [1c8cda4]
2940
- - Updated dependencies [95b4144]
2941
- - Updated dependencies [3729dbd]
2942
- - Updated dependencies [c2144f4]
2943
- - @mastra/core@0.6.0
2944
-
2945
- ## 0.1.9-alpha.1
2946
-
2947
- ### Patch Changes
2948
-
2949
- - f14c830: Updated overlap for character and text transformer
2950
- - Updated dependencies [16b98d9]
2951
- - Updated dependencies [1c8cda4]
2952
- - Updated dependencies [95b4144]
2953
- - Updated dependencies [c2144f4]
2954
- - @mastra/core@0.6.0-alpha.1
2955
-
2956
- ## 0.1.9-alpha.0
2957
-
2958
- ### Patch Changes
2959
-
2960
- - Updated dependencies [3729dbd]
2961
- - @mastra/core@0.5.1-alpha.0
2962
-
2963
- ## 0.1.8
2964
-
2965
- ### Patch Changes
2966
-
2967
- - f2e8e5f: Updated descriptions and input schema for vector and graph rag tools
2968
- - 9e81f35: Fix query filter for vector search and rerank
2969
- - c93798b: Added MastraLanguageModel which extends LanguageModelV1
2970
- - 9e0f2c9: Update JSON Chunking to fix recursive issue
2971
- - aec08af: Update vector query tool to change input schema depending on filter enabled
2972
- - fd4a1d7: Update cjs bundling to make sure files are split
2973
- - Updated dependencies [a910463]
2974
- - Updated dependencies [59df7b6]
2975
- - Updated dependencies [22643eb]
2976
- - Updated dependencies [6feb23f]
2977
- - Updated dependencies [f2d6727]
2978
- - Updated dependencies [7a7a547]
2979
- - Updated dependencies [29f3a82]
2980
- - Updated dependencies [3d0e290]
2981
- - Updated dependencies [e9fbac5]
2982
- - Updated dependencies [301e4ee]
2983
- - Updated dependencies [ee667a2]
2984
- - Updated dependencies [dfbe4e9]
2985
- - Updated dependencies [dab255b]
2986
- - Updated dependencies [1e8bcbc]
2987
- - Updated dependencies [f6678e4]
2988
- - Updated dependencies [9e81f35]
2989
- - Updated dependencies [c93798b]
2990
- - Updated dependencies [a85ab24]
2991
- - Updated dependencies [dbd9f2d]
2992
- - Updated dependencies [59df7b6]
2993
- - Updated dependencies [caefaa2]
2994
- - Updated dependencies [c151ae6]
2995
- - Updated dependencies [52e0418]
2996
- - Updated dependencies [d79aedf]
2997
- - Updated dependencies [03236ec]
2998
- - Updated dependencies [3764e71]
2999
- - Updated dependencies [df982db]
3000
- - Updated dependencies [a171b37]
3001
- - Updated dependencies [506f1d5]
3002
- - Updated dependencies [02ffb7b]
3003
- - Updated dependencies [0461849]
3004
- - Updated dependencies [2259379]
3005
- - Updated dependencies [aeb5e36]
3006
- - Updated dependencies [f2301de]
3007
- - Updated dependencies [358f069]
3008
- - Updated dependencies [fd4a1d7]
3009
- - Updated dependencies [c139344]
3010
- - @mastra/core@0.5.0
3011
-
3012
- ## 0.1.8-alpha.13
3013
-
3014
- ### Patch Changes
3015
-
3016
- - Updated dependencies [a85ab24]
3017
- - @mastra/core@0.5.0-alpha.12
3018
-
3019
- ## 0.1.8-alpha.12
3020
-
3021
- ### Patch Changes
3022
-
3023
- - c93798b: Added MastraLanguageModel which extends LanguageModelV1
3024
- - fd4a1d7: Update cjs bundling to make sure files are split
3025
- - Updated dependencies [7a7a547]
3026
- - Updated dependencies [c93798b]
3027
- - Updated dependencies [dbd9f2d]
3028
- - Updated dependencies [a171b37]
3029
- - Updated dependencies [fd4a1d7]
3030
- - @mastra/core@0.5.0-alpha.11
3031
-
3032
- ## 0.1.8-alpha.11
3033
-
3034
- ### Patch Changes
3035
-
3036
- - aec08af: Update vector query tool to change input schema depending on filter enabled
3037
-
3038
- ## 0.1.8-alpha.10
3039
-
3040
- ### Patch Changes
3041
-
3042
- - Updated dependencies [a910463]
3043
- - @mastra/core@0.5.0-alpha.10
3044
-
3045
- ## 0.1.8-alpha.9
3046
-
3047
- ### Patch Changes
3048
-
3049
- - Updated dependencies [e9fbac5]
3050
- - Updated dependencies [1e8bcbc]
3051
- - Updated dependencies [aeb5e36]
3052
- - Updated dependencies [f2301de]
3053
- - @mastra/core@0.5.0-alpha.9
3054
-
3055
- ## 0.1.8-alpha.8
3056
-
3057
- ### Patch Changes
3058
-
3059
- - Updated dependencies [506f1d5]
3060
- - @mastra/core@0.5.0-alpha.8
3061
-
3062
- ## 0.1.8-alpha.7
3063
-
3064
- ### Patch Changes
3065
-
3066
- - Updated dependencies [ee667a2]
3067
- - @mastra/core@0.5.0-alpha.7
3068
-
3069
- ## 0.1.8-alpha.6
3070
-
3071
- ### Patch Changes
3072
-
3073
- - Updated dependencies [f6678e4]
3074
- - @mastra/core@0.5.0-alpha.6
3075
-
3076
- ## 0.1.8-alpha.5
3077
-
3078
- ### Patch Changes
3079
-
3080
- - 9e81f35: Fix query filter for vector search and rerank
3081
- - 9e0f2c9: Update JSON Chunking to fix recursive issue
3082
- - Updated dependencies [22643eb]
3083
- - Updated dependencies [6feb23f]
3084
- - Updated dependencies [f2d6727]
3085
- - Updated dependencies [301e4ee]
3086
- - Updated dependencies [dfbe4e9]
3087
- - Updated dependencies [9e81f35]
3088
- - Updated dependencies [caefaa2]
3089
- - Updated dependencies [c151ae6]
3090
- - Updated dependencies [52e0418]
3091
- - Updated dependencies [03236ec]
3092
- - Updated dependencies [3764e71]
3093
- - Updated dependencies [df982db]
3094
- - Updated dependencies [0461849]
3095
- - Updated dependencies [2259379]
3096
- - Updated dependencies [358f069]
3097
- - @mastra/core@0.5.0-alpha.5
3098
-
3099
- ## 0.1.8-alpha.4
3100
-
3101
- ### Patch Changes
3102
-
3103
- - Updated dependencies [d79aedf]
3104
- - @mastra/core@0.5.0-alpha.4
3105
-
3106
- ## 0.1.8-alpha.3
3107
-
3108
- ### Patch Changes
3109
-
3110
- - f2e8e5f: Updated descriptions and input schema for vector and graph rag tools
3111
- - Updated dependencies [3d0e290]
3112
- - @mastra/core@0.5.0-alpha.3
3113
-
3114
- ## 0.1.8-alpha.2
3115
-
3116
- ### Patch Changes
3117
-
3118
- - Updated dependencies [02ffb7b]
3119
- - @mastra/core@0.5.0-alpha.2
3120
-
3121
- ## 0.1.8-alpha.1
3122
-
3123
- ### Patch Changes
3124
-
3125
- - Updated dependencies [dab255b]
3126
- - @mastra/core@0.5.0-alpha.1
3127
-
3128
- ## 0.1.8-alpha.0
3129
-
3130
- ### Patch Changes
3131
-
3132
- - Updated dependencies [59df7b6]
3133
- - Updated dependencies [29f3a82]
3134
- - Updated dependencies [59df7b6]
3135
- - Updated dependencies [c139344]
3136
- - @mastra/core@0.5.0-alpha.0
3137
-
3138
- ## 0.1.7
3139
-
3140
- ### Patch Changes
3141
-
3142
- - Updated dependencies [1da20e7]
3143
- - @mastra/core@0.4.4
3144
-
3145
- ## 0.1.7-alpha.0
3146
-
3147
- ### Patch Changes
3148
-
3149
- - Updated dependencies [1da20e7]
3150
- - @mastra/core@0.4.4-alpha.0
3151
-
3152
- ## 0.1.6
3153
-
3154
- ### Patch Changes
3155
-
3156
- - 0fd78ac: Update vector store functions to use object params
3157
- - bb4f447: Add support for commonjs
3158
- - Updated dependencies [0d185b1]
3159
- - Updated dependencies [ed55f1d]
3160
- - Updated dependencies [06aa827]
3161
- - Updated dependencies [0fd78ac]
3162
- - Updated dependencies [2512a93]
3163
- - Updated dependencies [e62de74]
3164
- - Updated dependencies [0d25b75]
3165
- - Updated dependencies [fd14a3f]
3166
- - Updated dependencies [8d13b14]
3167
- - Updated dependencies [3f369a2]
3168
- - Updated dependencies [3ee4831]
3169
- - Updated dependencies [4d4e1e1]
3170
- - Updated dependencies [bb4f447]
3171
- - Updated dependencies [108793c]
3172
- - Updated dependencies [5f28f44]
3173
- - Updated dependencies [dabecf4]
3174
- - @mastra/core@0.4.3
3175
-
3176
- ## 0.1.6-alpha.4
3177
-
3178
- ### Patch Changes
3179
-
3180
- - Updated dependencies [dabecf4]
3181
- - @mastra/core@0.4.3-alpha.4
3182
-
3183
- ## 0.1.6-alpha.3
3184
-
3185
- ### Patch Changes
3186
-
3187
- - 0fd78ac: Update vector store functions to use object params
3188
- - bb4f447: Add support for commonjs
3189
- - Updated dependencies [0fd78ac]
3190
- - Updated dependencies [0d25b75]
3191
- - Updated dependencies [fd14a3f]
3192
- - Updated dependencies [3f369a2]
3193
- - Updated dependencies [4d4e1e1]
3194
- - Updated dependencies [bb4f447]
3195
- - @mastra/core@0.4.3-alpha.3
3196
-
3197
- ## 0.1.6-alpha.2
3198
-
3199
- ### Patch Changes
3200
-
3201
- - Updated dependencies [2512a93]
3202
- - Updated dependencies [e62de74]
3203
- - @mastra/core@0.4.3-alpha.2
3204
-
3205
- ## 0.1.6-alpha.1
3206
-
3207
- ### Patch Changes
3208
-
3209
- - Updated dependencies [0d185b1]
3210
- - Updated dependencies [ed55f1d]
3211
- - Updated dependencies [8d13b14]
3212
- - Updated dependencies [3ee4831]
3213
- - Updated dependencies [108793c]
3214
- - Updated dependencies [5f28f44]
3215
- - @mastra/core@0.4.3-alpha.1
3216
-
3217
- ## 0.1.6-alpha.0
3218
-
3219
- ### Patch Changes
3220
-
3221
- - Updated dependencies [06aa827]
3222
- - @mastra/core@0.4.3-alpha.0
3223
-
3224
- ## 0.1.5
3225
-
3226
- ### Patch Changes
3227
-
3228
- - Updated dependencies [7fceae1]
3229
- - Updated dependencies [8d94c3e]
3230
- - Updated dependencies [99dcdb5]
3231
- - Updated dependencies [6cb63e0]
3232
- - Updated dependencies [f626fbb]
3233
- - Updated dependencies [e752340]
3234
- - Updated dependencies [eb91535]
3235
- - @mastra/core@0.4.2
3236
-
3237
- ## 0.1.5-alpha.2
3238
-
3239
- ### Patch Changes
3240
-
3241
- - Updated dependencies [8d94c3e]
3242
- - Updated dependencies [99dcdb5]
3243
- - Updated dependencies [e752340]
3244
- - Updated dependencies [eb91535]
3245
- - @mastra/core@0.4.2-alpha.2
3246
-
3247
- ## 0.1.5-alpha.1
3248
-
3249
- ### Patch Changes
3250
-
3251
- - Updated dependencies [6cb63e0]
3252
- - @mastra/core@0.4.2-alpha.1
3253
-
3254
- ## 0.1.5-alpha.0
3255
-
3256
- ### Patch Changes
3257
-
3258
- - Updated dependencies [7fceae1]
3259
- - Updated dependencies [f626fbb]
3260
- - @mastra/core@0.4.2-alpha.0
3261
-
3262
- ## 0.1.4
3263
-
3264
- ### Patch Changes
3265
-
3266
- - Updated dependencies [ce44b9b]
3267
- - Updated dependencies [967da43]
3268
- - Updated dependencies [b405f08]
3269
- - @mastra/core@0.4.1
3270
-
3271
- ## 0.1.3
3272
-
3273
- ### Patch Changes
3274
-
3275
- - Updated dependencies [2fc618f]
3276
- - Updated dependencies [fe0fd01]
3277
- - @mastra/core@0.4.0
3278
-
3279
- ## 0.1.3-alpha.1
3280
-
3281
- ### Patch Changes
3282
-
3283
- - Updated dependencies [fe0fd01]
3284
- - @mastra/core@0.4.0-alpha.1
3285
-
3286
- ## 0.1.3-alpha.0
3287
-
3288
- ### Patch Changes
3289
-
3290
- - Updated dependencies [2fc618f]
3291
- - @mastra/core@0.4.0-alpha.0
3292
-
3293
- ## 0.1.2
3294
-
3295
- ### Patch Changes
3296
-
3297
- - Updated dependencies [f205ede]
3298
- - @mastra/core@0.3.0
3299
-
3300
- ## 0.1.1
3301
-
3302
- ### Patch Changes
3303
-
3304
- - 91ef439: Add eslint and ran autofix
3305
- - Updated dependencies [d59f1a8]
3306
- - Updated dependencies [91ef439]
3307
- - Updated dependencies [4a25be4]
3308
- - Updated dependencies [bf2e88f]
3309
- - Updated dependencies [2f0d707]
3310
- - Updated dependencies [aac1667]
3311
- - @mastra/core@0.2.1
3312
-
3313
- ## 0.1.1-alpha.0
3314
-
3315
- ### Patch Changes
3316
-
3317
- - 91ef439: Add eslint and ran autofix
3318
- - Updated dependencies [d59f1a8]
3319
- - Updated dependencies [91ef439]
3320
- - Updated dependencies [4a25be4]
3321
- - Updated dependencies [bf2e88f]
3322
- - Updated dependencies [2f0d707]
3323
- - Updated dependencies [aac1667]
3324
- - @mastra/core@0.2.1-alpha.0
3325
-
3326
- ## 0.1.0
3327
-
3328
- ### Minor Changes
3329
-
3330
- - 5916f9d: Update deps from fixed to ^
3331
- - 8b416d9: Breaking changes
3332
-
3333
- ### Patch Changes
3334
-
3335
- - b27bdb8: Swap jsdon for node-html-parser in rag
3336
- - ee856f3: Updated pg filter function and updated docs and example
3337
- - f646a8b: Update rag deps
3338
- - f031a1f: expose embed from rag, and refactor embed
3339
- - 592e3cf: Add custom rag tools, add vector retrieval, and update docs
3340
- - 3967e69: Added GraphRAG implementation and updated docs
3341
- - 8ae2bbc: Dane publishing
3342
- - bdaf834: publish packages
3343
- - 1616f70: Added transaction handling to pgvector
3344
- - e1dd94a: update the api for embeddings
3345
- - 837a288: MAJOR Revamp of tools, workflows, syncs.
3346
- - 685108a: Remove syncs and excess rag
3347
- - b97ca96: Tracing into default storage
3348
- - 033eda6: More fixes for refactor
3349
- - 8105fae: Split embed into embed and embedMany to handle different return types
3350
- - ab1dc59: Add Cloudflare vectorize
3351
- - a621c34: Add validation for indexName in pgVector and dimension for all vector dbs
3352
- - 1944807: Unified logger and major step in better logs
3353
- - 1874f40: Added re ranking tool to RAG
3354
- - 0b74006: Workflow updates
3355
- - 9c10484: update all packages
3356
- - 70dabd9: Fix broken publish
3357
- - 45fd5b8: rename MastraDocument to MDocument
3358
- - 21fe536: add keyword tags for packages and update readmes
3359
- - 779702b: Upstash vector
3360
- - ae638a4: make useFilter option optional
3361
- - 0bd142c: Fixes learned from docs
3362
- - 9625602: Use mastra core splitted bundles in other packages
3363
- - 036ee5e: Add astra-db to rag
3364
- - 1c3232a: ChromaDB
3365
- - 24fe87e: Change document semantics
3366
- - a944f1a: Bundle @mastra/rag package with tsup
3367
- - a10b7a3: Implemented new filtering for vectorQueryTool and updated docs
3368
- - 5826db3: Updated reference docs and exports for Reranker and GraphRag
3369
- - 5811de6: Updates spec-writer example to use new workflows constructs. Small improvements to workflow internals. Switch transformer tokenizer for js compatible one.
3370
- - eb45d76: Updated PG Vector filter and added rag examples in docs
3371
- - 327ece7: Updates for ts versions
3372
- - 6101f2d: Fix module incompatibility, and dane cli build
3373
- - 9c0d010: Deprecated Reranker in favor of rerank function (BREAKING CHANGE)
3374
- - ecdee97: Update return type for chunk to Chunk[]
3375
- - 7de6d71: Update filter for vector query to work with more stores
3376
- - c3047a7: Added tests
3377
- - 4f1d1a1: Enforce types ann cleanup package.json
3378
- - 4769753: Added turso/libsql support for RAG
3379
- - ee4de15: Dane fixes
3380
- - Updated dependencies [f537e33]
3381
- - Updated dependencies [6f2c0f5]
3382
- - Updated dependencies [e4d4ede]
3383
- - Updated dependencies [0be7181]
3384
- - Updated dependencies [dd6d87f]
3385
- - Updated dependencies [9029796]
3386
- - Updated dependencies [6fa4bd2]
3387
- - Updated dependencies [f031a1f]
3388
- - Updated dependencies [8151f44]
3389
- - Updated dependencies [d7d465a]
3390
- - Updated dependencies [4d4f6b6]
3391
- - Updated dependencies [73d112c]
3392
- - Updated dependencies [592e3cf]
3393
- - Updated dependencies [9d1796d]
3394
- - Updated dependencies [e897f1c]
3395
- - Updated dependencies [4a54c82]
3396
- - Updated dependencies [3967e69]
3397
- - Updated dependencies [8ae2bbc]
3398
- - Updated dependencies [e9d1b47]
3399
- - Updated dependencies [016493a]
3400
- - Updated dependencies [bc40916]
3401
- - Updated dependencies [93a3719]
3402
- - Updated dependencies [7d83b92]
3403
- - Updated dependencies [9fb3039]
3404
- - Updated dependencies [d5e12de]
3405
- - Updated dependencies [e1dd94a]
3406
- - Updated dependencies [07c069d]
3407
- - Updated dependencies [5cdfb88]
3408
- - Updated dependencies [837a288]
3409
- - Updated dependencies [685108a]
3410
- - Updated dependencies [c8ff2f5]
3411
- - Updated dependencies [5fdc87c]
3412
- - Updated dependencies [ae7bf94]
3413
- - Updated dependencies [8e7814f]
3414
- - Updated dependencies [66a03ec]
3415
- - Updated dependencies [7d87a15]
3416
- - Updated dependencies [b97ca96]
3417
- - Updated dependencies [23dcb23]
3418
- - Updated dependencies [033eda6]
3419
- - Updated dependencies [8105fae]
3420
- - Updated dependencies [e097800]
3421
- - Updated dependencies [1944807]
3422
- - Updated dependencies [30322ce]
3423
- - Updated dependencies [1874f40]
3424
- - Updated dependencies [685108a]
3425
- - Updated dependencies [f7d1131]
3426
- - Updated dependencies [79acad0]
3427
- - Updated dependencies [7a19083]
3428
- - Updated dependencies [382f4dc]
3429
- - Updated dependencies [1ebd071]
3430
- - Updated dependencies [0b74006]
3431
- - Updated dependencies [2f17a5f]
3432
- - Updated dependencies [f368477]
3433
- - Updated dependencies [7892533]
3434
- - Updated dependencies [9c10484]
3435
- - Updated dependencies [b726bf5]
3436
- - Updated dependencies [70dabd9]
3437
- - Updated dependencies [21fe536]
3438
- - Updated dependencies [176bc42]
3439
- - Updated dependencies [401a4d9]
3440
- - Updated dependencies [2e099d2]
3441
- - Updated dependencies [0b826f6]
3442
- - Updated dependencies [d68b532]
3443
- - Updated dependencies [75bf3f0]
3444
- - Updated dependencies [e6d8055]
3445
- - Updated dependencies [e2e76de]
3446
- - Updated dependencies [ccbc581]
3447
- - Updated dependencies [5950de5]
3448
- - Updated dependencies [fe3dcb0]
3449
- - Updated dependencies [78eec7c]
3450
- - Updated dependencies [a8a459a]
3451
- - Updated dependencies [0be7181]
3452
- - Updated dependencies [7b87567]
3453
- - Updated dependencies [b524c22]
3454
- - Updated dependencies [d7d465a]
3455
- - Updated dependencies [df843d3]
3456
- - Updated dependencies [4534e77]
3457
- - Updated dependencies [d6d8159]
3458
- - Updated dependencies [0bd142c]
3459
- - Updated dependencies [9625602]
3460
- - Updated dependencies [72d1990]
3461
- - Updated dependencies [f6ba259]
3462
- - Updated dependencies [2712098]
3463
- - Updated dependencies [eedb829]
3464
- - Updated dependencies [5285356]
3465
- - Updated dependencies [74b3078]
3466
- - Updated dependencies [cb290ee]
3467
- - Updated dependencies [b4d7416]
3468
- - Updated dependencies [e608d8c]
3469
- - Updated dependencies [06b2c0a]
3470
- - Updated dependencies [002d6d8]
3471
- - Updated dependencies [e448a26]
3472
- - Updated dependencies [8b416d9]
3473
- - Updated dependencies [fd494a3]
3474
- - Updated dependencies [dc90663]
3475
- - Updated dependencies [c872875]
3476
- - Updated dependencies [3c4488b]
3477
- - Updated dependencies [a7b016d]
3478
- - Updated dependencies [fd75f3c]
3479
- - Updated dependencies [7f24c29]
3480
- - Updated dependencies [2017553]
3481
- - Updated dependencies [a10b7a3]
3482
- - Updated dependencies [cf6d825]
3483
- - Updated dependencies [963c15a]
3484
- - Updated dependencies [7365b6c]
3485
- - Updated dependencies [5ee67d3]
3486
- - Updated dependencies [d38f7a6]
3487
- - Updated dependencies [38b7f66]
3488
- - Updated dependencies [2fa7f53]
3489
- - Updated dependencies [1420ae2]
3490
- - Updated dependencies [f6da688]
3491
- - Updated dependencies [3700be1]
3492
- - Updated dependencies [9ade36e]
3493
- - Updated dependencies [10870bc]
3494
- - Updated dependencies [2b01511]
3495
- - Updated dependencies [a870123]
3496
- - Updated dependencies [ccf115c]
3497
- - Updated dependencies [04434b6]
3498
- - Updated dependencies [5811de6]
3499
- - Updated dependencies [9f3ab05]
3500
- - Updated dependencies [66a5392]
3501
- - Updated dependencies [4b1ce2c]
3502
- - Updated dependencies [14064f2]
3503
- - Updated dependencies [f5dfa20]
3504
- - Updated dependencies [327ece7]
3505
- - Updated dependencies [da2e8d3]
3506
- - Updated dependencies [95a4697]
3507
- - Updated dependencies [d5fccfb]
3508
- - Updated dependencies [3427b95]
3509
- - Updated dependencies [538a136]
3510
- - Updated dependencies [e66643a]
3511
- - Updated dependencies [b5393f1]
3512
- - Updated dependencies [d2cd535]
3513
- - Updated dependencies [c2dd6b5]
3514
- - Updated dependencies [67637ba]
3515
- - Updated dependencies [836f4e3]
3516
- - Updated dependencies [5ee2e78]
3517
- - Updated dependencies [cd02c56]
3518
- - Updated dependencies [01502b0]
3519
- - Updated dependencies [16e5b04]
3520
- - Updated dependencies [d9c8dd0]
3521
- - Updated dependencies [9fb59d6]
3522
- - Updated dependencies [a9345f9]
3523
- - Updated dependencies [99f1847]
3524
- - Updated dependencies [04f3171]
3525
- - Updated dependencies [8769a62]
3526
- - Updated dependencies [d5ec619]
3527
- - Updated dependencies [27275c9]
3528
- - Updated dependencies [ae7bf94]
3529
- - Updated dependencies [4f1d1a1]
3530
- - Updated dependencies [ee4de15]
3531
- - Updated dependencies [202d404]
3532
- - Updated dependencies [a221426]
3533
- - @mastra/core@0.2.0
3534
-
3535
- ## 0.1.0-alpha.103
3536
-
3537
- ### Patch Changes
3538
-
3539
- - Updated dependencies [016493a]
3540
- - Updated dependencies [382f4dc]
3541
- - Updated dependencies [176bc42]
3542
- - Updated dependencies [d68b532]
3543
- - Updated dependencies [fe3dcb0]
3544
- - Updated dependencies [e448a26]
3545
- - Updated dependencies [fd75f3c]
3546
- - Updated dependencies [ccf115c]
3547
- - Updated dependencies [a221426]
3548
- - @mastra/core@0.2.0-alpha.110
3549
-
3550
- ## 0.1.0-alpha.102
3551
-
3552
- ### Patch Changes
3553
-
3554
- - Updated dependencies [d5fccfb]
3555
- - @mastra/core@0.2.0-alpha.109
3556
-
3557
- ## 0.1.0-alpha.101
3558
-
3559
- ### Patch Changes
3560
-
3561
- - Updated dependencies [5ee67d3]
3562
- - Updated dependencies [95a4697]
3563
- - @mastra/core@0.2.0-alpha.108
3564
-
3565
- ## 0.1.0-alpha.100
3566
-
3567
- ### Patch Changes
3568
-
3569
- - Updated dependencies [66a5392]
3570
- - @mastra/core@0.2.0-alpha.107
3571
-
3572
- ## 0.1.0-alpha.99
3573
-
3574
- ### Patch Changes
3575
-
3576
- - Updated dependencies [6f2c0f5]
3577
- - Updated dependencies [a8a459a]
3578
- - @mastra/core@0.2.0-alpha.106
3579
-
3580
- ## 0.1.0-alpha.98
3581
-
3582
- ### Patch Changes
3583
-
3584
- - Updated dependencies [1420ae2]
3585
- - Updated dependencies [99f1847]
3586
- - @mastra/core@0.2.0-alpha.105
3587
-
3588
- ## 0.1.0-alpha.97
3589
-
3590
- ### Patch Changes
3591
-
3592
- - b97ca96: Tracing into default storage
3593
- - Updated dependencies [5fdc87c]
3594
- - Updated dependencies [b97ca96]
3595
- - Updated dependencies [72d1990]
3596
- - Updated dependencies [cf6d825]
3597
- - Updated dependencies [10870bc]
3598
- - @mastra/core@0.2.0-alpha.104
3599
-
3600
- ## 0.1.0-alpha.96
3601
-
3602
- ### Patch Changes
3603
-
3604
- - Updated dependencies [4534e77]
3605
- - @mastra/core@0.2.0-alpha.103
3606
-
3607
- ## 0.1.0-alpha.95
3608
-
3609
- ### Patch Changes
3610
-
3611
- - Updated dependencies [a9345f9]
3612
- - @mastra/core@0.2.0-alpha.102
3613
-
3614
- ## 0.1.0-alpha.94
3615
-
3616
- ### Patch Changes
3617
-
3618
- - 4f1d1a1: Enforce types ann cleanup package.json
3619
- - Updated dependencies [66a03ec]
3620
- - Updated dependencies [4f1d1a1]
3621
- - @mastra/core@0.2.0-alpha.101
3622
-
3623
- ## 0.1.0-alpha.93
3624
-
3625
- ### Patch Changes
3626
-
3627
- - Updated dependencies [9d1796d]
3628
- - @mastra/core@0.2.0-alpha.100
3629
-
3630
- ## 0.1.0-alpha.92
3631
-
3632
- ### Patch Changes
3633
-
3634
- - Updated dependencies [7d83b92]
3635
- - @mastra/core@0.2.0-alpha.99
3636
-
3637
- ## 0.1.0-alpha.91
3638
-
3639
- ### Patch Changes
3640
-
3641
- - 70dabd9: Fix broken publish
3642
- - Updated dependencies [70dabd9]
3643
- - Updated dependencies [202d404]
3644
- - @mastra/core@0.2.0-alpha.98
3645
-
3646
- ## 0.1.0-alpha.90
3647
-
3648
- ### Patch Changes
3649
-
3650
- - Updated dependencies [07c069d]
3651
- - Updated dependencies [7892533]
3652
- - Updated dependencies [e6d8055]
3653
- - Updated dependencies [5950de5]
3654
- - Updated dependencies [df843d3]
3655
- - Updated dependencies [a870123]
3656
- - @mastra/core@0.2.0-alpha.97
3657
-
3658
- ## 0.1.0-alpha.89
3659
-
3660
- ### Patch Changes
3661
-
3662
- - Updated dependencies [74b3078]
3663
- - @mastra/core@0.2.0-alpha.96
3664
-
3665
- ## 0.1.0-alpha.88
3666
-
3667
- ### Patch Changes
3668
-
3669
- - Updated dependencies [9fb59d6]
3670
- - @mastra/core@0.2.0-alpha.95
3671
-
3672
- ## 0.1.0-alpha.87
3673
-
3674
- ### Minor Changes
3675
-
3676
- - 8b416d9: Breaking changes
3677
-
3678
- ### Patch Changes
3679
-
3680
- - 9c10484: update all packages
3681
- - Updated dependencies [9c10484]
3682
- - Updated dependencies [8b416d9]
3683
- - @mastra/core@0.2.0-alpha.94
3684
-
3685
- ## 0.1.0-alpha.86
3686
-
3687
- ### Patch Changes
3688
-
3689
- - Updated dependencies [5285356]
3690
- - @mastra/core@0.2.0-alpha.93
3691
-
3692
- ## 0.1.0-alpha.85
3693
-
3694
- ### Patch Changes
3695
-
3696
- - b27bdb8: Swap jsdon for node-html-parser in rag
3697
-
3698
- ## 0.1.0-alpha.84
3699
-
3700
- ### Patch Changes
3701
-
3702
- - Updated dependencies [4d4f6b6]
3703
- - @mastra/core@0.2.0-alpha.92
3704
-
3705
- ## 0.1.0-alpha.83
3706
-
3707
- ### Patch Changes
3708
-
3709
- - a10b7a3: Implemented new filtering for vectorQueryTool and updated docs
3710
- - Updated dependencies [d7d465a]
3711
- - Updated dependencies [d7d465a]
3712
- - Updated dependencies [2017553]
3713
- - Updated dependencies [a10b7a3]
3714
- - Updated dependencies [16e5b04]
3715
- - @mastra/core@0.2.0-alpha.91
3716
-
3717
- ## 0.1.0-alpha.82
3718
-
3719
- ### Patch Changes
3720
-
3721
- - Updated dependencies [8151f44]
3722
- - Updated dependencies [e897f1c]
3723
- - Updated dependencies [3700be1]
3724
- - @mastra/core@0.2.0-alpha.90
3725
-
3726
- ## 0.1.0-alpha.81
3727
-
3728
- ### Patch Changes
3729
-
3730
- - Updated dependencies [27275c9]
3731
- - @mastra/core@0.2.0-alpha.89
3732
-
3733
- ## 0.1.0-alpha.80
3734
-
3735
- ### Patch Changes
3736
-
3737
- - Updated dependencies [ccbc581]
3738
- - @mastra/core@0.2.0-alpha.88
3739
-
3740
- ## 0.1.0-alpha.79
3741
-
3742
- ### Patch Changes
3743
-
3744
- - Updated dependencies [7365b6c]
3745
- - @mastra/core@0.2.0-alpha.87
3746
-
3747
- ## 0.1.0-alpha.78
3748
-
3749
- ### Minor Changes
3750
-
3751
- - 5916f9d: Update deps from fixed to ^
3752
-
3753
- ### Patch Changes
3754
-
3755
- - Updated dependencies [6fa4bd2]
3756
- - Updated dependencies [e2e76de]
3757
- - Updated dependencies [7f24c29]
3758
- - Updated dependencies [67637ba]
3759
- - Updated dependencies [04f3171]
3760
- - @mastra/core@0.2.0-alpha.86
3761
-
3762
- ## 0.0.2-alpha.77
3763
-
3764
- ### Patch Changes
3765
-
3766
- - Updated dependencies [e9d1b47]
3767
- - @mastra/core@0.2.0-alpha.85
3768
-
3769
- ## 0.0.2-alpha.76
3770
-
3771
- ### Patch Changes
3772
-
3773
- - f646a8b: Update rag deps
3774
-
3775
- ## 0.0.2-alpha.75
3776
-
3777
- ### Patch Changes
3778
-
3779
- - Updated dependencies [2f17a5f]
3780
- - Updated dependencies [cb290ee]
3781
- - Updated dependencies [b4d7416]
3782
- - Updated dependencies [38b7f66]
3783
- - @mastra/core@0.2.0-alpha.84
3784
-
3785
- ## 0.0.2-alpha.74
3786
-
3787
- ### Patch Changes
3788
-
3789
- - 9625602: Use mastra core splitted bundles in other packages
3790
- - Updated dependencies [30322ce]
3791
- - Updated dependencies [78eec7c]
3792
- - Updated dependencies [9625602]
3793
- - Updated dependencies [8769a62]
3794
- - @mastra/core@0.2.0-alpha.83
3795
-
3796
- ## 0.0.2-alpha.73
3797
-
3798
- ### Patch Changes
3799
-
3800
- - Updated dependencies [73d112c]
3801
- - @mastra/core@0.1.27-alpha.82
3802
-
3803
- ## 0.0.2-alpha.72
3804
-
3805
- ### Patch Changes
3806
-
3807
- - Updated dependencies [9fb3039]
3808
- - @mastra/core@0.1.27-alpha.81
3809
-
3810
- ## 0.0.2-alpha.71
3811
-
3812
- ### Patch Changes
3813
-
3814
- - a944f1a: Bundle @mastra/rag package with tsup
3815
-
3816
- ## 0.0.2-alpha.70
3817
-
3818
- ### Patch Changes
3819
-
3820
- - 327ece7: Updates for ts versions
3821
- - Updated dependencies [327ece7]
3822
- - @mastra/core@0.1.27-alpha.80
3823
-
3824
- ## 0.0.2-alpha.69
3825
-
3826
- ### Patch Changes
3827
-
3828
- - 21fe536: add keyword tags for packages and update readmes
3829
- - Updated dependencies [21fe536]
3830
- - @mastra/core@0.1.27-alpha.79
3831
-
3832
- ## 0.0.2-alpha.68
3833
-
3834
- ### Patch Changes
3835
-
3836
- - 685108a: Remove syncs and excess rag
3837
- - Updated dependencies [685108a]
3838
- - Updated dependencies [685108a]
3839
- - @mastra/core@0.1.27-alpha.78
3840
-
3841
- ## 0.0.2-alpha.67
3842
-
3843
- ### Patch Changes
3844
-
3845
- - 8105fae: Split embed into embed and embedMany to handle different return types
3846
- - ecdee97: Update return type for chunk to Chunk[]
3847
- - Updated dependencies [8105fae]
3848
- - @mastra/core@0.1.27-alpha.77
3849
-
3850
- ## 0.0.2-alpha.66
3851
-
3852
- ### Patch Changes
3853
-
3854
- - 9c0d010: Deprecated Reranker in favor of rerank function (BREAKING CHANGE)
3855
-
3856
- ## 0.0.2-alpha.65
3857
-
3858
- ### Patch Changes
3859
-
3860
- - Updated dependencies [ae7bf94]
3861
- - Updated dependencies [ae7bf94]
3862
- - @mastra/core@0.1.27-alpha.76
3863
-
3864
- ## 0.0.2-alpha.64
3865
-
3866
- ### Patch Changes
3867
-
3868
- - Updated dependencies [23dcb23]
3869
- - @mastra/core@0.1.27-alpha.75
3870
-
3871
- ## 0.0.2-alpha.63
3872
-
3873
- ### Patch Changes
3874
-
3875
- - Updated dependencies [7b87567]
3876
- - @mastra/core@0.1.27-alpha.74
3877
-
3878
- ## 0.0.2-alpha.62
3879
-
3880
- ### Patch Changes
3881
-
3882
- - Updated dependencies [3427b95]
3883
- - @mastra/core@0.1.27-alpha.73
3884
-
3885
- ## 0.0.2-alpha.61
3886
-
3887
- ### Patch Changes
3888
-
3889
- - Updated dependencies [e4d4ede]
3890
- - Updated dependencies [06b2c0a]
3891
- - @mastra/core@0.1.27-alpha.72
3892
-
3893
- ## 0.0.2-alpha.60
3894
-
3895
- ### Patch Changes
3896
-
3897
- - Updated dependencies [d9c8dd0]
3898
- - @mastra/core@0.1.27-alpha.71
3899
-
3900
- ## 0.0.2-alpha.59
3901
-
3902
- ### Patch Changes
3903
-
3904
- - bdaf834: publish packages
3905
-
3906
- ## 0.0.2-alpha.58
3907
-
3908
- ### Patch Changes
3909
-
3910
- - Updated dependencies [dd6d87f]
3911
- - Updated dependencies [04434b6]
3912
- - @mastra/core@0.1.27-alpha.70
3913
-
3914
- ## 0.0.2-alpha.57
3915
-
3916
- ### Patch Changes
3917
-
3918
- - ab1dc59: Add Cloudflare vectorize
3919
- - 4769753: Added turso/libsql support for RAG
3920
-
3921
- ## 0.0.2-alpha.56
3922
-
3923
- ### Patch Changes
3924
-
3925
- - ee856f3: Updated pg filter function and updated docs and example
3926
- - c3047a7: Added tests
3927
-
3928
- ## 0.0.2-alpha.55
3929
-
3930
- ### Patch Changes
3931
-
3932
- - 1944807: Unified logger and major step in better logs
3933
- - Updated dependencies [1944807]
3934
- - Updated dependencies [9ade36e]
3935
- - @mastra/core@0.1.27-alpha.69
3936
-
3937
- ## 0.0.2-alpha.54
3938
-
3939
- ### Patch Changes
3940
-
3941
- - Updated dependencies [0be7181]
3942
- - Updated dependencies [0be7181]
3943
- - @mastra/core@0.1.27-alpha.68
3944
-
3945
- ## 0.0.2-alpha.53
3946
-
3947
- ### Patch Changes
3948
-
3949
- - Updated dependencies [c8ff2f5]
3950
- - @mastra/core@0.1.27-alpha.67
3951
-
3952
- ## 0.0.2-alpha.52
3953
-
3954
- ### Patch Changes
3955
-
3956
- - Updated dependencies [14064f2]
3957
- - @mastra/core@0.1.27-alpha.66
3958
-
3959
- ## 0.0.2-alpha.51
3960
-
3961
- ### Patch Changes
3962
-
3963
- - Updated dependencies [e66643a]
3964
- - @mastra/core@0.1.27-alpha.65
3965
-
3966
- ## 0.0.2-alpha.50
3967
-
3968
- ### Patch Changes
3969
-
3970
- - 1616f70: Added transaction handling to pgvector
3971
-
3972
- ## 0.0.2-alpha.49
3973
-
3974
- ### Patch Changes
3975
-
3976
- - Updated dependencies [f368477]
3977
- - Updated dependencies [d5ec619]
3978
- - @mastra/core@0.1.27-alpha.64
3979
-
3980
- ## 0.0.2-alpha.48
3981
-
3982
- ### Patch Changes
3983
-
3984
- - 5826db3: Updated reference docs and exports for Reranker and GraphRag
3985
-
3986
- ## 0.0.2-alpha.47
3987
-
3988
- ### Patch Changes
3989
-
3990
- - Updated dependencies [e097800]
3991
- - @mastra/core@0.1.27-alpha.63
3992
-
3993
- ## 0.0.2-alpha.46
3994
-
3995
- ### Patch Changes
3996
-
3997
- - Updated dependencies [93a3719]
3998
- - @mastra/core@0.1.27-alpha.62
3999
-
4000
- ## 0.0.2-alpha.45
4001
-
4002
- ### Patch Changes
4003
-
4004
- - Updated dependencies [dc90663]
4005
- - @mastra/core@0.1.27-alpha.61
4006
-
4007
- ## 0.0.2-alpha.44
4008
-
4009
- ### Patch Changes
4010
-
4011
- - 3967e69: Added GraphRAG implementation and updated docs
4012
- - Updated dependencies [3967e69]
4013
- - @mastra/core@0.1.27-alpha.60
4014
-
4015
- ## 0.0.2-alpha.43
4016
-
4017
- ### Patch Changes
4018
-
4019
- - Updated dependencies [b524c22]
4020
- - @mastra/core@0.1.27-alpha.59
4021
-
4022
- ## 0.0.2-alpha.42
4023
-
4024
- ### Patch Changes
4025
-
4026
- - 1874f40: Added re ranking tool to RAG
4027
- - Updated dependencies [1874f40]
4028
- - Updated dependencies [4b1ce2c]
4029
- - @mastra/core@0.1.27-alpha.58
4030
-
4031
- ## 0.0.2-alpha.41
4032
-
4033
- ### Patch Changes
4034
-
4035
- - 7de6d71: Update filter for vector query to work with more stores
4036
- - Updated dependencies [fd494a3]
4037
- - @mastra/core@0.1.27-alpha.57
4038
-
4039
- ## 0.0.2-alpha.40
4040
-
4041
- ### Patch Changes
4042
-
4043
- - ae638a4: make useFilter option optional
4044
- - Updated dependencies [9f3ab05]
4045
- - @mastra/core@0.1.27-alpha.56
4046
-
4047
- ## 0.0.2-alpha.39
4048
-
4049
- ### Patch Changes
4050
-
4051
- - 592e3cf: Add custom rag tools, add vector retrieval, and update docs
4052
- - 837a288: MAJOR Revamp of tools, workflows, syncs.
4053
- - 0b74006: Workflow updates
4054
- - Updated dependencies [592e3cf]
4055
- - Updated dependencies [837a288]
4056
- - Updated dependencies [0b74006]
4057
- - @mastra/core@0.1.27-alpha.55
4058
-
4059
- ## 0.0.2-alpha.38
4060
-
4061
- ### Patch Changes
4062
-
4063
- - eb45d76: Updated PG Vector filter and added rag examples in docs
4064
- - Updated dependencies [d2cd535]
4065
- - @mastra/core@0.1.27-alpha.54
4066
-
4067
- ## 0.0.2-alpha.37
4068
-
4069
- ### Patch Changes
4070
-
4071
- - Updated dependencies [8e7814f]
4072
- - @mastra/core@0.1.27-alpha.53
4073
-
4074
- ## 0.0.2-alpha.36
4075
-
4076
- ### Patch Changes
4077
-
4078
- - Updated dependencies [eedb829]
4079
- - @mastra/core@0.1.27-alpha.52
4080
-
4081
- ## 0.0.2-alpha.35
4082
-
4083
- ### Patch Changes
4084
-
4085
- - Updated dependencies [a7b016d]
4086
- - Updated dependencies [da2e8d3]
4087
- - Updated dependencies [538a136]
4088
- - @mastra/core@0.1.27-alpha.51
4089
-
4090
- ## 0.0.2-alpha.34
4091
-
4092
- ### Patch Changes
4093
-
4094
- - Updated dependencies [401a4d9]
4095
- - @mastra/core@0.1.27-alpha.50
4096
-
4097
- ## 0.0.2-alpha.33
4098
-
4099
- ### Patch Changes
4100
-
4101
- - a621c34: Add validation for indexName in pgVector and dimension for all vector dbs
4102
- - Updated dependencies [79acad0]
4103
- - Updated dependencies [f5dfa20]
4104
- - @mastra/core@0.1.27-alpha.49
4105
-
4106
- ## 0.0.2-alpha.32
4107
-
4108
- ### Patch Changes
4109
-
4110
- - Updated dependencies [b726bf5]
4111
- - @mastra/core@0.1.27-alpha.48
4112
-
4113
- ## 0.0.2-alpha.31
4114
-
4115
- ### Patch Changes
4116
-
4117
- - Updated dependencies [f6ba259]
4118
- - @mastra/core@0.1.27-alpha.47
4119
-
4120
- ## 0.0.2-alpha.30
4121
-
4122
- ### Patch Changes
4123
-
4124
- - 8ae2bbc: Dane publishing
4125
- - 0bd142c: Fixes learned from docs
4126
- - ee4de15: Dane fixes
4127
- - Updated dependencies [8ae2bbc]
4128
- - Updated dependencies [0bd142c]
4129
- - Updated dependencies [ee4de15]
4130
- - @mastra/core@0.1.27-alpha.46
4131
-
4132
- ## 0.0.2-alpha.29
4133
-
4134
- ### Patch Changes
4135
-
4136
- - Updated dependencies [e608d8c]
4137
- - Updated dependencies [002d6d8]
4138
- - @mastra/core@0.1.27-alpha.45
4139
-
4140
- ## 0.0.2-alpha.28
4141
-
4142
- ### Patch Changes
4143
-
4144
- - Updated dependencies [2fa7f53]
4145
- - @mastra/core@0.1.27-alpha.44
4146
-
4147
- ## 0.0.2-alpha.27
4148
-
4149
- ### Patch Changes
4150
-
4151
- - Updated dependencies [2e099d2]
4152
- - Updated dependencies [d6d8159]
4153
- - @mastra/core@0.1.27-alpha.43
4154
-
4155
- ## 0.0.2-alpha.26
4156
-
4157
- ### Patch Changes
4158
-
4159
- - Updated dependencies [4a54c82]
4160
- - @mastra/core@0.1.27-alpha.42
4161
-
4162
- ## 0.0.2-alpha.25
4163
-
4164
- ### Patch Changes
4165
-
4166
- - Updated dependencies [5cdfb88]
4167
- - @mastra/core@0.1.27-alpha.41
4168
-
4169
- ## 0.0.2-alpha.24
4170
-
4171
- ### Patch Changes
4172
-
4173
- - Updated dependencies [9029796]
4174
- - @mastra/core@0.1.27-alpha.40
4175
-
4176
- ## 0.0.2-alpha.23
4177
-
4178
- ### Patch Changes
4179
-
4180
- - 6101f2d: Fix module incompatibility, and dane cli build
4181
- - Updated dependencies [2b01511]
4182
- - @mastra/core@0.1.27-alpha.39
4183
-
4184
- ## 0.0.2-alpha.22
4185
-
4186
- ### Patch Changes
4187
-
4188
- - f031a1f: expose embed from rag, and refactor embed
4189
- - Updated dependencies [f031a1f]
4190
- - @mastra/core@0.1.27-alpha.38
4191
-
4192
- ## 0.0.2-alpha.21
4193
-
4194
- ### Patch Changes
4195
-
4196
- - 45fd5b8: rename MastraDocument to MDocument
4197
- - Updated dependencies [c872875]
4198
- - Updated dependencies [f6da688]
4199
- - Updated dependencies [b5393f1]
4200
- - @mastra/core@0.1.27-alpha.37
4201
-
4202
- ## 0.0.2-alpha.20
4203
-
4204
- ### Patch Changes
4205
-
4206
- - Updated dependencies [f537e33]
4207
- - Updated dependencies [bc40916]
4208
- - Updated dependencies [f7d1131]
4209
- - Updated dependencies [75bf3f0]
4210
- - Updated dependencies [3c4488b]
4211
- - Updated dependencies [d38f7a6]
4212
- - @mastra/core@0.1.27-alpha.36
4213
-
4214
- ## 0.0.2-alpha.19
4215
-
4216
- ### Patch Changes
4217
-
4218
- - 033eda6: More fixes for refactor
4219
- - Updated dependencies [033eda6]
4220
- - @mastra/core@0.1.27-alpha.35
4221
-
4222
- ## 0.0.2-alpha.18
4223
-
4224
- ### Patch Changes
4225
-
4226
- - 837a288: MAJOR Revamp of tools, workflows, syncs.
4227
- - 5811de6: Updates spec-writer example to use new workflows constructs. Small improvements to workflow internals. Switch transformer tokenizer for js compatible one.
4228
- - Updated dependencies [837a288]
4229
- - Updated dependencies [5811de6]
4230
- - @mastra/core@0.1.27-alpha.34
4231
-
4232
- ## 0.0.2-alpha.17
4233
-
4234
- ### Patch Changes
4235
-
4236
- - e1dd94a: update the api for embeddings
4237
- - Updated dependencies [e1dd94a]
4238
- - @mastra/core@0.1.27-alpha.33
4239
-
4240
- ## 0.0.2-alpha.16
4241
-
4242
- ### Patch Changes
4243
-
4244
- - Updated dependencies [2712098]
4245
- - @mastra/core@0.1.27-alpha.32
4246
-
4247
- ## 0.0.2-alpha.15
4248
-
4249
- ### Patch Changes
4250
-
4251
- - Updated dependencies [c2dd6b5]
4252
- - @mastra/core@0.1.27-alpha.31
4253
-
4254
- ## 0.0.2-alpha.14
4255
-
4256
- ### Patch Changes
4257
-
4258
- - 1c3232a: ChromaDB
4259
-
4260
- ## 0.0.2-alpha.13
4261
-
4262
- ### Patch Changes
4263
-
4264
- - Updated dependencies [963c15a]
4265
- - @mastra/core@0.1.27-alpha.30
4266
-
4267
- ## 0.0.2-alpha.12
4268
-
4269
- ### Patch Changes
4270
-
4271
- - Updated dependencies [7d87a15]
4272
- - @mastra/core@0.1.27-alpha.29
4273
-
4274
- ## 0.0.2-alpha.11
4275
-
4276
- ### Patch Changes
4277
-
4278
- - Updated dependencies [1ebd071]
4279
- - @mastra/core@0.1.27-alpha.28
4280
-
4281
- ## 0.0.2-alpha.10
4282
-
4283
- ### Patch Changes
4284
-
4285
- - 779702b: Upstash vector
4286
-
4287
- ## 0.0.2-alpha.9
4288
-
4289
- ### Patch Changes
4290
-
4291
- - Updated dependencies [cd02c56]
4292
- - @mastra/core@0.1.27-alpha.27
4293
-
4294
- ## 0.0.2-alpha.8
4295
-
4296
- ### Patch Changes
4297
-
4298
- - Updated dependencies [d5e12de]
4299
- - @mastra/core@0.1.27-alpha.26
4300
-
4301
- ## 0.0.2-alpha.7
4302
-
4303
- ### Patch Changes
4304
-
4305
- - 24fe87e: Change document semantics
4306
-
4307
- ## 0.0.2-alpha.6
4308
-
4309
- ### Patch Changes
4310
-
4311
- - Updated dependencies [01502b0]
4312
- - @mastra/core@0.1.27-alpha.25
4313
-
4314
- ## 0.0.2-alpha.5
4315
-
4316
- ### Patch Changes
4317
-
4318
- - 036ee5e: Add astra-db to rag
4319
-
4320
- ## 0.0.2-alpha.4
4321
-
4322
- ### Patch Changes
4323
-
4324
- - Updated dependencies [836f4e3]
4325
- - @mastra/core@0.1.27-alpha.24
4326
-
4327
- ## 0.0.2-alpha.3
4328
-
4329
- ### Patch Changes
4330
-
4331
- - Updated dependencies [0b826f6]
4332
- - @mastra/core@0.1.27-alpha.23
4333
-
4334
- ## 0.0.2-alpha.2
4335
-
4336
- ### Patch Changes
4337
-
4338
- - Updated dependencies [7a19083]
4339
- - @mastra/core@0.1.27-alpha.22
4340
-
4341
- ## 0.0.2-alpha.1
4342
-
4343
- ### Patch Changes
4344
-
4345
- - Updated dependencies [5ee2e78]
4346
- - @mastra/core@0.1.27-alpha.21
4347
-
4348
- ## 0.0.2-alpha.0
4349
-
4350
- ### Patch Changes
4351
-
4352
- - 8413645: Initial release for rag