@mastra/rag 2.6.0-alpha.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 +141 -23
  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 -4326
package/CHANGELOG.md DELETED
@@ -1,4326 +0,0 @@
1
- # @mastra/rag
2
-
3
- ## 2.6.0-alpha.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 [[`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)]:
27
- - @mastra/core@1.60.0-alpha.9
28
-
29
- ## 2.5.0
30
-
31
- ### Minor Changes
32
-
33
- - 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))
34
-
35
- ```typescript
36
- import { createBedrockKBTool } from '@mastra/rag';
37
-
38
- const tool = createBedrockKBTool({
39
- knowledgeBaseId: 'YOUR_KB_ID',
40
- region: 'us-west-2',
41
- });
42
-
43
- const results = await tool.execute({ queryText: 'What is RAG?' });
44
- ```
45
-
46
- ### Patch Changes
47
-
48
- - 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)]:
49
- - @mastra/core@1.58.0
50
-
51
- ## 2.5.0-alpha.0
52
-
53
- ### Minor Changes
54
-
55
- - 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))
56
-
57
- ```typescript
58
- import { createBedrockKBTool } from '@mastra/rag';
59
-
60
- const tool = createBedrockKBTool({
61
- knowledgeBaseId: 'YOUR_KB_ID',
62
- region: 'us-west-2',
63
- });
64
-
65
- const results = await tool.execute({ queryText: 'What is RAG?' });
66
- ```
67
-
68
- ### Patch Changes
69
-
70
- - 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)]:
71
- - @mastra/core@1.58.0-alpha.2
72
-
73
- ## 2.4.2
74
-
75
- ### Patch Changes
76
-
77
- - 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))
78
-
79
- ```typescript
80
- const vectorTool = createVectorQueryTool({
81
- vectorStoreName: 'turbopuffer',
82
- indexName: 'documents',
83
- model: embedModel,
84
- databaseConfig: {
85
- turbopuffer: {
86
- consistency: 'eventual', // lower latency, recently written data may not be visible yet
87
- },
88
- },
89
- });
90
- ```
91
-
92
- - 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)]:
93
- - @mastra/core@1.52.0
94
-
95
- ## 2.4.2-alpha.0
96
-
97
- ### Patch Changes
98
-
99
- - 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))
100
-
101
- ```typescript
102
- const vectorTool = createVectorQueryTool({
103
- vectorStoreName: 'turbopuffer',
104
- indexName: 'documents',
105
- model: embedModel,
106
- databaseConfig: {
107
- turbopuffer: {
108
- consistency: 'eventual', // lower latency, recently written data may not be visible yet
109
- },
110
- },
111
- });
112
- ```
113
-
114
- - 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)]:
115
- - @mastra/core@1.52.0-alpha.5
116
-
117
- ## 2.4.1
118
-
119
- ### Patch Changes
120
-
121
- - Fixed token chunking to reject overlaps that cannot advance. ([#19213](https://github.com/mastra-ai/mastra/pull/19213))
122
-
123
- - Fixed RAG rerank observability spans to record scoring failures before rethrowing. ([#19246](https://github.com/mastra-ai/mastra/pull/19246))
124
-
125
- - Fixed RAG filter parsing to reject JSON string filters that parse to non-object values. ([#19244](https://github.com/mastra-ai/mastra/pull/19244))
126
-
127
- - Fixed Mastra agent relevance scoring to reject invalid model score output. ([#19251](https://github.com/mastra-ai/mastra/pull/19251))
128
-
129
- - Fixed character chunking to preserve content with custom length functions. ([#19214](https://github.com/mastra-ai/mastra/pull/19214))
130
-
131
- - 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))
132
-
133
- - 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)]:
134
- - @mastra/core@1.51.0
135
-
136
- ## 2.4.1-alpha.0
137
-
138
- ### Patch Changes
139
-
140
- - Fixed token chunking to reject overlaps that cannot advance. ([#19213](https://github.com/mastra-ai/mastra/pull/19213))
141
-
142
- - Fixed RAG rerank observability spans to record scoring failures before rethrowing. ([#19246](https://github.com/mastra-ai/mastra/pull/19246))
143
-
144
- - Fixed RAG filter parsing to reject JSON string filters that parse to non-object values. ([#19244](https://github.com/mastra-ai/mastra/pull/19244))
145
-
146
- - Fixed Mastra agent relevance scoring to reject invalid model score output. ([#19251](https://github.com/mastra-ai/mastra/pull/19251))
147
-
148
- - Fixed character chunking to preserve content with custom length functions. ([#19214](https://github.com/mastra-ai/mastra/pull/19214))
149
-
150
- - 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))
151
-
152
- - 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)]:
153
- - @mastra/core@1.51.0-alpha.4
154
-
155
- ## 2.4.0
156
-
157
- ### Minor Changes
158
-
159
- - 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))
160
-
161
- ### Patch Changes
162
-
163
- - 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)]:
164
- - @mastra/core@1.48.0
165
-
166
- ## 2.4.0-alpha.0
167
-
168
- ### Minor Changes
169
-
170
- - 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))
171
-
172
- ### Patch Changes
173
-
174
- - 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)]:
175
- - @mastra/core@1.48.0-alpha.7
176
-
177
- ## 2.3.0
178
-
179
- ### Minor Changes
180
-
181
- - Random bump ([#18178](https://github.com/mastra-ai/mastra/pull/18178))
182
-
183
- ### Patch Changes
184
-
185
- - 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)]:
186
- - @mastra/core@1.45.0
187
-
188
- ## 2.3.0-alpha.0
189
-
190
- ### Minor Changes
191
-
192
- - Random bump ([#18178](https://github.com/mastra-ai/mastra/pull/18178))
193
-
194
- ### Patch Changes
195
-
196
- - 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)]:
197
- - @mastra/core@1.45.0-alpha.0
198
-
199
- ## 2.2.2
200
-
201
- ### Patch Changes
202
-
203
- - 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))
204
-
205
- - 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)]:
206
- - @mastra/core@1.44.0
207
-
208
- ## 2.2.2-alpha.0
209
-
210
- ### Patch Changes
211
-
212
- - 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))
213
-
214
- - Updated dependencies [[`77a2351`](https://github.com/mastra-ai/mastra/commit/77a2351ee79296e360bce822cb3391f7cfd6489d)]:
215
- - @mastra/core@1.43.1-alpha.0
216
-
217
- ## 2.2.1
218
-
219
- ### Patch Changes
220
-
221
- - 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))
222
-
223
- - 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)]:
224
- - @mastra/core@1.26.0
225
-
226
- ## 2.2.1-alpha.0
227
-
228
- ### Patch Changes
229
-
230
- - 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))
231
-
232
- - 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)]:
233
- - @mastra/core@1.26.0-alpha.10
234
-
235
- ## 2.2.0
236
-
237
- ### Minor Changes
238
-
239
- - Add RAG observability (#10898) ([#15137](https://github.com/mastra-ai/mastra/pull/15137))
240
-
241
- Surfaces RAG ingestion and query operations in Mastra's AI tracing.
242
-
243
- New span types in `@mastra/core/observability`:
244
- - `RAG_INGESTION` (root) — wraps an ingestion pipeline run
245
- - `RAG_EMBEDDING` — embedding call (used by ingestion and query)
246
- - `RAG_VECTOR_OPERATION` — vector store I/O (`query`/`upsert`/`delete`/`fetch`)
247
- - `RAG_ACTION` — `chunk` / `extract_metadata` / `rerank`
248
- - `GRAPH_ACTION` — non-RAG graph `build` / `traverse` / `update` / `prune`
249
-
250
- New helpers exported from `@mastra/core/observability`:
251
- - `startRagIngestion(opts)` — manual: returns `{ span, observabilityContext }`
252
- - `withRagIngestion(opts, fn)` — scoped: runs `fn(observabilityContext)`,
253
- attaches the return value as the span's output, routes thrown errors to
254
- `span.error(...)`
255
-
256
- Wired in `@mastra/rag`:
257
- - `vectorQuerySearch` emits `RAG_EMBEDDING` (mode: `query`) and
258
- `RAG_VECTOR_OPERATION` (operation: `query`)
259
- - `rerank` / `rerankWithScorer` emit `RAG_ACTION` (action: `rerank`)
260
- - `MDocument.chunk` emits `RAG_ACTION` (action: `chunk`) and
261
- `RAG_ACTION` (action: `extract_metadata`)
262
- - `createGraphRAGTool` emits `GRAPH_ACTION` (action: `build` / `traverse`)
263
- - `createVectorQueryTool` and `createGraphRAGTool` thread
264
- `observabilityContext` from the agent's `TOOL_CALL` span automatically
265
-
266
- All new instrumentation is opt-in: functions accept an optional
267
- `observabilityContext` and no-op when absent, so existing callers are
268
- unaffected.
269
-
270
- ### Patch Changes
271
-
272
- - 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)]:
273
- - @mastra/core@1.24.0
274
-
275
- ## 2.2.0-alpha.0
276
-
277
- ### Minor Changes
278
-
279
- - Add RAG observability (#10898) ([#15137](https://github.com/mastra-ai/mastra/pull/15137))
280
-
281
- Surfaces RAG ingestion and query operations in Mastra's AI tracing.
282
-
283
- New span types in `@mastra/core/observability`:
284
- - `RAG_INGESTION` (root) — wraps an ingestion pipeline run
285
- - `RAG_EMBEDDING` — embedding call (used by ingestion and query)
286
- - `RAG_VECTOR_OPERATION` — vector store I/O (`query`/`upsert`/`delete`/`fetch`)
287
- - `RAG_ACTION` — `chunk` / `extract_metadata` / `rerank`
288
- - `GRAPH_ACTION` — non-RAG graph `build` / `traverse` / `update` / `prune`
289
-
290
- New helpers exported from `@mastra/core/observability`:
291
- - `startRagIngestion(opts)` — manual: returns `{ span, observabilityContext }`
292
- - `withRagIngestion(opts, fn)` — scoped: runs `fn(observabilityContext)`,
293
- attaches the return value as the span's output, routes thrown errors to
294
- `span.error(...)`
295
-
296
- Wired in `@mastra/rag`:
297
- - `vectorQuerySearch` emits `RAG_EMBEDDING` (mode: `query`) and
298
- `RAG_VECTOR_OPERATION` (operation: `query`)
299
- - `rerank` / `rerankWithScorer` emit `RAG_ACTION` (action: `rerank`)
300
- - `MDocument.chunk` emits `RAG_ACTION` (action: `chunk`) and
301
- `RAG_ACTION` (action: `extract_metadata`)
302
- - `createGraphRAGTool` emits `GRAPH_ACTION` (action: `build` / `traverse`)
303
- - `createVectorQueryTool` and `createGraphRAGTool` thread
304
- `observabilityContext` from the agent's `TOOL_CALL` span automatically
305
-
306
- All new instrumentation is opt-in: functions accept an optional
307
- `observabilityContext` and no-op when absent, so existing callers are
308
- unaffected.
309
-
310
- ### Patch Changes
311
-
312
- - 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)]:
313
- - @mastra/core@1.24.0-alpha.1
314
-
315
- ## 2.1.3
316
-
317
- ### Patch Changes
318
-
319
- - 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))
320
-
321
- Removed ~150 redundant or noisy log calls including duplicate error logging after trackException and verbose in-memory storage CRUD traces.
322
-
323
- - 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)]:
324
- - @mastra/core@1.20.0
325
-
326
- ## 2.1.3-alpha.0
327
-
328
- ### Patch Changes
329
-
330
- - 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))
331
-
332
- Removed ~150 redundant or noisy log calls including duplicate error logging after trackException and verbose in-memory storage CRUD traces.
333
-
334
- - 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)]:
335
- - @mastra/core@1.20.0-alpha.0
336
-
337
- ## 2.1.2
338
-
339
- ### Patch Changes
340
-
341
- - 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))
342
-
343
- - 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)]:
344
- - @mastra/core@1.8.0
345
-
346
- ## 2.1.2-alpha.0
347
-
348
- ### Patch Changes
349
-
350
- - 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))
351
-
352
- - 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)]:
353
- - @mastra/core@1.8.0-alpha.0
354
-
355
- ## 2.1.1
356
-
357
- ### Patch Changes
358
-
359
- - dependencies updates: ([#13318](https://github.com/mastra-ai/mastra/pull/13318))
360
- - 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`)
361
- - 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)]:
362
- - @mastra/core@1.7.0
363
-
364
- ## 2.1.1-alpha.0
365
-
366
- ### Patch Changes
367
-
368
- - dependencies updates: ([#13318](https://github.com/mastra-ai/mastra/pull/13318))
369
- - 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`)
370
- - 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)]:
371
- - @mastra/core@1.7.0-alpha.0
372
-
373
- ## 2.1.0
374
-
375
- ### Minor Changes
376
-
377
- - Added support for 20 additional languages in code chunking ([#12154](https://github.com/mastra-ai/mastra/pull/12154))
378
-
379
- 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.
380
-
381
- **Newly supported languages:**
382
- - GO, JAVA, KOTLIN, JS, PYTHON, RUBY, RUST, SCALA, SWIFT (popular programming languages)
383
- - HTML, SOL (Solidity), CSHARP, COBOL, LUA, PERL, HASKELL, ELIXIR, POWERSHELL (additional languages)
384
- - PROTO (Protocol Buffers), RST (reStructuredText) (data/documentation formats)
385
-
386
- Each language has been configured with appropriate separators based on its syntax patterns (modules, classes, functions, control structures) to enable semantic code chunking.
387
-
388
- **Before:**
389
-
390
- ```typescript
391
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
392
-
393
- // These would all throw "Language X is not supported!" errors
394
- const goTransformer = RecursiveCharacterTransformer.fromLanguage(Language.GO);
395
- const pythonTransformer = RecursiveCharacterTransformer.fromLanguage(Language.PYTHON);
396
- const rustTransformer = RecursiveCharacterTransformer.fromLanguage(Language.RUST);
397
- ```
398
-
399
- **After:**
400
-
401
- ```typescript
402
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
403
-
404
- // All languages now work seamlessly
405
- const goTransformer = RecursiveCharacterTransformer.fromLanguage(Language.GO);
406
- const goChunks = goTransformer.transform(goCodeDocument);
407
-
408
- const pythonTransformer = RecursiveCharacterTransformer.fromLanguage(Language.PYTHON);
409
- const pythonChunks = pythonTransformer.transform(pythonCodeDocument);
410
-
411
- const rustTransformer = RecursiveCharacterTransformer.fromLanguage(Language.RUST);
412
- const rustChunks = rustTransformer.transform(rustCodeDocument);
413
- // All languages in the Language enum are now fully supported
414
- ```
415
-
416
- ### Patch Changes
417
-
418
- - Add support for PHP in Language enum
419
- ([#12124](https://github.com/mastra-ai/mastra/pull/12124))
420
- 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.
421
- 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.).
422
- **Before:**
423
-
424
- ```typescript
425
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
426
-
427
- const transformer = RecursiveCharacterTransformer.fromLanguage(Language.PHP);
428
- const chunks = transformer.transform(phpCodeDocument);
429
- // Throws: "Language PHP is not supported!"
430
- ```
431
-
432
- **After:**
433
-
434
- ```typescript
435
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
436
-
437
- const transformer = RecursiveCharacterTransformer.fromLanguage(Language.PHP);
438
- const chunks = transformer.transform(phpCodeDocument);
439
- // Successfully chunks PHP code at namespace, class, function boundaries
440
- ```
441
-
442
- Fixes the issue where using `Language.PHP` would throw "Language PHP is not supported!" error.
443
-
444
- - 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)]:
445
- - @mastra/core@1.1.0
446
-
447
- ## 2.1.0-alpha.0
448
-
449
- ### Minor Changes
450
-
451
- - Added support for 20 additional languages in code chunking ([#12154](https://github.com/mastra-ai/mastra/pull/12154))
452
-
453
- 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.
454
-
455
- **Newly supported languages:**
456
- - GO, JAVA, KOTLIN, JS, PYTHON, RUBY, RUST, SCALA, SWIFT (popular programming languages)
457
- - HTML, SOL (Solidity), CSHARP, COBOL, LUA, PERL, HASKELL, ELIXIR, POWERSHELL (additional languages)
458
- - PROTO (Protocol Buffers), RST (reStructuredText) (data/documentation formats)
459
-
460
- Each language has been configured with appropriate separators based on its syntax patterns (modules, classes, functions, control structures) to enable semantic code chunking.
461
-
462
- **Before:**
463
-
464
- ```typescript
465
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
466
-
467
- // These would all throw "Language X is not supported!" errors
468
- const goTransformer = RecursiveCharacterTransformer.fromLanguage(Language.GO);
469
- const pythonTransformer = RecursiveCharacterTransformer.fromLanguage(Language.PYTHON);
470
- const rustTransformer = RecursiveCharacterTransformer.fromLanguage(Language.RUST);
471
- ```
472
-
473
- **After:**
474
-
475
- ```typescript
476
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
477
-
478
- // All languages now work seamlessly
479
- const goTransformer = RecursiveCharacterTransformer.fromLanguage(Language.GO);
480
- const goChunks = goTransformer.transform(goCodeDocument);
481
-
482
- const pythonTransformer = RecursiveCharacterTransformer.fromLanguage(Language.PYTHON);
483
- const pythonChunks = pythonTransformer.transform(pythonCodeDocument);
484
-
485
- const rustTransformer = RecursiveCharacterTransformer.fromLanguage(Language.RUST);
486
- const rustChunks = rustTransformer.transform(rustCodeDocument);
487
- // All languages in the Language enum are now fully supported
488
- ```
489
-
490
- ### Patch Changes
491
-
492
- - Add support for PHP in Language enum
493
- ([#12124](https://github.com/mastra-ai/mastra/pull/12124))
494
- 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.
495
- 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.).
496
- **Before:**
497
-
498
- ```typescript
499
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
500
-
501
- const transformer = RecursiveCharacterTransformer.fromLanguage(Language.PHP);
502
- const chunks = transformer.transform(phpCodeDocument);
503
- // Throws: "Language PHP is not supported!"
504
- ```
505
-
506
- **After:**
507
-
508
- ```typescript
509
- import { RecursiveCharacterTransformer, Language } from '@mastra/rag';
510
-
511
- const transformer = RecursiveCharacterTransformer.fromLanguage(Language.PHP);
512
- const chunks = transformer.transform(phpCodeDocument);
513
- // Successfully chunks PHP code at namespace, class, function boundaries
514
- ```
515
-
516
- Fixes the issue where using `Language.PHP` would throw "Language PHP is not supported!" error.
517
-
518
- - 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)]:
519
- - @mastra/core@1.1.0-alpha.0
520
-
521
- ## 2.0.0
522
-
523
- ### Major Changes
524
-
525
- - Refactor workflow and tool types to remove Zod-specific constraints ([#11814](https://github.com/mastra-ai/mastra/pull/11814))
526
-
527
- 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.
528
-
529
- **Workflow Changes:**
530
- - Removed `z.ZodObject<any>` and `z.ZodType<any>` constraints from all workflow generic types
531
- - Updated method signatures to use `TInput` and `TState` directly instead of `z.infer<TInput>` and `z.infer<TState>`
532
- - Aligned conditional types across all workflow implementations using `TInput extends unknown` pattern
533
- - Fixed `TSteps` generic to properly use `TEngineType` instead of `any`
534
-
535
- **Tool Changes:**
536
- - Removed Zod schema constraints from `ToolExecutionContext` and related interfaces
537
- - Simplified type parameters from `TSuspendSchema extends ZodLikeSchema` to `TSuspend` and `TResume`
538
- - Updated tool execution context types to use generic types
539
-
540
- **Type Utilities:**
541
- - Refactored type helpers to work with generic schemas instead of Zod-specific types
542
- - Updated type extraction utilities for better compatibility
543
-
544
- This change maintains backward compatibility while improving type consistency and preparing for Zod v4 support across all affected packages.
545
-
546
- - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
547
-
548
- - Rename RuntimeContext to RequestContext ([#9511](https://github.com/mastra-ai/mastra/pull/9511))
549
-
550
- - Remove deprecated vector prompts and cohere provider from code ([#9596](https://github.com/mastra-ai/mastra/pull/9596))
551
-
552
- - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
553
-
554
- ### Minor Changes
555
-
556
- - Add schema-driven metadata extraction with Zod support ([#11833](https://github.com/mastra-ai/mastra/pull/11833))
557
-
558
- 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.
559
- - Extract domain-specific metadata using your own Zod schemas (e.g., product details, legal entities, sentiment)
560
- - Customize extraction behavior with your own LLM model and instructions
561
- - Organize extracted data by nesting it under custom metadata keys
562
- - Existing extractors (title, summary, keywords, questions) remain unchanged and fully compatible
563
-
564
- **Before** (limited to built-in extractors):
565
-
566
- ```typescript
567
- await document.extractMetadata({
568
- extract: {
569
- title: true,
570
- summary: true,
571
- },
572
- });
573
- ```
574
-
575
- **After** (with custom Zod schema):
576
-
577
- ```typescript
578
- import { z } from 'zod';
579
-
580
- const productSchema = z.object({
581
- name: z.string(),
582
- price: z.number(),
583
- category: z.string(),
584
- });
585
-
586
- await document.extractMetadata({
587
- extract: {
588
- title: true,
589
- schema: {
590
- schema: productSchema,
591
- instructions: 'Extract product details from the document',
592
- metadataKey: 'product',
593
- },
594
- },
595
- });
596
- ```
597
-
598
- With `metadataKey`, extracted data is nested under the key:
599
-
600
- ```typescript
601
- {
602
- title: "Product Document",
603
- summary: "A comprehensive guide",
604
- product: {
605
- name: "Wireless Headphones",
606
- price: 149.99,
607
- category: "Electronics"
608
- }
609
- }
610
- ```
611
-
612
- Without `metadataKey`, extracted data is returned inline:
613
-
614
- ```typescript
615
- {
616
- title: "Product Document",
617
- summary: "A comprehensive guide",
618
- name: "Wireless Headphones",
619
- price: 149.99,
620
- category: "Electronics"
621
- }
622
- ```
623
-
624
- Fixes #11799
625
-
626
- - Update peer dependencies to match core package version bump (1.0.0) ([#9596](https://github.com/mastra-ai/mastra/pull/9596))
627
-
628
- - Add dynamic vectorStore resolver support for multi-tenant applications ([#11542](https://github.com/mastra-ai/mastra/pull/11542))
629
-
630
- 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.
631
-
632
- Also improves providerOptions type safety by using MastraEmbeddingOptions types instead of a generic Record type.
633
-
634
- - Update peer dependencies to match core package version bump (1.0.0) ([#9587](https://github.com/mastra-ai/mastra/pull/9587))
635
-
636
- - Renamed `keepSeparator` parameter to `separatorPosition` with a cleaner type. ([#11802](https://github.com/mastra-ai/mastra/pull/11802))
637
-
638
- 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).
639
-
640
- **Migration**
641
-
642
- ```typescript
643
- // Before
644
- await doc.chunk({
645
- strategy: 'character',
646
- separator: '.',
647
- keepSeparator: true, // or 'start'
648
- });
649
-
650
- await doc.chunk({
651
- strategy: 'character',
652
- separator: '.',
653
- keepSeparator: 'end',
654
- });
655
-
656
- await doc.chunk({
657
- strategy: 'character',
658
- separator: '.',
659
- keepSeparator: false, // or omit entirely
660
- });
661
-
662
- // After
663
- await doc.chunk({
664
- strategy: 'character',
665
- separator: '.',
666
- separatorPosition: 'start',
667
- });
668
-
669
- await doc.chunk({
670
- strategy: 'character',
671
- separator: '.',
672
- separatorPosition: 'end',
673
- });
674
-
675
- await doc.chunk({
676
- strategy: 'character',
677
- separator: '.',
678
- // omit separatorPosition to discard separator
679
- });
680
- ```
681
-
682
- ### Patch Changes
683
-
684
- - dependencies updates: ([#10133](https://github.com/mastra-ai/mastra/pull/10133))
685
- - Updated dependency [`js-tiktoken@^1.0.21` ↗︎](https://www.npmjs.com/package/js-tiktoken/v/1.0.21) (from `^1.0.20`, in `dependencies`)
686
-
687
- - dependencies updates: ([#9842](https://github.com/mastra-ai/mastra/pull/9842))
688
- - Updated dependency [`@paralleldrive/cuid2@^2.3.1` ↗︎](https://www.npmjs.com/package/@paralleldrive/cuid2/v/2.3.1) (from `^2.2.2`, in `dependencies`)
689
-
690
- - Add embedded documentation support for Mastra packages ([#11472](https://github.com/mastra-ai/mastra/pull/11472))
691
-
692
- 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`.
693
-
694
- Each package includes:
695
- - **SKILL.md** - Entry point explaining the package's purpose and capabilities
696
- - **SOURCE_MAP.json** - Machine-readable index mapping exports to types and implementation files
697
- - **Topic folders** - Conceptual documentation organized by feature area
698
-
699
- 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.
700
-
701
- - Add maxSize support for HTML chunking strategies ([#10654](https://github.com/mastra-ai/mastra/pull/10654))
702
-
703
- 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.
704
-
705
- **Changes:**
706
- - Added `maxSize` support to `headers` strategy - applies `RecursiveCharacterTransformer` after header-based splitting
707
- - Added `maxSize` support to `sections` strategy - applies `RecursiveCharacterTransformer` after section-based splitting
708
- - Fixed `splitHtmlByHeaders` content extraction bug - changed from broken `nextElementSibling` to working `parentNode.childNodes` approach
709
- - Added comprehensive test coverage including integration test with real arXiv paper
710
-
711
- **Usage:**
712
-
713
- ```typescript
714
- import { MDocument } from '@mastra/rag';
715
-
716
- const doc = MDocument.fromHTML(htmlContent);
717
-
718
- const chunks = await doc.chunk({
719
- strategy: 'html',
720
- headers: [
721
- ['h1', 'Header 1'],
722
- ['h2', 'Header 2'],
723
- ['h3', 'Header 3'],
724
- ],
725
- maxSize: 512, // Control chunk size
726
- overlap: 50, // Optional overlap for context
727
- });
728
- ```
729
-
730
- **Results from real arXiv paper test:**
731
- - Without maxSize: 22 chunks, max 45,531 chars (too big!)
732
- - With maxSize=512: 499 chunks, max 512 chars (properly sized)
733
-
734
- Fixes #7942
735
-
736
- - Add table support to markdown transformer ([#10487](https://github.com/mastra-ai/mastra/pull/10487))
737
-
738
- 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.
739
-
740
- **Changes:**
741
- - Updated `MarkdownHeaderTransformer` to detect and preserve markdown tables during chunking
742
- - Tables are identified by lines containing pipe characters (`|`)
743
- - Tables are kept together as a single block, preventing splits that would break table structure
744
- - Added comprehensive test coverage for table handling in various scenarios
745
- - Works with both simple and complex tables, including multi-row tables and tables with different formatting
746
-
747
- **Usage:**
748
-
749
- ```typescript
750
- import { MDocument } from '@mastra/rag';
751
-
752
- const doc = MDocument.fromMarkdown(`
753
- # Data Report
754
-
755
- ## Results
756
-
757
- | Name | Score | Status |
758
- |------|-------|--------|
759
- | Alice | 95 | Pass |
760
- | Bob | 87 | Pass |
761
- | Carol | 78 | Pass |
762
-
763
- ## Summary
764
-
765
- The results show...
766
- `);
767
-
768
- const chunks = await doc.chunk({
769
- strategy: 'markdown',
770
- headers: [
771
- ['#', 'title'],
772
- ['##', 'section'],
773
- ],
774
- });
775
-
776
- // Tables will now be preserved intact within chunks
777
- ```
778
-
779
- - 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))
780
-
781
- - Add support for AI SDK v6 (LanguageModelV3) ([#11191](https://github.com/mastra-ai/mastra/pull/11191))
782
-
783
- Agents can now use `LanguageModelV3` models from AI SDK v6 beta providers like `@ai-sdk/openai@^3.0.0-beta`.
784
-
785
- **New features:**
786
- - 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
787
-
788
- **Backward compatible:** All existing V1 and V2 models continue to work unchanged.
789
-
790
- - Update peer dependencies to match core package version bump (1.0.0) ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
791
-
792
- - Update tool execution signature ([#9587](https://github.com/mastra-ai/mastra/pull/9587))
793
-
794
- Consolidated the 3 different execution contexts to one
795
-
796
- ```typescript
797
- // before depending on the context the tool was executed in
798
- tool.execute({ context: data });
799
- tool.execute({ context: { inputData: data } });
800
- tool.execute(data);
801
-
802
- // now, for all contexts
803
- tool.execute(data, context);
804
- ```
805
-
806
- **Before:**
807
-
808
- ```typescript
809
- inputSchema: z.object({ something: z.string() }),
810
- execute: async ({ context, tracingContext, runId, ... }) => {
811
- return doSomething(context.string);
812
- }
813
- ```
814
-
815
- **After:**
816
-
817
- ```typescript
818
- inputSchema: z.object({ something: z.string() }),
819
- execute: async (inputData, context) => {
820
- const { agent, mcp, workflow, ...sharedContext } = context
821
-
822
- // context that only an agent would get like toolCallId, messages, suspend, resume, etc
823
- if (agent) {
824
- doSomething(inputData.something, agent)
825
- // context that only a workflow would get like runId, state, suspend, resume, etc
826
- } else if (workflow) {
827
- doSomething(inputData.something, workflow)
828
- // context that only a workflow would get like "extra", "elicitation"
829
- } else if (mcp) {
830
- doSomething(inputData.something, mcp)
831
- } else {
832
- // Running a tool in no execution context
833
- return doSomething(inputData.something);
834
- }
835
- }
836
- ```
837
-
838
- - Remove format references from rag package ([#9646](https://github.com/mastra-ai/mastra/pull/9646))
839
-
840
- - 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))
841
-
842
- - 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)]:
843
- - @mastra/core@1.0.0
844
-
845
- ## 2.0.0-beta.7
846
-
847
- ### Major Changes
848
-
849
- - Refactor workflow and tool types to remove Zod-specific constraints ([#11814](https://github.com/mastra-ai/mastra/pull/11814))
850
-
851
- 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.
852
-
853
- **Workflow Changes:**
854
- - Removed `z.ZodObject<any>` and `z.ZodType<any>` constraints from all workflow generic types
855
- - Updated method signatures to use `TInput` and `TState` directly instead of `z.infer<TInput>` and `z.infer<TState>`
856
- - Aligned conditional types across all workflow implementations using `TInput extends unknown` pattern
857
- - Fixed `TSteps` generic to properly use `TEngineType` instead of `any`
858
-
859
- **Tool Changes:**
860
- - Removed Zod schema constraints from `ToolExecutionContext` and related interfaces
861
- - Simplified type parameters from `TSuspendSchema extends ZodLikeSchema` to `TSuspend` and `TResume`
862
- - Updated tool execution context types to use generic types
863
-
864
- **Type Utilities:**
865
- - Refactored type helpers to work with generic schemas instead of Zod-specific types
866
- - Updated type extraction utilities for better compatibility
867
-
868
- This change maintains backward compatibility while improving type consistency and preparing for Zod v4 support across all affected packages.
869
-
870
- ### Minor Changes
871
-
872
- - Add schema-driven metadata extraction with Zod support ([#11833](https://github.com/mastra-ai/mastra/pull/11833))
873
-
874
- 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.
875
- - Extract domain-specific metadata using your own Zod schemas (e.g., product details, legal entities, sentiment)
876
- - Customize extraction behavior with your own LLM model and instructions
877
- - Organize extracted data by nesting it under custom metadata keys
878
- - Existing extractors (title, summary, keywords, questions) remain unchanged and fully compatible
879
-
880
- **Before** (limited to built-in extractors):
881
-
882
- ```typescript
883
- await document.extractMetadata({
884
- extract: {
885
- title: true,
886
- summary: true,
887
- },
888
- });
889
- ```
890
-
891
- **After** (with custom Zod schema):
892
-
893
- ```typescript
894
- import { z } from 'zod';
895
-
896
- const productSchema = z.object({
897
- name: z.string(),
898
- price: z.number(),
899
- category: z.string(),
900
- });
901
-
902
- await document.extractMetadata({
903
- extract: {
904
- title: true,
905
- schema: {
906
- schema: productSchema,
907
- instructions: 'Extract product details from the document',
908
- metadataKey: 'product',
909
- },
910
- },
911
- });
912
- ```
913
-
914
- With `metadataKey`, extracted data is nested under the key:
915
-
916
- ```typescript
917
- {
918
- title: "Product Document",
919
- summary: "A comprehensive guide",
920
- product: {
921
- name: "Wireless Headphones",
922
- price: 149.99,
923
- category: "Electronics"
924
- }
925
- }
926
- ```
927
-
928
- Without `metadataKey`, extracted data is returned inline:
929
-
930
- ```typescript
931
- {
932
- title: "Product Document",
933
- summary: "A comprehensive guide",
934
- name: "Wireless Headphones",
935
- price: 149.99,
936
- category: "Electronics"
937
- }
938
- ```
939
-
940
- Fixes #11799
941
-
942
- - Renamed `keepSeparator` parameter to `separatorPosition` with a cleaner type. ([#11802](https://github.com/mastra-ai/mastra/pull/11802))
943
-
944
- 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).
945
-
946
- **Migration**
947
-
948
- ```typescript
949
- // Before
950
- await doc.chunk({
951
- strategy: 'character',
952
- separator: '.',
953
- keepSeparator: true, // or 'start'
954
- });
955
-
956
- await doc.chunk({
957
- strategy: 'character',
958
- separator: '.',
959
- keepSeparator: 'end',
960
- });
961
-
962
- await doc.chunk({
963
- strategy: 'character',
964
- separator: '.',
965
- keepSeparator: false, // or omit entirely
966
- });
967
-
968
- // After
969
- await doc.chunk({
970
- strategy: 'character',
971
- separator: '.',
972
- separatorPosition: 'start',
973
- });
974
-
975
- await doc.chunk({
976
- strategy: 'character',
977
- separator: '.',
978
- separatorPosition: 'end',
979
- });
980
-
981
- await doc.chunk({
982
- strategy: 'character',
983
- separator: '.',
984
- // omit separatorPosition to discard separator
985
- });
986
- ```
987
-
988
- ### Patch Changes
989
-
990
- - 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)]:
991
- - @mastra/core@1.0.0-beta.22
992
-
993
- ## 2.0.0-beta.6
994
-
995
- ### Patch Changes
996
-
997
- - 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))
998
-
999
- - 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)]:
1000
- - @mastra/core@1.0.0-beta.21
1001
-
1002
- ## 2.0.0-beta.5
1003
-
1004
- ### Minor Changes
1005
-
1006
- - Add dynamic vectorStore resolver support for multi-tenant applications ([#11542](https://github.com/mastra-ai/mastra/pull/11542))
1007
-
1008
- 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.
1009
-
1010
- Also improves providerOptions type safety by using MastraEmbeddingOptions types instead of a generic Record type.
1011
-
1012
- ### Patch Changes
1013
-
1014
- - dependencies updates: ([#10133](https://github.com/mastra-ai/mastra/pull/10133))
1015
- - Updated dependency [`js-tiktoken@^1.0.21` ↗︎](https://www.npmjs.com/package/js-tiktoken/v/1.0.21) (from `^1.0.20`, in `dependencies`)
1016
-
1017
- - Add embedded documentation support for Mastra packages ([#11472](https://github.com/mastra-ai/mastra/pull/11472))
1018
-
1019
- 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`.
1020
-
1021
- Each package includes:
1022
- - **SKILL.md** - Entry point explaining the package's purpose and capabilities
1023
- - **SOURCE_MAP.json** - Machine-readable index mapping exports to types and implementation files
1024
- - **Topic folders** - Conceptual documentation organized by feature area
1025
-
1026
- 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.
1027
-
1028
- - 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)]:
1029
- - @mastra/core@1.0.0-beta.20
1030
-
1031
- ## 2.0.0-beta.4
1032
-
1033
- ### Patch Changes
1034
-
1035
- - Add support for AI SDK v6 (LanguageModelV3) ([#11191](https://github.com/mastra-ai/mastra/pull/11191))
1036
-
1037
- Agents can now use `LanguageModelV3` models from AI SDK v6 beta providers like `@ai-sdk/openai@^3.0.0-beta`.
1038
-
1039
- **New features:**
1040
- - 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
1041
-
1042
- **Backward compatible:** All existing V1 and V2 models continue to work unchanged.
1043
-
1044
- - 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)]:
1045
- - @mastra/core@1.0.0-beta.14
1046
-
1047
- ## 2.0.0-beta.3
1048
-
1049
- ### Patch Changes
1050
-
1051
- - Add maxSize support for HTML chunking strategies ([#10654](https://github.com/mastra-ai/mastra/pull/10654))
1052
-
1053
- 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.
1054
-
1055
- **Changes:**
1056
- - Added `maxSize` support to `headers` strategy - applies `RecursiveCharacterTransformer` after header-based splitting
1057
- - Added `maxSize` support to `sections` strategy - applies `RecursiveCharacterTransformer` after section-based splitting
1058
- - Fixed `splitHtmlByHeaders` content extraction bug - changed from broken `nextElementSibling` to working `parentNode.childNodes` approach
1059
- - Added comprehensive test coverage including integration test with real arXiv paper
1060
-
1061
- **Usage:**
1062
-
1063
- ```typescript
1064
- import { MDocument } from '@mastra/rag';
1065
-
1066
- const doc = MDocument.fromHTML(htmlContent);
1067
-
1068
- const chunks = await doc.chunk({
1069
- strategy: 'html',
1070
- headers: [
1071
- ['h1', 'Header 1'],
1072
- ['h2', 'Header 2'],
1073
- ['h3', 'Header 3'],
1074
- ],
1075
- maxSize: 512, // Control chunk size
1076
- overlap: 50, // Optional overlap for context
1077
- });
1078
- ```
1079
-
1080
- **Results from real arXiv paper test:**
1081
- - Without maxSize: 22 chunks, max 45,531 chars (too big!)
1082
- - With maxSize=512: 499 chunks, max 512 chars (properly sized)
1083
-
1084
- Fixes #7942
1085
-
1086
- - 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)]:
1087
- - @mastra/core@1.0.0-beta.6
1088
-
1089
- ## 2.0.0-beta.2
1090
-
1091
- ### Patch Changes
1092
-
1093
- - Add table support to markdown transformer ([#10487](https://github.com/mastra-ai/mastra/pull/10487))
1094
-
1095
- 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.
1096
-
1097
- **Changes:**
1098
- - Updated `MarkdownHeaderTransformer` to detect and preserve markdown tables during chunking
1099
- - Tables are identified by lines containing pipe characters (`|`)
1100
- - Tables are kept together as a single block, preventing splits that would break table structure
1101
- - Added comprehensive test coverage for table handling in various scenarios
1102
- - Works with both simple and complex tables, including multi-row tables and tables with different formatting
1103
-
1104
- **Usage:**
1105
-
1106
- ```typescript
1107
- import { MDocument } from '@mastra/rag';
1108
-
1109
- const doc = MDocument.fromMarkdown(`
1110
- # Data Report
1111
-
1112
- ## Results
1113
-
1114
- | Name | Score | Status |
1115
- |------|-------|--------|
1116
- | Alice | 95 | Pass |
1117
- | Bob | 87 | Pass |
1118
- | Carol | 78 | Pass |
1119
-
1120
- ## Summary
1121
-
1122
- The results show...
1123
- `);
1124
-
1125
- const chunks = await doc.chunk({
1126
- strategy: 'markdown',
1127
- headers: [
1128
- ['#', 'title'],
1129
- ['##', 'section'],
1130
- ],
1131
- });
1132
-
1133
- // Tables will now be preserved intact within chunks
1134
- ```
1135
-
1136
- - 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))
1137
-
1138
- - 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)]:
1139
- - @mastra/core@1.0.0-beta.5
1140
-
1141
- ## 2.0.0-beta.1
1142
-
1143
- ### Patch Changes
1144
-
1145
- - dependencies updates: ([#9842](https://github.com/mastra-ai/mastra/pull/9842))
1146
- - Updated dependency [`@paralleldrive/cuid2@^2.3.1` ↗︎](https://www.npmjs.com/package/@paralleldrive/cuid2/v/2.3.1) (from `^2.2.2`, in `dependencies`)
1147
- - 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)]:
1148
- - @mastra/core@1.0.0-beta.3
1149
-
1150
- ## 2.0.0-beta.0
1151
-
1152
- ### Major Changes
1153
-
1154
- - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
1155
-
1156
- - Rename RuntimeContext to RequestContext ([#9511](https://github.com/mastra-ai/mastra/pull/9511))
1157
-
1158
- - Remove deprecated vector prompts and cohere provider from code ([#9596](https://github.com/mastra-ai/mastra/pull/9596))
1159
-
1160
- - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
1161
-
1162
- ### Minor Changes
1163
-
1164
- - Update peer dependencies to match core package version bump (1.0.0) ([#9596](https://github.com/mastra-ai/mastra/pull/9596))
1165
-
1166
- - Update peer dependencies to match core package version bump (1.0.0) ([#9587](https://github.com/mastra-ai/mastra/pull/9587))
1167
-
1168
- ### Patch Changes
1169
-
1170
- - Update peer dependencies to match core package version bump (1.0.0) ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
1171
-
1172
- - Update tool execution signature ([#9587](https://github.com/mastra-ai/mastra/pull/9587))
1173
-
1174
- Consolidated the 3 different execution contexts to one
1175
-
1176
- ```typescript
1177
- // before depending on the context the tool was executed in
1178
- tool.execute({ context: data });
1179
- tool.execute({ context: { inputData: data } });
1180
- tool.execute(data);
1181
-
1182
- // now, for all contexts
1183
- tool.execute(data, context);
1184
- ```
1185
-
1186
- **Before:**
1187
-
1188
- ```typescript
1189
- inputSchema: z.object({ something: z.string() }),
1190
- execute: async ({ context, tracingContext, runId, ... }) => {
1191
- return doSomething(context.string);
1192
- }
1193
- ```
1194
-
1195
- **After:**
1196
-
1197
- ```typescript
1198
- inputSchema: z.object({ something: z.string() }),
1199
- execute: async (inputData, context) => {
1200
- const { agent, mcp, workflow, ...sharedContext } = context
1201
-
1202
- // context that only an agent would get like toolCallId, messages, suspend, resume, etc
1203
- if (agent) {
1204
- doSomething(inputData.something, agent)
1205
- // context that only a workflow would get like runId, state, suspend, resume, etc
1206
- } else if (workflow) {
1207
- doSomething(inputData.something, workflow)
1208
- // context that only a workflow would get like "extra", "elicitation"
1209
- } else if (mcp) {
1210
- doSomething(inputData.something, mcp)
1211
- } else {
1212
- // Running a tool in no execution context
1213
- return doSomething(inputData.something);
1214
- }
1215
- }
1216
- ```
1217
-
1218
- - Remove format references from rag package ([#9646](https://github.com/mastra-ai/mastra/pull/9646))
1219
-
1220
- - 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)]:
1221
- - @mastra/core@1.0.0-beta.0
1222
-
1223
- ## 1.3.2
1224
-
1225
- ### Patch Changes
1226
-
1227
- - Update peerdeps to 0.23.0-0 ([#9043](https://github.com/mastra-ai/mastra/pull/9043))
1228
-
1229
- - 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)]:
1230
- - @mastra/core@0.22.0
1231
-
1232
- ## 1.3.2-alpha.0
1233
-
1234
- ### Patch Changes
1235
-
1236
- - Update peerdeps to 0.23.0-0 ([#9043](https://github.com/mastra-ai/mastra/pull/9043))
1237
-
1238
- - 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)]:
1239
- - @mastra/core@0.22.0-alpha.1
1240
-
1241
- ## 1.3.1
1242
-
1243
- ### Patch Changes
1244
-
1245
- - Update peer dependencies to match core package version bump (0.21.0) ([#8619](https://github.com/mastra-ai/mastra/pull/8619))
1246
-
1247
- - Update peer dependencies to match core package version bump (0.21.0) ([#8557](https://github.com/mastra-ai/mastra/pull/8557))
1248
-
1249
- - Update peer dependencies to match core package version bump (0.21.0) ([#8626](https://github.com/mastra-ai/mastra/pull/8626))
1250
-
1251
- - Update peer dependencies to match core package version bump (0.21.0) ([#8686](https://github.com/mastra-ai/mastra/pull/8686))
1252
-
1253
- - 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)]:
1254
- - @mastra/core@0.21.0
1255
-
1256
- ## 1.3.1-alpha.0
1257
-
1258
- ### Patch Changes
1259
-
1260
- - Update peer dependencies to match core package version bump (0.21.0) ([#8619](https://github.com/mastra-ai/mastra/pull/8619))
1261
-
1262
- - Update peer dependencies to match core package version bump (0.21.0) ([#8557](https://github.com/mastra-ai/mastra/pull/8557))
1263
-
1264
- - Update peer dependencies to match core package version bump (0.21.0) ([#8626](https://github.com/mastra-ai/mastra/pull/8626))
1265
-
1266
- - Update peer dependencies to match core package version bump (0.21.0) ([#8686](https://github.com/mastra-ai/mastra/pull/8686))
1267
-
1268
- - 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)]:
1269
- - @mastra/core@0.21.0-alpha.0
1270
-
1271
- ## 1.3.0
1272
-
1273
- ### Minor Changes
1274
-
1275
- - 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))
1276
-
1277
- ### Patch Changes
1278
-
1279
- - 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)]:
1280
- - @mastra/core@0.20.0
1281
-
1282
- ## 1.3.0-alpha.0
1283
-
1284
- ### Minor Changes
1285
-
1286
- - 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))
1287
-
1288
- ### Patch Changes
1289
-
1290
- - 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)]:
1291
- - @mastra/core@0.20.0-alpha.0
1292
-
1293
- ## 1.2.7
1294
-
1295
- ### Patch Changes
1296
-
1297
- - Update peer deps ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
1298
-
1299
- - 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)]:
1300
- - @mastra/core@0.19.0
1301
-
1302
- ## 1.2.7-alpha.0
1303
-
1304
- ### Patch Changes
1305
-
1306
- - Update peer deps ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
1307
-
1308
- - 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)]:
1309
- - @mastra/core@0.19.0-alpha.1
1310
-
1311
- ## 1.2.6
1312
-
1313
- ### Patch Changes
1314
-
1315
- - dependencies updates: ([#8011](https://github.com/mastra-ai/mastra/pull/8011))
1316
- - 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`)
1317
-
1318
- - Update Peerdeps for packages based on core minor bump ([#8025](https://github.com/mastra-ai/mastra/pull/8025))
1319
-
1320
- - 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)]:
1321
- - @mastra/core@0.18.0
1322
-
1323
- ## 1.2.6-alpha.0
1324
-
1325
- ### Patch Changes
1326
-
1327
- - dependencies updates: ([#8011](https://github.com/mastra-ai/mastra/pull/8011))
1328
- - 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`)
1329
-
1330
- - Update Peerdeps for packages based on core minor bump ([#8025](https://github.com/mastra-ai/mastra/pull/8025))
1331
-
1332
- - 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)]:
1333
- - @mastra/core@0.18.0-alpha.2
1334
-
1335
- ## 1.2.5
1336
-
1337
- ### Patch Changes
1338
-
1339
- - dependencies updates: ([#7753](https://github.com/mastra-ai/mastra/pull/7753))
1340
- - 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`)
1341
-
1342
- - dependencies updates: ([#7801](https://github.com/mastra-ai/mastra/pull/7801))
1343
- - 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`)
1344
-
1345
- - Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
1346
-
1347
- - fix(rag): rerank compatibility with AI SDK V2 models ([#7828](https://github.com/mastra-ai/mastra/pull/7828))
1348
-
1349
- - 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)]:
1350
- - @mastra/core@0.17.0
1351
-
1352
- ## 1.2.5-alpha.1
1353
-
1354
- ### Patch Changes
1355
-
1356
- - dependencies updates: ([#7801](https://github.com/mastra-ai/mastra/pull/7801))
1357
- - 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`)
1358
-
1359
- - Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
1360
-
1361
- - fix(rag): rerank compatibility with AI SDK V2 models ([#7828](https://github.com/mastra-ai/mastra/pull/7828))
1362
-
1363
- - 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)]:
1364
- - @mastra/core@0.17.0-alpha.3
1365
-
1366
- ## 1.2.5-alpha.0
1367
-
1368
- ### Patch Changes
1369
-
1370
- - dependencies updates: ([#7753](https://github.com/mastra-ai/mastra/pull/7753))
1371
- - 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`)
1372
- - 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)]:
1373
- - @mastra/core@0.16.4-alpha.0
1374
-
1375
- ## 1.2.4
1376
-
1377
- ### Patch Changes
1378
-
1379
- - 376913a: Update peerdeps
1380
- - Updated dependencies [8fbf79e]
1381
- - Updated dependencies [fd83526]
1382
- - Updated dependencies [d0b90ab]
1383
- - Updated dependencies [6f5eb7a]
1384
- - Updated dependencies [a01cf14]
1385
- - Updated dependencies [a9e50ee]
1386
- - Updated dependencies [5397eb4]
1387
- - Updated dependencies [c9f4e4a]
1388
- - Updated dependencies [0acbc80]
1389
- - @mastra/core@0.16.0
1390
-
1391
- ## 1.2.4-alpha.0
1392
-
1393
- ### Patch Changes
1394
-
1395
- - 376913a: Update peerdeps
1396
- - Updated dependencies [8fbf79e]
1397
- - @mastra/core@0.16.0-alpha.1
1398
-
1399
- ## 1.2.3
1400
-
1401
- ### Patch Changes
1402
-
1403
- - de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
1404
- - 29de0e1: MastraEmbeddingModel and ts hack
1405
- - f0dfcac: updated core peerdep
1406
- - b415a4e: added providerOptions to createVectorQueryTool and createGraphRAGTool
1407
- - 6ac697e: improveEmbeddingModelStuff
1408
- - Updated dependencies [ab48c97]
1409
- - Updated dependencies [85ef90b]
1410
- - Updated dependencies [aedbbfa]
1411
- - Updated dependencies [ff89505]
1412
- - Updated dependencies [637f323]
1413
- - Updated dependencies [de3cbc6]
1414
- - Updated dependencies [c19bcf7]
1415
- - Updated dependencies [4474d04]
1416
- - Updated dependencies [183dc95]
1417
- - Updated dependencies [a1111e2]
1418
- - Updated dependencies [b42a961]
1419
- - Updated dependencies [61debef]
1420
- - Updated dependencies [9beaeff]
1421
- - Updated dependencies [29de0e1]
1422
- - Updated dependencies [f643c65]
1423
- - Updated dependencies [00c74e7]
1424
- - Updated dependencies [fef7375]
1425
- - Updated dependencies [e3d8fea]
1426
- - Updated dependencies [45e4d39]
1427
- - Updated dependencies [9eee594]
1428
- - Updated dependencies [7149d8d]
1429
- - Updated dependencies [822c2e8]
1430
- - Updated dependencies [979912c]
1431
- - Updated dependencies [7dcf4c0]
1432
- - Updated dependencies [4106a58]
1433
- - Updated dependencies [ad78bfc]
1434
- - Updated dependencies [0302f50]
1435
- - Updated dependencies [6ac697e]
1436
- - Updated dependencies [74db265]
1437
- - Updated dependencies [0ce418a]
1438
- - Updated dependencies [af90672]
1439
- - Updated dependencies [8387952]
1440
- - Updated dependencies [7f3b8da]
1441
- - Updated dependencies [905352b]
1442
- - Updated dependencies [599d04c]
1443
- - Updated dependencies [56041d0]
1444
- - Updated dependencies [3412597]
1445
- - Updated dependencies [5eca5d2]
1446
- - Updated dependencies [f2cda47]
1447
- - Updated dependencies [5de1555]
1448
- - Updated dependencies [cfd377a]
1449
- - Updated dependencies [1ed5a3e]
1450
- - @mastra/core@0.15.3
1451
-
1452
- ## 1.2.3-alpha.2
1453
-
1454
- ### Patch Changes
1455
-
1456
- - [#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
1457
-
1458
- - Updated dependencies [[`7149d8d`](https://github.com/mastra-ai/mastra/commit/7149d8d4bdc1edf0008e0ca9b7925eb0b8b60dbe)]:
1459
- - @mastra/core@0.15.3-alpha.7
1460
-
1461
- ## 1.2.3-alpha.1
1462
-
1463
- ### Patch Changes
1464
-
1465
- - [#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`.
1466
-
1467
- - Updated dependencies [[`85ef90b`](https://github.com/mastra-ai/mastra/commit/85ef90bb2cd4ae4df855c7ac175f7d392c55c1bf), [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e)]:
1468
- - @mastra/core@0.15.3-alpha.5
1469
-
1470
- ## 1.2.3-alpha.0
1471
-
1472
- ### Patch Changes
1473
-
1474
- - [#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
1475
-
1476
- - [#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
1477
-
1478
- - [#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
1479
-
1480
- - 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)]:
1481
- - @mastra/core@0.15.3-alpha.1
1482
-
1483
- ## 1.2.2
1484
-
1485
- ### Patch Changes
1486
-
1487
- - [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
1488
-
1489
- - Updated dependencies []:
1490
- - @mastra/core@0.15.2
1491
-
1492
- ## 1.2.1
1493
-
1494
- ### Patch Changes
1495
-
1496
- - [`95b2aa9`](https://github.com/mastra-ai/mastra/commit/95b2aa908230919e67efcac0d69005a2d5745298) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdeps @mastra/core
1497
-
1498
- - Updated dependencies []:
1499
- - @mastra/core@0.15.1
1500
-
1501
- ## 1.2.0
1502
-
1503
- ### Minor Changes
1504
-
1505
- - [#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
1506
-
1507
- - [#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
1508
-
1509
- ### Patch Changes
1510
-
1511
- - [#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
1512
-
1513
- - [#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
1514
-
1515
- - [#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
1516
-
1517
- - 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)]:
1518
- - @mastra/core@0.15.0
1519
-
1520
- ## 1.2.0-alpha.2
1521
-
1522
- ### Minor Changes
1523
-
1524
- - [#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
1525
-
1526
- ### Patch Changes
1527
-
1528
- - Updated dependencies [[`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c)]:
1529
- - @mastra/core@0.15.0-alpha.4
1530
-
1531
- ## 1.2.0-alpha.1
1532
-
1533
- ### Minor Changes
1534
-
1535
- - [#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
1536
-
1537
- ### Patch Changes
1538
-
1539
- - Updated dependencies []:
1540
- - @mastra/core@0.15.0-alpha.3
1541
-
1542
- ## 1.1.1-alpha.0
1543
-
1544
- ### Patch Changes
1545
-
1546
- - [#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
1547
-
1548
- - [#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
1549
-
1550
- - [#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
1551
-
1552
- - 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)]:
1553
- - @mastra/core@0.14.2-alpha.1
1554
-
1555
- ## 1.1.0
1556
-
1557
- ### Minor Changes
1558
-
1559
- - 03997ae: Update peer deps of core
1560
-
1561
- ### Patch Changes
1562
-
1563
- - 2454423: Agentic loop and streaming workflow: generateVNext and streamVNext
1564
- - Updated dependencies [227c7e6]
1565
- - Updated dependencies [12cae67]
1566
- - Updated dependencies [fd3a3eb]
1567
- - Updated dependencies [6faaee5]
1568
- - Updated dependencies [4232b14]
1569
- - Updated dependencies [a89de7e]
1570
- - Updated dependencies [5a37d0c]
1571
- - Updated dependencies [4bde0cb]
1572
- - Updated dependencies [cf4f357]
1573
- - Updated dependencies [ad888a2]
1574
- - Updated dependencies [481751d]
1575
- - Updated dependencies [2454423]
1576
- - Updated dependencies [194e395]
1577
- - Updated dependencies [a722c0b]
1578
- - Updated dependencies [c30bca8]
1579
- - Updated dependencies [3b5fec7]
1580
- - Updated dependencies [a8f129d]
1581
- - @mastra/core@0.14.0
1582
-
1583
- ## 1.1.0-alpha.1
1584
-
1585
- ### Minor Changes
1586
-
1587
- - 03997ae: Update peer deps of core
1588
-
1589
- ### Patch Changes
1590
-
1591
- - @mastra/core@0.14.0-alpha.7
1592
-
1593
- ## 1.0.9-alpha.0
1594
-
1595
- ### Patch Changes
1596
-
1597
- - a741dde: generateVNext plumbing
1598
- - Updated dependencies [0a7f675]
1599
- - Updated dependencies [12cae67]
1600
- - Updated dependencies [5a37d0c]
1601
- - Updated dependencies [4bde0cb]
1602
- - Updated dependencies [1a80071]
1603
- - Updated dependencies [36a3be8]
1604
- - Updated dependencies [361757b]
1605
- - Updated dependencies [2bb9955]
1606
- - Updated dependencies [2454423]
1607
- - Updated dependencies [a44d91e]
1608
- - Updated dependencies [dfb91e9]
1609
- - Updated dependencies [a741dde]
1610
- - Updated dependencies [7cb3fc0]
1611
- - Updated dependencies [195eabb]
1612
- - Updated dependencies [b78b95b]
1613
- - @mastra/core@0.14.0-alpha.4
1614
-
1615
- ## 1.0.8
1616
-
1617
- ### Patch Changes
1618
-
1619
- - 1be6004: Added semantic markdown chunking strategy.
1620
- - Updated dependencies [d5330bf]
1621
- - Updated dependencies [2e74797]
1622
- - Updated dependencies [8388649]
1623
- - Updated dependencies [a239d41]
1624
- - Updated dependencies [dd94a26]
1625
- - Updated dependencies [3ba6772]
1626
- - Updated dependencies [b5cf2a3]
1627
- - Updated dependencies [2fff911]
1628
- - Updated dependencies [b32c50d]
1629
- - Updated dependencies [63449d0]
1630
- - Updated dependencies [121a3f8]
1631
- - Updated dependencies [ec510e7]
1632
- - @mastra/core@0.13.2
1633
-
1634
- ## 1.0.8-alpha.0
1635
-
1636
- ### Patch Changes
1637
-
1638
- - 1be6004: Added semantic markdown chunking strategy.
1639
- - Updated dependencies [8388649]
1640
- - Updated dependencies [dd94a26]
1641
- - Updated dependencies [3ba6772]
1642
- - Updated dependencies [2fff911]
1643
- - @mastra/core@0.13.2-alpha.0
1644
-
1645
- ## 1.0.7
1646
-
1647
- ### Patch Changes
1648
-
1649
- - 351b36e: update evals and rag ai sdk package versions
1650
- - ccd519c: Add sentence chunking strategy and strategy-specific parameter validation for all existing strategies.
1651
- - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
1652
- - Updated dependencies [cb36de0]
1653
- - Updated dependencies [d0496e6]
1654
- - Updated dependencies [a82b851]
1655
- - Updated dependencies [ea0c5f2]
1656
- - Updated dependencies [41a0a0e]
1657
- - Updated dependencies [2871020]
1658
- - Updated dependencies [94f4812]
1659
- - Updated dependencies [e202b82]
1660
- - Updated dependencies [e00f6a0]
1661
- - Updated dependencies [4a406ec]
1662
- - Updated dependencies [b0e43c1]
1663
- - Updated dependencies [5d377e5]
1664
- - Updated dependencies [1fb812e]
1665
- - Updated dependencies [35c5798]
1666
- - @mastra/core@0.13.0
1667
-
1668
- ## 1.0.7-alpha.1
1669
-
1670
- ### Patch Changes
1671
-
1672
- - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
1673
- - Updated dependencies [cb36de0]
1674
- - Updated dependencies [a82b851]
1675
- - Updated dependencies [41a0a0e]
1676
- - Updated dependencies [2871020]
1677
- - Updated dependencies [4a406ec]
1678
- - Updated dependencies [5d377e5]
1679
- - @mastra/core@0.13.0-alpha.2
1680
-
1681
- ## 1.0.7-alpha.0
1682
-
1683
- ### Patch Changes
1684
-
1685
- - 351b36e: update evals and rag ai sdk package versions
1686
- - ccd519c: Add sentence chunking strategy and strategy-specific parameter validation for all existing strategies.
1687
- - Updated dependencies [ea0c5f2]
1688
- - Updated dependencies [b0e43c1]
1689
- - Updated dependencies [1fb812e]
1690
- - Updated dependencies [35c5798]
1691
- - @mastra/core@0.13.0-alpha.1
1692
-
1693
- ## 1.0.6
1694
-
1695
- ### Patch Changes
1696
-
1697
- - 613eec3: dependencies updates:
1698
- - 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`)
1699
- - Updated dependencies [33dcb07]
1700
- - Updated dependencies [d0d9500]
1701
- - Updated dependencies [d30b1a0]
1702
- - Updated dependencies [bff87f7]
1703
- - Updated dependencies [b4a8df0]
1704
- - @mastra/core@0.12.1
1705
-
1706
- ## 1.0.6-alpha.0
1707
-
1708
- ### Patch Changes
1709
-
1710
- - 613eec3: dependencies updates:
1711
- - 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`)
1712
- - Updated dependencies [33dcb07]
1713
- - Updated dependencies [d30b1a0]
1714
- - Updated dependencies [bff87f7]
1715
- - Updated dependencies [b4a8df0]
1716
- - @mastra/core@0.12.1-alpha.0
1717
-
1718
- ## 1.0.5
1719
-
1720
- ### Patch Changes
1721
-
1722
- - fc437d9: dependencies updates:
1723
- - 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`)
1724
- - b5a6da2: Allow vector query tool to be used without a Mastra server
1725
- - f42c4c2: update peer deps for packages to latest core range
1726
- - Updated dependencies [510e2c8]
1727
- - Updated dependencies [2f72fb2]
1728
- - Updated dependencies [27cc97a]
1729
- - Updated dependencies [3f89307]
1730
- - Updated dependencies [9eda7d4]
1731
- - Updated dependencies [9d49408]
1732
- - Updated dependencies [41daa63]
1733
- - Updated dependencies [ad0a58b]
1734
- - Updated dependencies [254a36b]
1735
- - Updated dependencies [2ecf658]
1736
- - Updated dependencies [7a7754f]
1737
- - Updated dependencies [fc92d80]
1738
- - Updated dependencies [e0f73c6]
1739
- - Updated dependencies [0b89602]
1740
- - Updated dependencies [4d37822]
1741
- - Updated dependencies [23a6a7c]
1742
- - Updated dependencies [cda801d]
1743
- - Updated dependencies [a77c823]
1744
- - Updated dependencies [ff9c125]
1745
- - Updated dependencies [09bca64]
1746
- - Updated dependencies [b8efbb9]
1747
- - Updated dependencies [71466e7]
1748
- - Updated dependencies [0c99fbe]
1749
- - @mastra/core@0.12.0
1750
-
1751
- ## 1.0.5-alpha.1
1752
-
1753
- ### Patch Changes
1754
-
1755
- - f42c4c2: update peer deps for packages to latest core range
1756
- - @mastra/core@0.12.0-alpha.5
1757
-
1758
- ## 1.0.5-alpha.0
1759
-
1760
- ### Patch Changes
1761
-
1762
- - fc437d9: dependencies updates:
1763
- - 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`)
1764
- - b5a6da2: Allow vector query tool to be used without a Mastra server
1765
- - Updated dependencies [510e2c8]
1766
- - Updated dependencies [2f72fb2]
1767
- - Updated dependencies [3f89307]
1768
- - Updated dependencies [9eda7d4]
1769
- - Updated dependencies [9d49408]
1770
- - Updated dependencies [2ecf658]
1771
- - Updated dependencies [7a7754f]
1772
- - Updated dependencies [fc92d80]
1773
- - Updated dependencies [23a6a7c]
1774
- - Updated dependencies [09bca64]
1775
- - @mastra/core@0.12.0-alpha.0
1776
-
1777
- ## 1.0.4
1778
-
1779
- ### Patch Changes
1780
-
1781
- - ce088f5: Update all peerdeps to latest core
1782
- - @mastra/core@0.11.1
1783
-
1784
- ## 1.0.3
1785
-
1786
- ### Patch Changes
1787
-
1788
- - edff568: Export types changeset
1789
- - 89ec9d4: remove cohere-ai client dependency and just make a fetch call
1790
- - Updated dependencies [0b56518]
1791
- - Updated dependencies [db5cc15]
1792
- - Updated dependencies [2ba5b76]
1793
- - Updated dependencies [5237998]
1794
- - Updated dependencies [c3a30de]
1795
- - Updated dependencies [37c1acd]
1796
- - Updated dependencies [1aa60b1]
1797
- - Updated dependencies [89ec9d4]
1798
- - Updated dependencies [cf3a184]
1799
- - Updated dependencies [d6bfd60]
1800
- - Updated dependencies [626b0f4]
1801
- - Updated dependencies [c22a91f]
1802
- - Updated dependencies [f7403ab]
1803
- - Updated dependencies [6c89d7f]
1804
- - @mastra/core@0.10.15
1805
-
1806
- ## 1.0.3-alpha.0
1807
-
1808
- ### Patch Changes
1809
-
1810
- - edff568: Export types changeset
1811
- - 89ec9d4: remove cohere-ai client dependency and just make a fetch call
1812
- - Updated dependencies [db5cc15]
1813
- - Updated dependencies [5237998]
1814
- - Updated dependencies [37c1acd]
1815
- - Updated dependencies [1aa60b1]
1816
- - Updated dependencies [89ec9d4]
1817
- - Updated dependencies [626b0f4]
1818
- - Updated dependencies [c22a91f]
1819
- - Updated dependencies [f7403ab]
1820
- - Updated dependencies [6c89d7f]
1821
- - @mastra/core@0.10.15-alpha.0
1822
-
1823
- ## 1.0.2
1824
-
1825
- ### Patch Changes
1826
-
1827
- - 43da563: Refactor relevance provider
1828
- - Updated dependencies [2873c7f]
1829
- - Updated dependencies [1c1c6a1]
1830
- - Updated dependencies [f8ce2cc]
1831
- - Updated dependencies [8c846b6]
1832
- - Updated dependencies [c7bbf1e]
1833
- - Updated dependencies [8722d53]
1834
- - Updated dependencies [565cc0c]
1835
- - Updated dependencies [b790fd1]
1836
- - Updated dependencies [132027f]
1837
- - Updated dependencies [0c85311]
1838
- - Updated dependencies [d7ed04d]
1839
- - Updated dependencies [cb16baf]
1840
- - Updated dependencies [f36e4f1]
1841
- - Updated dependencies [7f6e403]
1842
- - @mastra/core@0.10.11
1843
-
1844
- ## 1.0.2-alpha.0
1845
-
1846
- ### Patch Changes
1847
-
1848
- - 43da563: Refactor relevance provider
1849
- - Updated dependencies [c7bbf1e]
1850
- - Updated dependencies [8722d53]
1851
- - Updated dependencies [132027f]
1852
- - Updated dependencies [0c85311]
1853
- - Updated dependencies [cb16baf]
1854
- - @mastra/core@0.10.11-alpha.3
1855
-
1856
- ## 1.0.1
1857
-
1858
- ### Patch Changes
1859
-
1860
- - 8e1b6e9: dependencies updates:
1861
- - Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
1862
- - a85fa13: Add model to createVectorQueryTool runtimeContext
1863
- - Updated dependencies [15e9d26]
1864
- - Updated dependencies [d1baedb]
1865
- - Updated dependencies [d8f2d19]
1866
- - Updated dependencies [4d21bf2]
1867
- - Updated dependencies [07d6d88]
1868
- - Updated dependencies [9d52b17]
1869
- - Updated dependencies [2097952]
1870
- - Updated dependencies [792c4c0]
1871
- - Updated dependencies [5d74aab]
1872
- - Updated dependencies [a8b194f]
1873
- - Updated dependencies [4fb0cc2]
1874
- - Updated dependencies [d2a7a31]
1875
- - Updated dependencies [502fe05]
1876
- - Updated dependencies [144eb0b]
1877
- - Updated dependencies [8ba1b51]
1878
- - Updated dependencies [4efcfa0]
1879
- - Updated dependencies [0e17048]
1880
- - @mastra/core@0.10.7
1881
-
1882
- ## 1.0.1-alpha.0
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 [07d6d88]
1891
- - Updated dependencies [5d74aab]
1892
- - Updated dependencies [144eb0b]
1893
- - @mastra/core@0.10.7-alpha.2
1894
-
1895
- ## 1.0.0
1896
-
1897
- ### Major Changes
1898
-
1899
- - 75136cd: Add LaTeX chunking support by adding a case for Language.LATEX in getSeparatorsForLanguage.
1900
-
1901
- ### Patch Changes
1902
-
1903
- - 63f6b7d: dependencies updates:
1904
- - Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
1905
- - Updated dependencies [63f6b7d]
1906
- - Updated dependencies [12a95fc]
1907
- - Updated dependencies [4b0f8a6]
1908
- - Updated dependencies [51264a5]
1909
- - Updated dependencies [8e6f677]
1910
- - Updated dependencies [d70c420]
1911
- - Updated dependencies [ee9af57]
1912
- - Updated dependencies [36f1c36]
1913
- - Updated dependencies [2a16996]
1914
- - Updated dependencies [10d352e]
1915
- - Updated dependencies [9589624]
1916
- - Updated dependencies [53d3c37]
1917
- - Updated dependencies [751c894]
1918
- - Updated dependencies [577ce3a]
1919
- - Updated dependencies [9260b3a]
1920
- - @mastra/core@0.10.6
1921
-
1922
- ## 1.0.0-alpha.0
1923
-
1924
- ### Major Changes
1925
-
1926
- - 75136cd: Add LaTeX chunking support by adding a case for Language.LATEX in getSeparatorsForLanguage.
1927
-
1928
- ### Patch Changes
1929
-
1930
- - 63f6b7d: dependencies updates:
1931
- - Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
1932
- - Updated dependencies [63f6b7d]
1933
- - Updated dependencies [36f1c36]
1934
- - Updated dependencies [10d352e]
1935
- - Updated dependencies [53d3c37]
1936
- - @mastra/core@0.10.6-alpha.0
1937
-
1938
- ## 0.10.3
1939
-
1940
- ### Patch Changes
1941
-
1942
- - 71999e9: dependencies updates:
1943
- - Updated dependency [`js-tiktoken@^1.0.20` ↗︎](https://www.npmjs.com/package/js-tiktoken/v/1.0.20) (from `^1.0.19`, in `dependencies`)
1944
- - 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`)
1945
- - 1ccccff: dependencies updates:
1946
- - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
1947
- - 1ccccff: dependencies updates:
1948
- - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
1949
- - Updated dependencies [d1ed912]
1950
- - Updated dependencies [f6fd25f]
1951
- - Updated dependencies [dffb67b]
1952
- - Updated dependencies [f1f1f1b]
1953
- - Updated dependencies [925ab94]
1954
- - Updated dependencies [f9816ae]
1955
- - Updated dependencies [82090c1]
1956
- - Updated dependencies [1b443fd]
1957
- - Updated dependencies [ce97900]
1958
- - Updated dependencies [f1309d3]
1959
- - Updated dependencies [14a2566]
1960
- - Updated dependencies [f7f8293]
1961
- - Updated dependencies [48eddb9]
1962
- - @mastra/core@0.10.4
1963
-
1964
- ## 0.10.3-alpha.1
1965
-
1966
- ### Patch Changes
1967
-
1968
- - 1ccccff: dependencies updates:
1969
- - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
1970
- - 1ccccff: dependencies updates:
1971
- - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
1972
- - Updated dependencies [f6fd25f]
1973
- - Updated dependencies [dffb67b]
1974
- - Updated dependencies [f1309d3]
1975
- - Updated dependencies [f7f8293]
1976
- - @mastra/core@0.10.4-alpha.1
1977
-
1978
- ## 0.10.3-alpha.0
1979
-
1980
- ### Patch Changes
1981
-
1982
- - 71999e9: dependencies updates:
1983
- - Updated dependency [`js-tiktoken@^1.0.20` ↗︎](https://www.npmjs.com/package/js-tiktoken/v/1.0.20) (from `^1.0.19`, in `dependencies`)
1984
- - 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`)
1985
- - Updated dependencies [d1ed912]
1986
- - Updated dependencies [f1f1f1b]
1987
- - Updated dependencies [f9816ae]
1988
- - Updated dependencies [82090c1]
1989
- - Updated dependencies [1b443fd]
1990
- - Updated dependencies [ce97900]
1991
- - Updated dependencies [14a2566]
1992
- - @mastra/core@0.10.4-alpha.0
1993
-
1994
- ## 0.10.2
1995
-
1996
- ### Patch Changes
1997
-
1998
- - a60d630: Adds runtime and initialization DB specific configuration to createVectorQueryTool to account for different configuration between db providers.
1999
- - f0d559f: Fix peerdeps for alpha channel
2000
- - Updated dependencies [ee77e78]
2001
- - Updated dependencies [592a2db]
2002
- - Updated dependencies [e5dc18d]
2003
- - Updated dependencies [ab5adbe]
2004
- - Updated dependencies [1e8bb40]
2005
- - Updated dependencies [1b5fc55]
2006
- - Updated dependencies [195c428]
2007
- - Updated dependencies [f73e11b]
2008
- - Updated dependencies [37643b8]
2009
- - Updated dependencies [99fd6cf]
2010
- - Updated dependencies [c5bf1ce]
2011
- - Updated dependencies [add596e]
2012
- - Updated dependencies [8dc94d8]
2013
- - Updated dependencies [ecebbeb]
2014
- - Updated dependencies [79d5145]
2015
- - Updated dependencies [12b7002]
2016
- - Updated dependencies [2901125]
2017
- - @mastra/core@0.10.2
2018
-
2019
- ## 0.10.2-alpha.1
2020
-
2021
- ### Patch Changes
2022
-
2023
- - a60d630: Adds runtime and initialization DB specific configuration to createVectorQueryTool to account for different configuration between db providers.
2024
- - Updated dependencies [1b5fc55]
2025
- - Updated dependencies [add596e]
2026
- - Updated dependencies [ecebbeb]
2027
- - @mastra/core@0.10.2-alpha.5
2028
-
2029
- ## 0.10.2-alpha.0
2030
-
2031
- ### Patch Changes
2032
-
2033
- - f0d559f: Fix peerdeps for alpha channel
2034
- - Updated dependencies [1e8bb40]
2035
- - @mastra/core@0.10.2-alpha.2
2036
-
2037
- ## 0.10.1
2038
-
2039
- ### Patch Changes
2040
-
2041
- - 8784cef: Changed stripHeaders for markdown chunking to strip headers correctly from output when true
2042
- - f56fd29: added return type for vector-query and graph-rag
2043
- - Updated dependencies [d70b807]
2044
- - Updated dependencies [6d16390]
2045
- - Updated dependencies [1e4a421]
2046
- - Updated dependencies [200d0da]
2047
- - Updated dependencies [bf5f17b]
2048
- - Updated dependencies [5343f93]
2049
- - Updated dependencies [38aee50]
2050
- - Updated dependencies [5c41100]
2051
- - Updated dependencies [d6a759b]
2052
- - Updated dependencies [6015bdf]
2053
- - @mastra/core@0.10.1
2054
-
2055
- ## 0.10.1-alpha.1
2056
-
2057
- ### Patch Changes
2058
-
2059
- - f56fd29: added return type for vector-query and graph-rag
2060
-
2061
- ## 0.10.1-alpha.0
2062
-
2063
- ### Patch Changes
2064
-
2065
- - 8784cef: Changed stripHeaders for markdown chunking to strip headers correctly from output when true
2066
- - Updated dependencies [6d16390]
2067
- - Updated dependencies [1e4a421]
2068
- - @mastra/core@0.10.1-alpha.0
2069
-
2070
- ## 0.10.0
2071
-
2072
- ### Minor Changes
2073
-
2074
- - 83da932: Move @mastra/core to peerdeps
2075
-
2076
- ### Patch Changes
2077
-
2078
- - 4424836: [MASTRA-2591] Rag Tool Return Types
2079
- - 8cdd799: [MASTRA-3078] added sources to return for vector query tool
2080
- - 4f62987: update rerank weight sum to use big.js
2081
- - Updated dependencies [b3a3d63]
2082
- - Updated dependencies [344f453]
2083
- - Updated dependencies [0a3ae6d]
2084
- - Updated dependencies [95911be]
2085
- - Updated dependencies [f53a6ac]
2086
- - Updated dependencies [5eb5a99]
2087
- - Updated dependencies [7e632c5]
2088
- - Updated dependencies [1e9fbfa]
2089
- - Updated dependencies [eabdcd9]
2090
- - Updated dependencies [90be034]
2091
- - Updated dependencies [99f050a]
2092
- - Updated dependencies [d0ee3c6]
2093
- - Updated dependencies [b2ae5aa]
2094
- - Updated dependencies [23f258c]
2095
- - Updated dependencies [a7292b0]
2096
- - Updated dependencies [0dcb9f0]
2097
- - Updated dependencies [2672a05]
2098
- - @mastra/core@0.10.0
2099
-
2100
- ## 0.2.0-alpha.1
2101
-
2102
- ### Minor Changes
2103
-
2104
- - 83da932: Move @mastra/core to peerdeps
2105
-
2106
- ### Patch Changes
2107
-
2108
- - 4424836: [MASTRA-2591] Rag Tool Return Types
2109
- - 8cdd799: [MASTRA-3078] added sources to return for vector query tool
2110
- - 4f62987: update rerank weight sum to use big.js
2111
- - Updated dependencies [b3a3d63]
2112
- - Updated dependencies [344f453]
2113
- - Updated dependencies [0a3ae6d]
2114
- - Updated dependencies [95911be]
2115
- - Updated dependencies [5eb5a99]
2116
- - Updated dependencies [7e632c5]
2117
- - Updated dependencies [1e9fbfa]
2118
- - Updated dependencies [b2ae5aa]
2119
- - Updated dependencies [a7292b0]
2120
- - Updated dependencies [0dcb9f0]
2121
- - @mastra/core@0.10.0-alpha.1
2122
-
2123
- ## 0.1.24-alpha.0
2124
-
2125
- ### Patch Changes
2126
-
2127
- - Updated dependencies [f53a6ac]
2128
- - Updated dependencies [eabdcd9]
2129
- - Updated dependencies [90be034]
2130
- - Updated dependencies [99f050a]
2131
- - Updated dependencies [d0ee3c6]
2132
- - Updated dependencies [23f258c]
2133
- - Updated dependencies [2672a05]
2134
- - @mastra/core@0.9.5-alpha.0
2135
-
2136
- ## 0.1.23
2137
-
2138
- ### Patch Changes
2139
-
2140
- - Updated dependencies [396be50]
2141
- - Updated dependencies [ab80e7e]
2142
- - Updated dependencies [c3bd795]
2143
- - Updated dependencies [da082f8]
2144
- - Updated dependencies [a5810ce]
2145
- - Updated dependencies [3e9c131]
2146
- - Updated dependencies [3171b5b]
2147
- - Updated dependencies [973e5ac]
2148
- - Updated dependencies [daf942f]
2149
- - Updated dependencies [0b8b868]
2150
- - Updated dependencies [9e1eff5]
2151
- - Updated dependencies [6fa1ad1]
2152
- - Updated dependencies [c28d7a0]
2153
- - Updated dependencies [edf1e88]
2154
- - @mastra/core@0.9.4
2155
-
2156
- ## 0.1.23-alpha.4
2157
-
2158
- ### Patch Changes
2159
-
2160
- - Updated dependencies [3e9c131]
2161
- - @mastra/core@0.9.4-alpha.4
2162
-
2163
- ## 0.1.23-alpha.3
2164
-
2165
- ### Patch Changes
2166
-
2167
- - Updated dependencies [396be50]
2168
- - Updated dependencies [c3bd795]
2169
- - Updated dependencies [da082f8]
2170
- - Updated dependencies [a5810ce]
2171
- - @mastra/core@0.9.4-alpha.3
2172
-
2173
- ## 0.1.23-alpha.2
2174
-
2175
- ### Patch Changes
2176
-
2177
- - Updated dependencies [3171b5b]
2178
- - Updated dependencies [973e5ac]
2179
- - Updated dependencies [9e1eff5]
2180
- - @mastra/core@0.9.4-alpha.2
2181
-
2182
- ## 0.1.23-alpha.1
2183
-
2184
- ### Patch Changes
2185
-
2186
- - Updated dependencies [ab80e7e]
2187
- - Updated dependencies [6fa1ad1]
2188
- - Updated dependencies [c28d7a0]
2189
- - Updated dependencies [edf1e88]
2190
- - @mastra/core@0.9.4-alpha.1
2191
-
2192
- ## 0.1.23-alpha.0
2193
-
2194
- ### Patch Changes
2195
-
2196
- - Updated dependencies [daf942f]
2197
- - Updated dependencies [0b8b868]
2198
- - @mastra/core@0.9.4-alpha.0
2199
-
2200
- ## 0.1.22
2201
-
2202
- ### Patch Changes
2203
-
2204
- - Updated dependencies [e450778]
2205
- - Updated dependencies [8902157]
2206
- - Updated dependencies [ca0dc88]
2207
- - Updated dependencies [526c570]
2208
- - Updated dependencies [d7a6a33]
2209
- - Updated dependencies [9cd1a46]
2210
- - Updated dependencies [b5d2de0]
2211
- - Updated dependencies [644f8ad]
2212
- - Updated dependencies [70dbf51]
2213
- - @mastra/core@0.9.3
2214
-
2215
- ## 0.1.22-alpha.1
2216
-
2217
- ### Patch Changes
2218
-
2219
- - Updated dependencies [e450778]
2220
- - Updated dependencies [8902157]
2221
- - Updated dependencies [ca0dc88]
2222
- - Updated dependencies [9cd1a46]
2223
- - Updated dependencies [70dbf51]
2224
- - @mastra/core@0.9.3-alpha.1
2225
-
2226
- ## 0.1.22-alpha.0
2227
-
2228
- ### Patch Changes
2229
-
2230
- - Updated dependencies [526c570]
2231
- - Updated dependencies [b5d2de0]
2232
- - Updated dependencies [644f8ad]
2233
- - @mastra/core@0.9.3-alpha.0
2234
-
2235
- ## 0.1.21
2236
-
2237
- ### Patch Changes
2238
-
2239
- - 2cf3b8f: dependencies updates:
2240
- - Updated dependency [`zod@^3.24.3` ↗︎](https://www.npmjs.com/package/zod/v/3.24.3) (from `^3.24.2`, in `dependencies`)
2241
- - Updated dependencies [6052aa6]
2242
- - Updated dependencies [967b41c]
2243
- - Updated dependencies [3d2fb5c]
2244
- - Updated dependencies [26738f4]
2245
- - Updated dependencies [4155f47]
2246
- - Updated dependencies [7eeb2bc]
2247
- - Updated dependencies [b804723]
2248
- - Updated dependencies [8607972]
2249
- - Updated dependencies [ccef9f9]
2250
- - Updated dependencies [0097d50]
2251
- - Updated dependencies [7eeb2bc]
2252
- - Updated dependencies [17826a9]
2253
- - Updated dependencies [7d8b7c7]
2254
- - Updated dependencies [fba031f]
2255
- - Updated dependencies [3a5f1e1]
2256
- - Updated dependencies [51e6923]
2257
- - Updated dependencies [8398d89]
2258
- - @mastra/core@0.9.2
2259
-
2260
- ## 0.1.21-alpha.6
2261
-
2262
- ### Patch Changes
2263
-
2264
- - Updated dependencies [6052aa6]
2265
- - Updated dependencies [7d8b7c7]
2266
- - Updated dependencies [3a5f1e1]
2267
- - Updated dependencies [8398d89]
2268
- - @mastra/core@0.9.2-alpha.6
2269
-
2270
- ## 0.1.21-alpha.5
2271
-
2272
- ### Patch Changes
2273
-
2274
- - Updated dependencies [3d2fb5c]
2275
- - Updated dependencies [7eeb2bc]
2276
- - Updated dependencies [8607972]
2277
- - Updated dependencies [7eeb2bc]
2278
- - Updated dependencies [fba031f]
2279
- - @mastra/core@0.9.2-alpha.5
2280
-
2281
- ## 0.1.21-alpha.4
2282
-
2283
- ### Patch Changes
2284
-
2285
- - Updated dependencies [ccef9f9]
2286
- - Updated dependencies [51e6923]
2287
- - @mastra/core@0.9.2-alpha.4
2288
-
2289
- ## 0.1.21-alpha.3
2290
-
2291
- ### Patch Changes
2292
-
2293
- - Updated dependencies [967b41c]
2294
- - Updated dependencies [4155f47]
2295
- - Updated dependencies [17826a9]
2296
- - @mastra/core@0.9.2-alpha.3
2297
-
2298
- ## 0.1.21-alpha.2
2299
-
2300
- ### Patch Changes
2301
-
2302
- - Updated dependencies [26738f4]
2303
- - @mastra/core@0.9.2-alpha.2
2304
-
2305
- ## 0.1.21-alpha.1
2306
-
2307
- ### Patch Changes
2308
-
2309
- - Updated dependencies [b804723]
2310
- - @mastra/core@0.9.2-alpha.1
2311
-
2312
- ## 0.1.21-alpha.0
2313
-
2314
- ### Patch Changes
2315
-
2316
- - Updated dependencies [0097d50]
2317
- - @mastra/core@0.9.2-alpha.0
2318
-
2319
- ## 0.1.20
2320
-
2321
- ### Patch Changes
2322
-
2323
- - 6278b62: [MASTRA-3185] Remove Llamaindex
2324
- - 8fb46d6: [MASTRA-3171] pin llamaindex version to 0.9.6
2325
- - 5f826d9: Moved vector store specific prompts from @mastra/rag to be exported from the store that the prompt belongs to, ie @mastra/pg
2326
- - db1d220: switch to llamaindex core pinned version
2327
- - c4c6f04: added and updated docs for mongodb
2328
- - Updated dependencies [405b63d]
2329
- - Updated dependencies [81fb7f6]
2330
- - Updated dependencies [20275d4]
2331
- - Updated dependencies [7d1892c]
2332
- - Updated dependencies [a90a082]
2333
- - Updated dependencies [2d17c73]
2334
- - Updated dependencies [61e92f5]
2335
- - Updated dependencies [35955b0]
2336
- - Updated dependencies [6262bd5]
2337
- - Updated dependencies [c1409ef]
2338
- - Updated dependencies [3e7b69d]
2339
- - Updated dependencies [e4943b8]
2340
- - Updated dependencies [11d4485]
2341
- - Updated dependencies [479f490]
2342
- - Updated dependencies [c23a81c]
2343
- - Updated dependencies [2d4001d]
2344
- - Updated dependencies [c71013a]
2345
- - Updated dependencies [1d3b1cd]
2346
- - @mastra/core@0.9.1
2347
-
2348
- ## 0.1.20-alpha.8
2349
-
2350
- ### Patch Changes
2351
-
2352
- - Updated dependencies [2d17c73]
2353
- - @mastra/core@0.9.1-alpha.8
2354
-
2355
- ## 0.1.20-alpha.7
2356
-
2357
- ### Patch Changes
2358
-
2359
- - Updated dependencies [1d3b1cd]
2360
- - @mastra/core@0.9.1-alpha.7
2361
-
2362
- ## 0.1.20-alpha.6
2363
-
2364
- ### Patch Changes
2365
-
2366
- - Updated dependencies [c23a81c]
2367
- - @mastra/core@0.9.1-alpha.6
2368
-
2369
- ## 0.1.20-alpha.5
2370
-
2371
- ### Patch Changes
2372
-
2373
- - 5f826d9: Moved vector store specific prompts from @mastra/rag to be exported from the store that the prompt belongs to, ie @mastra/pg
2374
- - Updated dependencies [3e7b69d]
2375
- - @mastra/core@0.9.1-alpha.5
2376
-
2377
- ## 0.1.20-alpha.4
2378
-
2379
- ### Patch Changes
2380
-
2381
- - Updated dependencies [e4943b8]
2382
- - Updated dependencies [479f490]
2383
- - @mastra/core@0.9.1-alpha.4
2384
-
2385
- ## 0.1.20-alpha.3
2386
-
2387
- ### Patch Changes
2388
-
2389
- - c4c6f04: added and updated docs for mongodb
2390
- - Updated dependencies [6262bd5]
2391
- - @mastra/core@0.9.1-alpha.3
2392
-
2393
- ## 0.1.20-alpha.2
2394
-
2395
- ### Patch Changes
2396
-
2397
- - Updated dependencies [405b63d]
2398
- - Updated dependencies [61e92f5]
2399
- - Updated dependencies [c71013a]
2400
- - @mastra/core@0.9.1-alpha.2
2401
-
2402
- ## 0.1.20-alpha.1
2403
-
2404
- ### Patch Changes
2405
-
2406
- - 6278b62: [MASTRA-3185] Remove Llamaindex
2407
- - 8fb46d6: [MASTRA-3171] pin llamaindex version to 0.9.6
2408
- - db1d220: switch to llamaindex core pinned version
2409
- - Updated dependencies [20275d4]
2410
- - Updated dependencies [7d1892c]
2411
- - Updated dependencies [a90a082]
2412
- - Updated dependencies [35955b0]
2413
- - Updated dependencies [c1409ef]
2414
- - Updated dependencies [11d4485]
2415
- - Updated dependencies [2d4001d]
2416
- - @mastra/core@0.9.1-alpha.1
2417
-
2418
- ## 0.1.20-alpha.0
2419
-
2420
- ### Patch Changes
2421
-
2422
- - Updated dependencies [81fb7f6]
2423
- - @mastra/core@0.9.1-alpha.0
2424
-
2425
- ## 0.1.19
2426
-
2427
- ### Patch Changes
2428
-
2429
- - f850f80: use custom extractors rather than llamaindex versions, and remove @llamaindex/core and @llamaindex/env packages
2430
- - Updated dependencies [000a6d4]
2431
- - Updated dependencies [08bb78e]
2432
- - Updated dependencies [ed2f549]
2433
- - Updated dependencies [7e92011]
2434
- - Updated dependencies [9ee4293]
2435
- - Updated dependencies [03f3cd0]
2436
- - Updated dependencies [c0f22b4]
2437
- - Updated dependencies [71d9444]
2438
- - Updated dependencies [157c741]
2439
- - Updated dependencies [8a8a73b]
2440
- - Updated dependencies [0a033fa]
2441
- - Updated dependencies [fe3ae4d]
2442
- - Updated dependencies [9c26508]
2443
- - Updated dependencies [0f4eae3]
2444
- - Updated dependencies [16a8648]
2445
- - Updated dependencies [6f92295]
2446
- - @mastra/core@0.9.0
2447
-
2448
- ## 0.1.19-alpha.8
2449
-
2450
- ### Patch Changes
2451
-
2452
- - Updated dependencies [000a6d4]
2453
- - Updated dependencies [ed2f549]
2454
- - Updated dependencies [c0f22b4]
2455
- - Updated dependencies [0a033fa]
2456
- - Updated dependencies [9c26508]
2457
- - Updated dependencies [0f4eae3]
2458
- - Updated dependencies [16a8648]
2459
- - @mastra/core@0.9.0-alpha.8
2460
-
2461
- ## 0.1.19-alpha.7
2462
-
2463
- ### Patch Changes
2464
-
2465
- - Updated dependencies [71d9444]
2466
- - @mastra/core@0.9.0-alpha.7
2467
-
2468
- ## 0.1.19-alpha.6
2469
-
2470
- ### Patch Changes
2471
-
2472
- - Updated dependencies [157c741]
2473
- - @mastra/core@0.9.0-alpha.6
2474
-
2475
- ## 0.1.19-alpha.5
2476
-
2477
- ### Patch Changes
2478
-
2479
- - Updated dependencies [08bb78e]
2480
- - @mastra/core@0.9.0-alpha.5
2481
-
2482
- ## 0.1.19-alpha.4
2483
-
2484
- ### Patch Changes
2485
-
2486
- - f850f80: use custom extractors rather than llamaindex versions, and remove @llamaindex/core and @llamaindex/env packages
2487
- - Updated dependencies [7e92011]
2488
- - @mastra/core@0.9.0-alpha.4
2489
-
2490
- ## 0.1.19-alpha.3
2491
-
2492
- ### Patch Changes
2493
-
2494
- - Updated dependencies [fe3ae4d]
2495
- - @mastra/core@0.9.0-alpha.3
2496
-
2497
- ## 0.1.19-alpha.2
2498
-
2499
- ### Patch Changes
2500
-
2501
- - Updated dependencies [9ee4293]
2502
- - @mastra/core@0.8.4-alpha.2
2503
-
2504
- ## 0.1.19-alpha.1
2505
-
2506
- ### Patch Changes
2507
-
2508
- - Updated dependencies [8a8a73b]
2509
- - Updated dependencies [6f92295]
2510
- - @mastra/core@0.8.4-alpha.1
2511
-
2512
- ## 0.1.19-alpha.0
2513
-
2514
- ### Patch Changes
2515
-
2516
- - Updated dependencies [03f3cd0]
2517
- - @mastra/core@0.8.4-alpha.0
2518
-
2519
- ## 0.1.18
2520
-
2521
- ### Patch Changes
2522
-
2523
- - 18d0758: [MASTRA-3073] added error logging and more debug logs to vector-query and graph-rag
2524
- - 37bb612: Add Elastic-2.0 licensing for packages
2525
- - Updated dependencies [d72318f]
2526
- - Updated dependencies [0bcc862]
2527
- - Updated dependencies [10a8caf]
2528
- - Updated dependencies [359b089]
2529
- - Updated dependencies [32e7b71]
2530
- - Updated dependencies [37bb612]
2531
- - Updated dependencies [7f1b291]
2532
- - @mastra/core@0.8.3
2533
-
2534
- ## 0.1.18-alpha.6
2535
-
2536
- ### Patch Changes
2537
-
2538
- - Updated dependencies [d72318f]
2539
- - @mastra/core@0.8.3-alpha.5
2540
-
2541
- ## 0.1.18-alpha.5
2542
-
2543
- ### Patch Changes
2544
-
2545
- - 18d0758: [MASTRA-3073] added error logging and more debug logs to vector-query and graph-rag
2546
-
2547
- ## 0.1.18-alpha.4
2548
-
2549
- ### Patch Changes
2550
-
2551
- - Updated dependencies [7f1b291]
2552
- - @mastra/core@0.8.3-alpha.4
2553
-
2554
- ## 0.1.18-alpha.3
2555
-
2556
- ### Patch Changes
2557
-
2558
- - Updated dependencies [10a8caf]
2559
- - @mastra/core@0.8.3-alpha.3
2560
-
2561
- ## 0.1.18-alpha.2
2562
-
2563
- ### Patch Changes
2564
-
2565
- - Updated dependencies [0bcc862]
2566
- - @mastra/core@0.8.3-alpha.2
2567
-
2568
- ## 0.1.18-alpha.1
2569
-
2570
- ### Patch Changes
2571
-
2572
- - 37bb612: Add Elastic-2.0 licensing for packages
2573
- - Updated dependencies [32e7b71]
2574
- - Updated dependencies [37bb612]
2575
- - @mastra/core@0.8.3-alpha.1
2576
-
2577
- ## 0.1.18-alpha.0
2578
-
2579
- ### Patch Changes
2580
-
2581
- - Updated dependencies [359b089]
2582
- - @mastra/core@0.8.3-alpha.0
2583
-
2584
- ## 0.1.17
2585
-
2586
- ### Patch Changes
2587
-
2588
- - Updated dependencies [a06aadc]
2589
- - @mastra/core@0.8.2
2590
-
2591
- ## 0.1.17-alpha.0
2592
-
2593
- ### Patch Changes
2594
-
2595
- - Updated dependencies [a06aadc]
2596
- - @mastra/core@0.8.2-alpha.0
2597
-
2598
- ## 0.1.16
2599
-
2600
- ### Patch Changes
2601
-
2602
- - Updated dependencies [99e2998]
2603
- - Updated dependencies [8fdb414]
2604
- - @mastra/core@0.8.1
2605
-
2606
- ## 0.1.16-alpha.0
2607
-
2608
- ### Patch Changes
2609
-
2610
- - Updated dependencies [99e2998]
2611
- - Updated dependencies [8fdb414]
2612
- - @mastra/core@0.8.1-alpha.0
2613
-
2614
- ## 0.1.15
2615
-
2616
- ### Patch Changes
2617
-
2618
- - e47f529: Updated KeywordExtraction in chunk
2619
- - 7599d77: fix(deps): update ai sdk to ^4.2.2
2620
- - Updated dependencies [56c31b7]
2621
- - Updated dependencies [619c39d]
2622
- - Updated dependencies [5ae0180]
2623
- - Updated dependencies [fe56be0]
2624
- - Updated dependencies [93875ed]
2625
- - Updated dependencies [107bcfe]
2626
- - Updated dependencies [9bfa12b]
2627
- - Updated dependencies [515ebfb]
2628
- - Updated dependencies [5b4e19f]
2629
- - Updated dependencies [dbbbf80]
2630
- - Updated dependencies [a0967a0]
2631
- - Updated dependencies [fca3b21]
2632
- - Updated dependencies [88fa727]
2633
- - Updated dependencies [f37f535]
2634
- - Updated dependencies [a3f0e90]
2635
- - Updated dependencies [4d67826]
2636
- - Updated dependencies [6330967]
2637
- - Updated dependencies [8393832]
2638
- - Updated dependencies [6330967]
2639
- - Updated dependencies [99d43b9]
2640
- - Updated dependencies [d7e08e8]
2641
- - Updated dependencies [febc8a6]
2642
- - Updated dependencies [7599d77]
2643
- - Updated dependencies [0118361]
2644
- - Updated dependencies [619c39d]
2645
- - Updated dependencies [cafae83]
2646
- - Updated dependencies [8076ecf]
2647
- - Updated dependencies [8df4a77]
2648
- - Updated dependencies [304397c]
2649
- - @mastra/core@0.8.0
2650
-
2651
- ## 0.1.15-alpha.8
2652
-
2653
- ### Patch Changes
2654
-
2655
- - Updated dependencies [8df4a77]
2656
- - @mastra/core@0.8.0-alpha.8
2657
-
2658
- ## 0.1.15-alpha.7
2659
-
2660
- ### Patch Changes
2661
-
2662
- - Updated dependencies [febc8a6]
2663
- - @mastra/core@0.8.0-alpha.7
2664
-
2665
- ## 0.1.15-alpha.6
2666
-
2667
- ### Patch Changes
2668
-
2669
- - Updated dependencies [a3f0e90]
2670
- - @mastra/core@0.8.0-alpha.6
2671
-
2672
- ## 0.1.15-alpha.5
2673
-
2674
- ### Patch Changes
2675
-
2676
- - Updated dependencies [93875ed]
2677
- - @mastra/core@0.8.0-alpha.5
2678
-
2679
- ## 0.1.15-alpha.4
2680
-
2681
- ### Patch Changes
2682
-
2683
- - Updated dependencies [d7e08e8]
2684
- - @mastra/core@0.8.0-alpha.4
2685
-
2686
- ## 0.1.15-alpha.3
2687
-
2688
- ### Patch Changes
2689
-
2690
- - Updated dependencies [5ae0180]
2691
- - Updated dependencies [9bfa12b]
2692
- - Updated dependencies [515ebfb]
2693
- - Updated dependencies [88fa727]
2694
- - Updated dependencies [f37f535]
2695
- - Updated dependencies [4d67826]
2696
- - Updated dependencies [6330967]
2697
- - Updated dependencies [8393832]
2698
- - Updated dependencies [6330967]
2699
- - @mastra/core@0.8.0-alpha.3
2700
-
2701
- ## 0.1.15-alpha.2
2702
-
2703
- ### Patch Changes
2704
-
2705
- - Updated dependencies [56c31b7]
2706
- - Updated dependencies [dbbbf80]
2707
- - Updated dependencies [99d43b9]
2708
- - @mastra/core@0.8.0-alpha.2
2709
-
2710
- ## 0.1.15-alpha.1
2711
-
2712
- ### Patch Changes
2713
-
2714
- - e47f529: Updated KeywordExtraction in chunk
2715
- - Updated dependencies [619c39d]
2716
- - Updated dependencies [fe56be0]
2717
- - Updated dependencies [a0967a0]
2718
- - Updated dependencies [fca3b21]
2719
- - Updated dependencies [0118361]
2720
- - Updated dependencies [619c39d]
2721
- - @mastra/core@0.8.0-alpha.1
2722
-
2723
- ## 0.1.15-alpha.0
2724
-
2725
- ### Patch Changes
2726
-
2727
- - 7599d77: fix(deps): update ai sdk to ^4.2.2
2728
- - Updated dependencies [107bcfe]
2729
- - Updated dependencies [5b4e19f]
2730
- - Updated dependencies [7599d77]
2731
- - Updated dependencies [cafae83]
2732
- - Updated dependencies [8076ecf]
2733
- - Updated dependencies [304397c]
2734
- - @mastra/core@0.7.1-alpha.0
2735
-
2736
- ## 0.1.14
2737
-
2738
- ### Patch Changes
2739
-
2740
- - Updated dependencies [b4fbc59]
2741
- - Updated dependencies [a838fde]
2742
- - Updated dependencies [a8bd4cf]
2743
- - Updated dependencies [7a3eeb0]
2744
- - Updated dependencies [0b54522]
2745
- - Updated dependencies [b3b34f5]
2746
- - Updated dependencies [1af25d5]
2747
- - Updated dependencies [a4686e8]
2748
- - Updated dependencies [6530ad1]
2749
- - Updated dependencies [27439ad]
2750
- - @mastra/core@0.7.0
2751
-
2752
- ## 0.1.14-alpha.3
2753
-
2754
- ### Patch Changes
2755
-
2756
- - Updated dependencies [b3b34f5]
2757
- - Updated dependencies [a4686e8]
2758
- - @mastra/core@0.7.0-alpha.3
2759
-
2760
- ## 0.1.14-alpha.2
2761
-
2762
- ### Patch Changes
2763
-
2764
- - Updated dependencies [a838fde]
2765
- - Updated dependencies [a8bd4cf]
2766
- - Updated dependencies [7a3eeb0]
2767
- - Updated dependencies [6530ad1]
2768
- - @mastra/core@0.7.0-alpha.2
2769
-
2770
- ## 0.1.14-alpha.1
2771
-
2772
- ### Patch Changes
2773
-
2774
- - Updated dependencies [0b54522]
2775
- - Updated dependencies [1af25d5]
2776
- - Updated dependencies [27439ad]
2777
- - @mastra/core@0.7.0-alpha.1
2778
-
2779
- ## 0.1.14-alpha.0
2780
-
2781
- ### Patch Changes
2782
-
2783
- - Updated dependencies [b4fbc59]
2784
- - @mastra/core@0.6.5-alpha.0
2785
-
2786
- ## 0.1.13
2787
-
2788
- ### Patch Changes
2789
-
2790
- - ac30427: Updated inputschema for vectorquery tool
2791
- - Updated dependencies [6794797]
2792
- - Updated dependencies [fb68a80]
2793
- - Updated dependencies [b56a681]
2794
- - Updated dependencies [248cb07]
2795
- - @mastra/core@0.6.4
2796
-
2797
- ## 0.1.13-alpha.2
2798
-
2799
- ### Patch Changes
2800
-
2801
- - ac30427: Updated inputschema for vectorquery tool
2802
-
2803
- ## 0.1.13-alpha.1
2804
-
2805
- ### Patch Changes
2806
-
2807
- - Updated dependencies [6794797]
2808
- - @mastra/core@0.6.4-alpha.1
2809
-
2810
- ## 0.1.13-alpha.0
2811
-
2812
- ### Patch Changes
2813
-
2814
- - Updated dependencies [fb68a80]
2815
- - Updated dependencies [b56a681]
2816
- - Updated dependencies [248cb07]
2817
- - @mastra/core@0.6.4-alpha.0
2818
-
2819
- ## 0.1.12
2820
-
2821
- ### Patch Changes
2822
-
2823
- - 404640e: AgentNetwork changeset
2824
- - Updated dependencies [404640e]
2825
- - Updated dependencies [3bce733]
2826
- - @mastra/core@0.6.3
2827
-
2828
- ## 0.1.12-alpha.1
2829
-
2830
- ### Patch Changes
2831
-
2832
- - Updated dependencies [3bce733]
2833
- - @mastra/core@0.6.3-alpha.1
2834
-
2835
- ## 0.1.12-alpha.0
2836
-
2837
- ### Patch Changes
2838
-
2839
- - 404640e: AgentNetwork changeset
2840
- - Updated dependencies [404640e]
2841
- - @mastra/core@0.6.3-alpha.0
2842
-
2843
- ## 0.1.11
2844
-
2845
- ### Patch Changes
2846
-
2847
- - Updated dependencies [beaf1c2]
2848
- - Updated dependencies [3084e13]
2849
- - @mastra/core@0.6.2
2850
-
2851
- ## 0.1.11-alpha.0
2852
-
2853
- ### Patch Changes
2854
-
2855
- - Updated dependencies [beaf1c2]
2856
- - Updated dependencies [3084e13]
2857
- - @mastra/core@0.6.2-alpha.0
2858
-
2859
- ## 0.1.10
2860
-
2861
- ### Patch Changes
2862
-
2863
- - ff1a76c: Update Vector Query and GraphRag tool schema
2864
- - b195f6e: Update character chunking strategy
2865
- - Updated dependencies [fc2f89c]
2866
- - Updated dependencies [dfbb131]
2867
- - Updated dependencies [f4854ee]
2868
- - Updated dependencies [afaf73f]
2869
- - Updated dependencies [0850b4c]
2870
- - Updated dependencies [7bcfaee]
2871
- - Updated dependencies [44631b1]
2872
- - Updated dependencies [9116d70]
2873
- - Updated dependencies [6e559a0]
2874
- - Updated dependencies [5f43505]
2875
- - @mastra/core@0.6.1
2876
-
2877
- ## 0.1.10-alpha.2
2878
-
2879
- ### Patch Changes
2880
-
2881
- - Updated dependencies [fc2f89c]
2882
- - Updated dependencies [dfbb131]
2883
- - Updated dependencies [0850b4c]
2884
- - Updated dependencies [9116d70]
2885
- - @mastra/core@0.6.1-alpha.2
2886
-
2887
- ## 0.1.10-alpha.1
2888
-
2889
- ### Patch Changes
2890
-
2891
- - ff1a76c: Update Vector Query and GraphRag tool schema
2892
- - b195f6e: Update character chunking strategy
2893
- - Updated dependencies [f4854ee]
2894
- - Updated dependencies [afaf73f]
2895
- - Updated dependencies [44631b1]
2896
- - Updated dependencies [6e559a0]
2897
- - Updated dependencies [5f43505]
2898
- - @mastra/core@0.6.1-alpha.1
2899
-
2900
- ## 0.1.10-alpha.0
2901
-
2902
- ### Patch Changes
2903
-
2904
- - Updated dependencies [7bcfaee]
2905
- - @mastra/core@0.6.1-alpha.0
2906
-
2907
- ## 0.1.9
2908
-
2909
- ### Patch Changes
2910
-
2911
- - f14c830: Updated overlap for character and text transformer
2912
- - Updated dependencies [16b98d9]
2913
- - Updated dependencies [1c8cda4]
2914
- - Updated dependencies [95b4144]
2915
- - Updated dependencies [3729dbd]
2916
- - Updated dependencies [c2144f4]
2917
- - @mastra/core@0.6.0
2918
-
2919
- ## 0.1.9-alpha.1
2920
-
2921
- ### Patch Changes
2922
-
2923
- - f14c830: Updated overlap for character and text transformer
2924
- - Updated dependencies [16b98d9]
2925
- - Updated dependencies [1c8cda4]
2926
- - Updated dependencies [95b4144]
2927
- - Updated dependencies [c2144f4]
2928
- - @mastra/core@0.6.0-alpha.1
2929
-
2930
- ## 0.1.9-alpha.0
2931
-
2932
- ### Patch Changes
2933
-
2934
- - Updated dependencies [3729dbd]
2935
- - @mastra/core@0.5.1-alpha.0
2936
-
2937
- ## 0.1.8
2938
-
2939
- ### Patch Changes
2940
-
2941
- - f2e8e5f: Updated descriptions and input schema for vector and graph rag tools
2942
- - 9e81f35: Fix query filter for vector search and rerank
2943
- - c93798b: Added MastraLanguageModel which extends LanguageModelV1
2944
- - 9e0f2c9: Update JSON Chunking to fix recursive issue
2945
- - aec08af: Update vector query tool to change input schema depending on filter enabled
2946
- - fd4a1d7: Update cjs bundling to make sure files are split
2947
- - Updated dependencies [a910463]
2948
- - Updated dependencies [59df7b6]
2949
- - Updated dependencies [22643eb]
2950
- - Updated dependencies [6feb23f]
2951
- - Updated dependencies [f2d6727]
2952
- - Updated dependencies [7a7a547]
2953
- - Updated dependencies [29f3a82]
2954
- - Updated dependencies [3d0e290]
2955
- - Updated dependencies [e9fbac5]
2956
- - Updated dependencies [301e4ee]
2957
- - Updated dependencies [ee667a2]
2958
- - Updated dependencies [dfbe4e9]
2959
- - Updated dependencies [dab255b]
2960
- - Updated dependencies [1e8bcbc]
2961
- - Updated dependencies [f6678e4]
2962
- - Updated dependencies [9e81f35]
2963
- - Updated dependencies [c93798b]
2964
- - Updated dependencies [a85ab24]
2965
- - Updated dependencies [dbd9f2d]
2966
- - Updated dependencies [59df7b6]
2967
- - Updated dependencies [caefaa2]
2968
- - Updated dependencies [c151ae6]
2969
- - Updated dependencies [52e0418]
2970
- - Updated dependencies [d79aedf]
2971
- - Updated dependencies [03236ec]
2972
- - Updated dependencies [3764e71]
2973
- - Updated dependencies [df982db]
2974
- - Updated dependencies [a171b37]
2975
- - Updated dependencies [506f1d5]
2976
- - Updated dependencies [02ffb7b]
2977
- - Updated dependencies [0461849]
2978
- - Updated dependencies [2259379]
2979
- - Updated dependencies [aeb5e36]
2980
- - Updated dependencies [f2301de]
2981
- - Updated dependencies [358f069]
2982
- - Updated dependencies [fd4a1d7]
2983
- - Updated dependencies [c139344]
2984
- - @mastra/core@0.5.0
2985
-
2986
- ## 0.1.8-alpha.13
2987
-
2988
- ### Patch Changes
2989
-
2990
- - Updated dependencies [a85ab24]
2991
- - @mastra/core@0.5.0-alpha.12
2992
-
2993
- ## 0.1.8-alpha.12
2994
-
2995
- ### Patch Changes
2996
-
2997
- - c93798b: Added MastraLanguageModel which extends LanguageModelV1
2998
- - fd4a1d7: Update cjs bundling to make sure files are split
2999
- - Updated dependencies [7a7a547]
3000
- - Updated dependencies [c93798b]
3001
- - Updated dependencies [dbd9f2d]
3002
- - Updated dependencies [a171b37]
3003
- - Updated dependencies [fd4a1d7]
3004
- - @mastra/core@0.5.0-alpha.11
3005
-
3006
- ## 0.1.8-alpha.11
3007
-
3008
- ### Patch Changes
3009
-
3010
- - aec08af: Update vector query tool to change input schema depending on filter enabled
3011
-
3012
- ## 0.1.8-alpha.10
3013
-
3014
- ### Patch Changes
3015
-
3016
- - Updated dependencies [a910463]
3017
- - @mastra/core@0.5.0-alpha.10
3018
-
3019
- ## 0.1.8-alpha.9
3020
-
3021
- ### Patch Changes
3022
-
3023
- - Updated dependencies [e9fbac5]
3024
- - Updated dependencies [1e8bcbc]
3025
- - Updated dependencies [aeb5e36]
3026
- - Updated dependencies [f2301de]
3027
- - @mastra/core@0.5.0-alpha.9
3028
-
3029
- ## 0.1.8-alpha.8
3030
-
3031
- ### Patch Changes
3032
-
3033
- - Updated dependencies [506f1d5]
3034
- - @mastra/core@0.5.0-alpha.8
3035
-
3036
- ## 0.1.8-alpha.7
3037
-
3038
- ### Patch Changes
3039
-
3040
- - Updated dependencies [ee667a2]
3041
- - @mastra/core@0.5.0-alpha.7
3042
-
3043
- ## 0.1.8-alpha.6
3044
-
3045
- ### Patch Changes
3046
-
3047
- - Updated dependencies [f6678e4]
3048
- - @mastra/core@0.5.0-alpha.6
3049
-
3050
- ## 0.1.8-alpha.5
3051
-
3052
- ### Patch Changes
3053
-
3054
- - 9e81f35: Fix query filter for vector search and rerank
3055
- - 9e0f2c9: Update JSON Chunking to fix recursive issue
3056
- - Updated dependencies [22643eb]
3057
- - Updated dependencies [6feb23f]
3058
- - Updated dependencies [f2d6727]
3059
- - Updated dependencies [301e4ee]
3060
- - Updated dependencies [dfbe4e9]
3061
- - Updated dependencies [9e81f35]
3062
- - Updated dependencies [caefaa2]
3063
- - Updated dependencies [c151ae6]
3064
- - Updated dependencies [52e0418]
3065
- - Updated dependencies [03236ec]
3066
- - Updated dependencies [3764e71]
3067
- - Updated dependencies [df982db]
3068
- - Updated dependencies [0461849]
3069
- - Updated dependencies [2259379]
3070
- - Updated dependencies [358f069]
3071
- - @mastra/core@0.5.0-alpha.5
3072
-
3073
- ## 0.1.8-alpha.4
3074
-
3075
- ### Patch Changes
3076
-
3077
- - Updated dependencies [d79aedf]
3078
- - @mastra/core@0.5.0-alpha.4
3079
-
3080
- ## 0.1.8-alpha.3
3081
-
3082
- ### Patch Changes
3083
-
3084
- - f2e8e5f: Updated descriptions and input schema for vector and graph rag tools
3085
- - Updated dependencies [3d0e290]
3086
- - @mastra/core@0.5.0-alpha.3
3087
-
3088
- ## 0.1.8-alpha.2
3089
-
3090
- ### Patch Changes
3091
-
3092
- - Updated dependencies [02ffb7b]
3093
- - @mastra/core@0.5.0-alpha.2
3094
-
3095
- ## 0.1.8-alpha.1
3096
-
3097
- ### Patch Changes
3098
-
3099
- - Updated dependencies [dab255b]
3100
- - @mastra/core@0.5.0-alpha.1
3101
-
3102
- ## 0.1.8-alpha.0
3103
-
3104
- ### Patch Changes
3105
-
3106
- - Updated dependencies [59df7b6]
3107
- - Updated dependencies [29f3a82]
3108
- - Updated dependencies [59df7b6]
3109
- - Updated dependencies [c139344]
3110
- - @mastra/core@0.5.0-alpha.0
3111
-
3112
- ## 0.1.7
3113
-
3114
- ### Patch Changes
3115
-
3116
- - Updated dependencies [1da20e7]
3117
- - @mastra/core@0.4.4
3118
-
3119
- ## 0.1.7-alpha.0
3120
-
3121
- ### Patch Changes
3122
-
3123
- - Updated dependencies [1da20e7]
3124
- - @mastra/core@0.4.4-alpha.0
3125
-
3126
- ## 0.1.6
3127
-
3128
- ### Patch Changes
3129
-
3130
- - 0fd78ac: Update vector store functions to use object params
3131
- - bb4f447: Add support for commonjs
3132
- - Updated dependencies [0d185b1]
3133
- - Updated dependencies [ed55f1d]
3134
- - Updated dependencies [06aa827]
3135
- - Updated dependencies [0fd78ac]
3136
- - Updated dependencies [2512a93]
3137
- - Updated dependencies [e62de74]
3138
- - Updated dependencies [0d25b75]
3139
- - Updated dependencies [fd14a3f]
3140
- - Updated dependencies [8d13b14]
3141
- - Updated dependencies [3f369a2]
3142
- - Updated dependencies [3ee4831]
3143
- - Updated dependencies [4d4e1e1]
3144
- - Updated dependencies [bb4f447]
3145
- - Updated dependencies [108793c]
3146
- - Updated dependencies [5f28f44]
3147
- - Updated dependencies [dabecf4]
3148
- - @mastra/core@0.4.3
3149
-
3150
- ## 0.1.6-alpha.4
3151
-
3152
- ### Patch Changes
3153
-
3154
- - Updated dependencies [dabecf4]
3155
- - @mastra/core@0.4.3-alpha.4
3156
-
3157
- ## 0.1.6-alpha.3
3158
-
3159
- ### Patch Changes
3160
-
3161
- - 0fd78ac: Update vector store functions to use object params
3162
- - bb4f447: Add support for commonjs
3163
- - Updated dependencies [0fd78ac]
3164
- - Updated dependencies [0d25b75]
3165
- - Updated dependencies [fd14a3f]
3166
- - Updated dependencies [3f369a2]
3167
- - Updated dependencies [4d4e1e1]
3168
- - Updated dependencies [bb4f447]
3169
- - @mastra/core@0.4.3-alpha.3
3170
-
3171
- ## 0.1.6-alpha.2
3172
-
3173
- ### Patch Changes
3174
-
3175
- - Updated dependencies [2512a93]
3176
- - Updated dependencies [e62de74]
3177
- - @mastra/core@0.4.3-alpha.2
3178
-
3179
- ## 0.1.6-alpha.1
3180
-
3181
- ### Patch Changes
3182
-
3183
- - Updated dependencies [0d185b1]
3184
- - Updated dependencies [ed55f1d]
3185
- - Updated dependencies [8d13b14]
3186
- - Updated dependencies [3ee4831]
3187
- - Updated dependencies [108793c]
3188
- - Updated dependencies [5f28f44]
3189
- - @mastra/core@0.4.3-alpha.1
3190
-
3191
- ## 0.1.6-alpha.0
3192
-
3193
- ### Patch Changes
3194
-
3195
- - Updated dependencies [06aa827]
3196
- - @mastra/core@0.4.3-alpha.0
3197
-
3198
- ## 0.1.5
3199
-
3200
- ### Patch Changes
3201
-
3202
- - Updated dependencies [7fceae1]
3203
- - Updated dependencies [8d94c3e]
3204
- - Updated dependencies [99dcdb5]
3205
- - Updated dependencies [6cb63e0]
3206
- - Updated dependencies [f626fbb]
3207
- - Updated dependencies [e752340]
3208
- - Updated dependencies [eb91535]
3209
- - @mastra/core@0.4.2
3210
-
3211
- ## 0.1.5-alpha.2
3212
-
3213
- ### Patch Changes
3214
-
3215
- - Updated dependencies [8d94c3e]
3216
- - Updated dependencies [99dcdb5]
3217
- - Updated dependencies [e752340]
3218
- - Updated dependencies [eb91535]
3219
- - @mastra/core@0.4.2-alpha.2
3220
-
3221
- ## 0.1.5-alpha.1
3222
-
3223
- ### Patch Changes
3224
-
3225
- - Updated dependencies [6cb63e0]
3226
- - @mastra/core@0.4.2-alpha.1
3227
-
3228
- ## 0.1.5-alpha.0
3229
-
3230
- ### Patch Changes
3231
-
3232
- - Updated dependencies [7fceae1]
3233
- - Updated dependencies [f626fbb]
3234
- - @mastra/core@0.4.2-alpha.0
3235
-
3236
- ## 0.1.4
3237
-
3238
- ### Patch Changes
3239
-
3240
- - Updated dependencies [ce44b9b]
3241
- - Updated dependencies [967da43]
3242
- - Updated dependencies [b405f08]
3243
- - @mastra/core@0.4.1
3244
-
3245
- ## 0.1.3
3246
-
3247
- ### Patch Changes
3248
-
3249
- - Updated dependencies [2fc618f]
3250
- - Updated dependencies [fe0fd01]
3251
- - @mastra/core@0.4.0
3252
-
3253
- ## 0.1.3-alpha.1
3254
-
3255
- ### Patch Changes
3256
-
3257
- - Updated dependencies [fe0fd01]
3258
- - @mastra/core@0.4.0-alpha.1
3259
-
3260
- ## 0.1.3-alpha.0
3261
-
3262
- ### Patch Changes
3263
-
3264
- - Updated dependencies [2fc618f]
3265
- - @mastra/core@0.4.0-alpha.0
3266
-
3267
- ## 0.1.2
3268
-
3269
- ### Patch Changes
3270
-
3271
- - Updated dependencies [f205ede]
3272
- - @mastra/core@0.3.0
3273
-
3274
- ## 0.1.1
3275
-
3276
- ### Patch Changes
3277
-
3278
- - 91ef439: Add eslint and ran autofix
3279
- - Updated dependencies [d59f1a8]
3280
- - Updated dependencies [91ef439]
3281
- - Updated dependencies [4a25be4]
3282
- - Updated dependencies [bf2e88f]
3283
- - Updated dependencies [2f0d707]
3284
- - Updated dependencies [aac1667]
3285
- - @mastra/core@0.2.1
3286
-
3287
- ## 0.1.1-alpha.0
3288
-
3289
- ### Patch Changes
3290
-
3291
- - 91ef439: Add eslint and ran autofix
3292
- - Updated dependencies [d59f1a8]
3293
- - Updated dependencies [91ef439]
3294
- - Updated dependencies [4a25be4]
3295
- - Updated dependencies [bf2e88f]
3296
- - Updated dependencies [2f0d707]
3297
- - Updated dependencies [aac1667]
3298
- - @mastra/core@0.2.1-alpha.0
3299
-
3300
- ## 0.1.0
3301
-
3302
- ### Minor Changes
3303
-
3304
- - 5916f9d: Update deps from fixed to ^
3305
- - 8b416d9: Breaking changes
3306
-
3307
- ### Patch Changes
3308
-
3309
- - b27bdb8: Swap jsdon for node-html-parser in rag
3310
- - ee856f3: Updated pg filter function and updated docs and example
3311
- - f646a8b: Update rag deps
3312
- - f031a1f: expose embed from rag, and refactor embed
3313
- - 592e3cf: Add custom rag tools, add vector retrieval, and update docs
3314
- - 3967e69: Added GraphRAG implementation and updated docs
3315
- - 8ae2bbc: Dane publishing
3316
- - bdaf834: publish packages
3317
- - 1616f70: Added transaction handling to pgvector
3318
- - e1dd94a: update the api for embeddings
3319
- - 837a288: MAJOR Revamp of tools, workflows, syncs.
3320
- - 685108a: Remove syncs and excess rag
3321
- - b97ca96: Tracing into default storage
3322
- - 033eda6: More fixes for refactor
3323
- - 8105fae: Split embed into embed and embedMany to handle different return types
3324
- - ab1dc59: Add Cloudflare vectorize
3325
- - a621c34: Add validation for indexName in pgVector and dimension for all vector dbs
3326
- - 1944807: Unified logger and major step in better logs
3327
- - 1874f40: Added re ranking tool to RAG
3328
- - 0b74006: Workflow updates
3329
- - 9c10484: update all packages
3330
- - 70dabd9: Fix broken publish
3331
- - 45fd5b8: rename MastraDocument to MDocument
3332
- - 21fe536: add keyword tags for packages and update readmes
3333
- - 779702b: Upstash vector
3334
- - ae638a4: make useFilter option optional
3335
- - 0bd142c: Fixes learned from docs
3336
- - 9625602: Use mastra core splitted bundles in other packages
3337
- - 036ee5e: Add astra-db to rag
3338
- - 1c3232a: ChromaDB
3339
- - 24fe87e: Change document semantics
3340
- - a944f1a: Bundle @mastra/rag package with tsup
3341
- - a10b7a3: Implemented new filtering for vectorQueryTool and updated docs
3342
- - 5826db3: Updated reference docs and exports for Reranker and GraphRag
3343
- - 5811de6: Updates spec-writer example to use new workflows constructs. Small improvements to workflow internals. Switch transformer tokenizer for js compatible one.
3344
- - eb45d76: Updated PG Vector filter and added rag examples in docs
3345
- - 327ece7: Updates for ts versions
3346
- - 6101f2d: Fix module incompatibility, and dane cli build
3347
- - 9c0d010: Deprecated Reranker in favor of rerank function (BREAKING CHANGE)
3348
- - ecdee97: Update return type for chunk to Chunk[]
3349
- - 7de6d71: Update filter for vector query to work with more stores
3350
- - c3047a7: Added tests
3351
- - 4f1d1a1: Enforce types ann cleanup package.json
3352
- - 4769753: Added turso/libsql support for RAG
3353
- - ee4de15: Dane fixes
3354
- - Updated dependencies [f537e33]
3355
- - Updated dependencies [6f2c0f5]
3356
- - Updated dependencies [e4d4ede]
3357
- - Updated dependencies [0be7181]
3358
- - Updated dependencies [dd6d87f]
3359
- - Updated dependencies [9029796]
3360
- - Updated dependencies [6fa4bd2]
3361
- - Updated dependencies [f031a1f]
3362
- - Updated dependencies [8151f44]
3363
- - Updated dependencies [d7d465a]
3364
- - Updated dependencies [4d4f6b6]
3365
- - Updated dependencies [73d112c]
3366
- - Updated dependencies [592e3cf]
3367
- - Updated dependencies [9d1796d]
3368
- - Updated dependencies [e897f1c]
3369
- - Updated dependencies [4a54c82]
3370
- - Updated dependencies [3967e69]
3371
- - Updated dependencies [8ae2bbc]
3372
- - Updated dependencies [e9d1b47]
3373
- - Updated dependencies [016493a]
3374
- - Updated dependencies [bc40916]
3375
- - Updated dependencies [93a3719]
3376
- - Updated dependencies [7d83b92]
3377
- - Updated dependencies [9fb3039]
3378
- - Updated dependencies [d5e12de]
3379
- - Updated dependencies [e1dd94a]
3380
- - Updated dependencies [07c069d]
3381
- - Updated dependencies [5cdfb88]
3382
- - Updated dependencies [837a288]
3383
- - Updated dependencies [685108a]
3384
- - Updated dependencies [c8ff2f5]
3385
- - Updated dependencies [5fdc87c]
3386
- - Updated dependencies [ae7bf94]
3387
- - Updated dependencies [8e7814f]
3388
- - Updated dependencies [66a03ec]
3389
- - Updated dependencies [7d87a15]
3390
- - Updated dependencies [b97ca96]
3391
- - Updated dependencies [23dcb23]
3392
- - Updated dependencies [033eda6]
3393
- - Updated dependencies [8105fae]
3394
- - Updated dependencies [e097800]
3395
- - Updated dependencies [1944807]
3396
- - Updated dependencies [30322ce]
3397
- - Updated dependencies [1874f40]
3398
- - Updated dependencies [685108a]
3399
- - Updated dependencies [f7d1131]
3400
- - Updated dependencies [79acad0]
3401
- - Updated dependencies [7a19083]
3402
- - Updated dependencies [382f4dc]
3403
- - Updated dependencies [1ebd071]
3404
- - Updated dependencies [0b74006]
3405
- - Updated dependencies [2f17a5f]
3406
- - Updated dependencies [f368477]
3407
- - Updated dependencies [7892533]
3408
- - Updated dependencies [9c10484]
3409
- - Updated dependencies [b726bf5]
3410
- - Updated dependencies [70dabd9]
3411
- - Updated dependencies [21fe536]
3412
- - Updated dependencies [176bc42]
3413
- - Updated dependencies [401a4d9]
3414
- - Updated dependencies [2e099d2]
3415
- - Updated dependencies [0b826f6]
3416
- - Updated dependencies [d68b532]
3417
- - Updated dependencies [75bf3f0]
3418
- - Updated dependencies [e6d8055]
3419
- - Updated dependencies [e2e76de]
3420
- - Updated dependencies [ccbc581]
3421
- - Updated dependencies [5950de5]
3422
- - Updated dependencies [fe3dcb0]
3423
- - Updated dependencies [78eec7c]
3424
- - Updated dependencies [a8a459a]
3425
- - Updated dependencies [0be7181]
3426
- - Updated dependencies [7b87567]
3427
- - Updated dependencies [b524c22]
3428
- - Updated dependencies [d7d465a]
3429
- - Updated dependencies [df843d3]
3430
- - Updated dependencies [4534e77]
3431
- - Updated dependencies [d6d8159]
3432
- - Updated dependencies [0bd142c]
3433
- - Updated dependencies [9625602]
3434
- - Updated dependencies [72d1990]
3435
- - Updated dependencies [f6ba259]
3436
- - Updated dependencies [2712098]
3437
- - Updated dependencies [eedb829]
3438
- - Updated dependencies [5285356]
3439
- - Updated dependencies [74b3078]
3440
- - Updated dependencies [cb290ee]
3441
- - Updated dependencies [b4d7416]
3442
- - Updated dependencies [e608d8c]
3443
- - Updated dependencies [06b2c0a]
3444
- - Updated dependencies [002d6d8]
3445
- - Updated dependencies [e448a26]
3446
- - Updated dependencies [8b416d9]
3447
- - Updated dependencies [fd494a3]
3448
- - Updated dependencies [dc90663]
3449
- - Updated dependencies [c872875]
3450
- - Updated dependencies [3c4488b]
3451
- - Updated dependencies [a7b016d]
3452
- - Updated dependencies [fd75f3c]
3453
- - Updated dependencies [7f24c29]
3454
- - Updated dependencies [2017553]
3455
- - Updated dependencies [a10b7a3]
3456
- - Updated dependencies [cf6d825]
3457
- - Updated dependencies [963c15a]
3458
- - Updated dependencies [7365b6c]
3459
- - Updated dependencies [5ee67d3]
3460
- - Updated dependencies [d38f7a6]
3461
- - Updated dependencies [38b7f66]
3462
- - Updated dependencies [2fa7f53]
3463
- - Updated dependencies [1420ae2]
3464
- - Updated dependencies [f6da688]
3465
- - Updated dependencies [3700be1]
3466
- - Updated dependencies [9ade36e]
3467
- - Updated dependencies [10870bc]
3468
- - Updated dependencies [2b01511]
3469
- - Updated dependencies [a870123]
3470
- - Updated dependencies [ccf115c]
3471
- - Updated dependencies [04434b6]
3472
- - Updated dependencies [5811de6]
3473
- - Updated dependencies [9f3ab05]
3474
- - Updated dependencies [66a5392]
3475
- - Updated dependencies [4b1ce2c]
3476
- - Updated dependencies [14064f2]
3477
- - Updated dependencies [f5dfa20]
3478
- - Updated dependencies [327ece7]
3479
- - Updated dependencies [da2e8d3]
3480
- - Updated dependencies [95a4697]
3481
- - Updated dependencies [d5fccfb]
3482
- - Updated dependencies [3427b95]
3483
- - Updated dependencies [538a136]
3484
- - Updated dependencies [e66643a]
3485
- - Updated dependencies [b5393f1]
3486
- - Updated dependencies [d2cd535]
3487
- - Updated dependencies [c2dd6b5]
3488
- - Updated dependencies [67637ba]
3489
- - Updated dependencies [836f4e3]
3490
- - Updated dependencies [5ee2e78]
3491
- - Updated dependencies [cd02c56]
3492
- - Updated dependencies [01502b0]
3493
- - Updated dependencies [16e5b04]
3494
- - Updated dependencies [d9c8dd0]
3495
- - Updated dependencies [9fb59d6]
3496
- - Updated dependencies [a9345f9]
3497
- - Updated dependencies [99f1847]
3498
- - Updated dependencies [04f3171]
3499
- - Updated dependencies [8769a62]
3500
- - Updated dependencies [d5ec619]
3501
- - Updated dependencies [27275c9]
3502
- - Updated dependencies [ae7bf94]
3503
- - Updated dependencies [4f1d1a1]
3504
- - Updated dependencies [ee4de15]
3505
- - Updated dependencies [202d404]
3506
- - Updated dependencies [a221426]
3507
- - @mastra/core@0.2.0
3508
-
3509
- ## 0.1.0-alpha.103
3510
-
3511
- ### Patch Changes
3512
-
3513
- - Updated dependencies [016493a]
3514
- - Updated dependencies [382f4dc]
3515
- - Updated dependencies [176bc42]
3516
- - Updated dependencies [d68b532]
3517
- - Updated dependencies [fe3dcb0]
3518
- - Updated dependencies [e448a26]
3519
- - Updated dependencies [fd75f3c]
3520
- - Updated dependencies [ccf115c]
3521
- - Updated dependencies [a221426]
3522
- - @mastra/core@0.2.0-alpha.110
3523
-
3524
- ## 0.1.0-alpha.102
3525
-
3526
- ### Patch Changes
3527
-
3528
- - Updated dependencies [d5fccfb]
3529
- - @mastra/core@0.2.0-alpha.109
3530
-
3531
- ## 0.1.0-alpha.101
3532
-
3533
- ### Patch Changes
3534
-
3535
- - Updated dependencies [5ee67d3]
3536
- - Updated dependencies [95a4697]
3537
- - @mastra/core@0.2.0-alpha.108
3538
-
3539
- ## 0.1.0-alpha.100
3540
-
3541
- ### Patch Changes
3542
-
3543
- - Updated dependencies [66a5392]
3544
- - @mastra/core@0.2.0-alpha.107
3545
-
3546
- ## 0.1.0-alpha.99
3547
-
3548
- ### Patch Changes
3549
-
3550
- - Updated dependencies [6f2c0f5]
3551
- - Updated dependencies [a8a459a]
3552
- - @mastra/core@0.2.0-alpha.106
3553
-
3554
- ## 0.1.0-alpha.98
3555
-
3556
- ### Patch Changes
3557
-
3558
- - Updated dependencies [1420ae2]
3559
- - Updated dependencies [99f1847]
3560
- - @mastra/core@0.2.0-alpha.105
3561
-
3562
- ## 0.1.0-alpha.97
3563
-
3564
- ### Patch Changes
3565
-
3566
- - b97ca96: Tracing into default storage
3567
- - Updated dependencies [5fdc87c]
3568
- - Updated dependencies [b97ca96]
3569
- - Updated dependencies [72d1990]
3570
- - Updated dependencies [cf6d825]
3571
- - Updated dependencies [10870bc]
3572
- - @mastra/core@0.2.0-alpha.104
3573
-
3574
- ## 0.1.0-alpha.96
3575
-
3576
- ### Patch Changes
3577
-
3578
- - Updated dependencies [4534e77]
3579
- - @mastra/core@0.2.0-alpha.103
3580
-
3581
- ## 0.1.0-alpha.95
3582
-
3583
- ### Patch Changes
3584
-
3585
- - Updated dependencies [a9345f9]
3586
- - @mastra/core@0.2.0-alpha.102
3587
-
3588
- ## 0.1.0-alpha.94
3589
-
3590
- ### Patch Changes
3591
-
3592
- - 4f1d1a1: Enforce types ann cleanup package.json
3593
- - Updated dependencies [66a03ec]
3594
- - Updated dependencies [4f1d1a1]
3595
- - @mastra/core@0.2.0-alpha.101
3596
-
3597
- ## 0.1.0-alpha.93
3598
-
3599
- ### Patch Changes
3600
-
3601
- - Updated dependencies [9d1796d]
3602
- - @mastra/core@0.2.0-alpha.100
3603
-
3604
- ## 0.1.0-alpha.92
3605
-
3606
- ### Patch Changes
3607
-
3608
- - Updated dependencies [7d83b92]
3609
- - @mastra/core@0.2.0-alpha.99
3610
-
3611
- ## 0.1.0-alpha.91
3612
-
3613
- ### Patch Changes
3614
-
3615
- - 70dabd9: Fix broken publish
3616
- - Updated dependencies [70dabd9]
3617
- - Updated dependencies [202d404]
3618
- - @mastra/core@0.2.0-alpha.98
3619
-
3620
- ## 0.1.0-alpha.90
3621
-
3622
- ### Patch Changes
3623
-
3624
- - Updated dependencies [07c069d]
3625
- - Updated dependencies [7892533]
3626
- - Updated dependencies [e6d8055]
3627
- - Updated dependencies [5950de5]
3628
- - Updated dependencies [df843d3]
3629
- - Updated dependencies [a870123]
3630
- - @mastra/core@0.2.0-alpha.97
3631
-
3632
- ## 0.1.0-alpha.89
3633
-
3634
- ### Patch Changes
3635
-
3636
- - Updated dependencies [74b3078]
3637
- - @mastra/core@0.2.0-alpha.96
3638
-
3639
- ## 0.1.0-alpha.88
3640
-
3641
- ### Patch Changes
3642
-
3643
- - Updated dependencies [9fb59d6]
3644
- - @mastra/core@0.2.0-alpha.95
3645
-
3646
- ## 0.1.0-alpha.87
3647
-
3648
- ### Minor Changes
3649
-
3650
- - 8b416d9: Breaking changes
3651
-
3652
- ### Patch Changes
3653
-
3654
- - 9c10484: update all packages
3655
- - Updated dependencies [9c10484]
3656
- - Updated dependencies [8b416d9]
3657
- - @mastra/core@0.2.0-alpha.94
3658
-
3659
- ## 0.1.0-alpha.86
3660
-
3661
- ### Patch Changes
3662
-
3663
- - Updated dependencies [5285356]
3664
- - @mastra/core@0.2.0-alpha.93
3665
-
3666
- ## 0.1.0-alpha.85
3667
-
3668
- ### Patch Changes
3669
-
3670
- - b27bdb8: Swap jsdon for node-html-parser in rag
3671
-
3672
- ## 0.1.0-alpha.84
3673
-
3674
- ### Patch Changes
3675
-
3676
- - Updated dependencies [4d4f6b6]
3677
- - @mastra/core@0.2.0-alpha.92
3678
-
3679
- ## 0.1.0-alpha.83
3680
-
3681
- ### Patch Changes
3682
-
3683
- - a10b7a3: Implemented new filtering for vectorQueryTool and updated docs
3684
- - Updated dependencies [d7d465a]
3685
- - Updated dependencies [d7d465a]
3686
- - Updated dependencies [2017553]
3687
- - Updated dependencies [a10b7a3]
3688
- - Updated dependencies [16e5b04]
3689
- - @mastra/core@0.2.0-alpha.91
3690
-
3691
- ## 0.1.0-alpha.82
3692
-
3693
- ### Patch Changes
3694
-
3695
- - Updated dependencies [8151f44]
3696
- - Updated dependencies [e897f1c]
3697
- - Updated dependencies [3700be1]
3698
- - @mastra/core@0.2.0-alpha.90
3699
-
3700
- ## 0.1.0-alpha.81
3701
-
3702
- ### Patch Changes
3703
-
3704
- - Updated dependencies [27275c9]
3705
- - @mastra/core@0.2.0-alpha.89
3706
-
3707
- ## 0.1.0-alpha.80
3708
-
3709
- ### Patch Changes
3710
-
3711
- - Updated dependencies [ccbc581]
3712
- - @mastra/core@0.2.0-alpha.88
3713
-
3714
- ## 0.1.0-alpha.79
3715
-
3716
- ### Patch Changes
3717
-
3718
- - Updated dependencies [7365b6c]
3719
- - @mastra/core@0.2.0-alpha.87
3720
-
3721
- ## 0.1.0-alpha.78
3722
-
3723
- ### Minor Changes
3724
-
3725
- - 5916f9d: Update deps from fixed to ^
3726
-
3727
- ### Patch Changes
3728
-
3729
- - Updated dependencies [6fa4bd2]
3730
- - Updated dependencies [e2e76de]
3731
- - Updated dependencies [7f24c29]
3732
- - Updated dependencies [67637ba]
3733
- - Updated dependencies [04f3171]
3734
- - @mastra/core@0.2.0-alpha.86
3735
-
3736
- ## 0.0.2-alpha.77
3737
-
3738
- ### Patch Changes
3739
-
3740
- - Updated dependencies [e9d1b47]
3741
- - @mastra/core@0.2.0-alpha.85
3742
-
3743
- ## 0.0.2-alpha.76
3744
-
3745
- ### Patch Changes
3746
-
3747
- - f646a8b: Update rag deps
3748
-
3749
- ## 0.0.2-alpha.75
3750
-
3751
- ### Patch Changes
3752
-
3753
- - Updated dependencies [2f17a5f]
3754
- - Updated dependencies [cb290ee]
3755
- - Updated dependencies [b4d7416]
3756
- - Updated dependencies [38b7f66]
3757
- - @mastra/core@0.2.0-alpha.84
3758
-
3759
- ## 0.0.2-alpha.74
3760
-
3761
- ### Patch Changes
3762
-
3763
- - 9625602: Use mastra core splitted bundles in other packages
3764
- - Updated dependencies [30322ce]
3765
- - Updated dependencies [78eec7c]
3766
- - Updated dependencies [9625602]
3767
- - Updated dependencies [8769a62]
3768
- - @mastra/core@0.2.0-alpha.83
3769
-
3770
- ## 0.0.2-alpha.73
3771
-
3772
- ### Patch Changes
3773
-
3774
- - Updated dependencies [73d112c]
3775
- - @mastra/core@0.1.27-alpha.82
3776
-
3777
- ## 0.0.2-alpha.72
3778
-
3779
- ### Patch Changes
3780
-
3781
- - Updated dependencies [9fb3039]
3782
- - @mastra/core@0.1.27-alpha.81
3783
-
3784
- ## 0.0.2-alpha.71
3785
-
3786
- ### Patch Changes
3787
-
3788
- - a944f1a: Bundle @mastra/rag package with tsup
3789
-
3790
- ## 0.0.2-alpha.70
3791
-
3792
- ### Patch Changes
3793
-
3794
- - 327ece7: Updates for ts versions
3795
- - Updated dependencies [327ece7]
3796
- - @mastra/core@0.1.27-alpha.80
3797
-
3798
- ## 0.0.2-alpha.69
3799
-
3800
- ### Patch Changes
3801
-
3802
- - 21fe536: add keyword tags for packages and update readmes
3803
- - Updated dependencies [21fe536]
3804
- - @mastra/core@0.1.27-alpha.79
3805
-
3806
- ## 0.0.2-alpha.68
3807
-
3808
- ### Patch Changes
3809
-
3810
- - 685108a: Remove syncs and excess rag
3811
- - Updated dependencies [685108a]
3812
- - Updated dependencies [685108a]
3813
- - @mastra/core@0.1.27-alpha.78
3814
-
3815
- ## 0.0.2-alpha.67
3816
-
3817
- ### Patch Changes
3818
-
3819
- - 8105fae: Split embed into embed and embedMany to handle different return types
3820
- - ecdee97: Update return type for chunk to Chunk[]
3821
- - Updated dependencies [8105fae]
3822
- - @mastra/core@0.1.27-alpha.77
3823
-
3824
- ## 0.0.2-alpha.66
3825
-
3826
- ### Patch Changes
3827
-
3828
- - 9c0d010: Deprecated Reranker in favor of rerank function (BREAKING CHANGE)
3829
-
3830
- ## 0.0.2-alpha.65
3831
-
3832
- ### Patch Changes
3833
-
3834
- - Updated dependencies [ae7bf94]
3835
- - Updated dependencies [ae7bf94]
3836
- - @mastra/core@0.1.27-alpha.76
3837
-
3838
- ## 0.0.2-alpha.64
3839
-
3840
- ### Patch Changes
3841
-
3842
- - Updated dependencies [23dcb23]
3843
- - @mastra/core@0.1.27-alpha.75
3844
-
3845
- ## 0.0.2-alpha.63
3846
-
3847
- ### Patch Changes
3848
-
3849
- - Updated dependencies [7b87567]
3850
- - @mastra/core@0.1.27-alpha.74
3851
-
3852
- ## 0.0.2-alpha.62
3853
-
3854
- ### Patch Changes
3855
-
3856
- - Updated dependencies [3427b95]
3857
- - @mastra/core@0.1.27-alpha.73
3858
-
3859
- ## 0.0.2-alpha.61
3860
-
3861
- ### Patch Changes
3862
-
3863
- - Updated dependencies [e4d4ede]
3864
- - Updated dependencies [06b2c0a]
3865
- - @mastra/core@0.1.27-alpha.72
3866
-
3867
- ## 0.0.2-alpha.60
3868
-
3869
- ### Patch Changes
3870
-
3871
- - Updated dependencies [d9c8dd0]
3872
- - @mastra/core@0.1.27-alpha.71
3873
-
3874
- ## 0.0.2-alpha.59
3875
-
3876
- ### Patch Changes
3877
-
3878
- - bdaf834: publish packages
3879
-
3880
- ## 0.0.2-alpha.58
3881
-
3882
- ### Patch Changes
3883
-
3884
- - Updated dependencies [dd6d87f]
3885
- - Updated dependencies [04434b6]
3886
- - @mastra/core@0.1.27-alpha.70
3887
-
3888
- ## 0.0.2-alpha.57
3889
-
3890
- ### Patch Changes
3891
-
3892
- - ab1dc59: Add Cloudflare vectorize
3893
- - 4769753: Added turso/libsql support for RAG
3894
-
3895
- ## 0.0.2-alpha.56
3896
-
3897
- ### Patch Changes
3898
-
3899
- - ee856f3: Updated pg filter function and updated docs and example
3900
- - c3047a7: Added tests
3901
-
3902
- ## 0.0.2-alpha.55
3903
-
3904
- ### Patch Changes
3905
-
3906
- - 1944807: Unified logger and major step in better logs
3907
- - Updated dependencies [1944807]
3908
- - Updated dependencies [9ade36e]
3909
- - @mastra/core@0.1.27-alpha.69
3910
-
3911
- ## 0.0.2-alpha.54
3912
-
3913
- ### Patch Changes
3914
-
3915
- - Updated dependencies [0be7181]
3916
- - Updated dependencies [0be7181]
3917
- - @mastra/core@0.1.27-alpha.68
3918
-
3919
- ## 0.0.2-alpha.53
3920
-
3921
- ### Patch Changes
3922
-
3923
- - Updated dependencies [c8ff2f5]
3924
- - @mastra/core@0.1.27-alpha.67
3925
-
3926
- ## 0.0.2-alpha.52
3927
-
3928
- ### Patch Changes
3929
-
3930
- - Updated dependencies [14064f2]
3931
- - @mastra/core@0.1.27-alpha.66
3932
-
3933
- ## 0.0.2-alpha.51
3934
-
3935
- ### Patch Changes
3936
-
3937
- - Updated dependencies [e66643a]
3938
- - @mastra/core@0.1.27-alpha.65
3939
-
3940
- ## 0.0.2-alpha.50
3941
-
3942
- ### Patch Changes
3943
-
3944
- - 1616f70: Added transaction handling to pgvector
3945
-
3946
- ## 0.0.2-alpha.49
3947
-
3948
- ### Patch Changes
3949
-
3950
- - Updated dependencies [f368477]
3951
- - Updated dependencies [d5ec619]
3952
- - @mastra/core@0.1.27-alpha.64
3953
-
3954
- ## 0.0.2-alpha.48
3955
-
3956
- ### Patch Changes
3957
-
3958
- - 5826db3: Updated reference docs and exports for Reranker and GraphRag
3959
-
3960
- ## 0.0.2-alpha.47
3961
-
3962
- ### Patch Changes
3963
-
3964
- - Updated dependencies [e097800]
3965
- - @mastra/core@0.1.27-alpha.63
3966
-
3967
- ## 0.0.2-alpha.46
3968
-
3969
- ### Patch Changes
3970
-
3971
- - Updated dependencies [93a3719]
3972
- - @mastra/core@0.1.27-alpha.62
3973
-
3974
- ## 0.0.2-alpha.45
3975
-
3976
- ### Patch Changes
3977
-
3978
- - Updated dependencies [dc90663]
3979
- - @mastra/core@0.1.27-alpha.61
3980
-
3981
- ## 0.0.2-alpha.44
3982
-
3983
- ### Patch Changes
3984
-
3985
- - 3967e69: Added GraphRAG implementation and updated docs
3986
- - Updated dependencies [3967e69]
3987
- - @mastra/core@0.1.27-alpha.60
3988
-
3989
- ## 0.0.2-alpha.43
3990
-
3991
- ### Patch Changes
3992
-
3993
- - Updated dependencies [b524c22]
3994
- - @mastra/core@0.1.27-alpha.59
3995
-
3996
- ## 0.0.2-alpha.42
3997
-
3998
- ### Patch Changes
3999
-
4000
- - 1874f40: Added re ranking tool to RAG
4001
- - Updated dependencies [1874f40]
4002
- - Updated dependencies [4b1ce2c]
4003
- - @mastra/core@0.1.27-alpha.58
4004
-
4005
- ## 0.0.2-alpha.41
4006
-
4007
- ### Patch Changes
4008
-
4009
- - 7de6d71: Update filter for vector query to work with more stores
4010
- - Updated dependencies [fd494a3]
4011
- - @mastra/core@0.1.27-alpha.57
4012
-
4013
- ## 0.0.2-alpha.40
4014
-
4015
- ### Patch Changes
4016
-
4017
- - ae638a4: make useFilter option optional
4018
- - Updated dependencies [9f3ab05]
4019
- - @mastra/core@0.1.27-alpha.56
4020
-
4021
- ## 0.0.2-alpha.39
4022
-
4023
- ### Patch Changes
4024
-
4025
- - 592e3cf: Add custom rag tools, add vector retrieval, and update docs
4026
- - 837a288: MAJOR Revamp of tools, workflows, syncs.
4027
- - 0b74006: Workflow updates
4028
- - Updated dependencies [592e3cf]
4029
- - Updated dependencies [837a288]
4030
- - Updated dependencies [0b74006]
4031
- - @mastra/core@0.1.27-alpha.55
4032
-
4033
- ## 0.0.2-alpha.38
4034
-
4035
- ### Patch Changes
4036
-
4037
- - eb45d76: Updated PG Vector filter and added rag examples in docs
4038
- - Updated dependencies [d2cd535]
4039
- - @mastra/core@0.1.27-alpha.54
4040
-
4041
- ## 0.0.2-alpha.37
4042
-
4043
- ### Patch Changes
4044
-
4045
- - Updated dependencies [8e7814f]
4046
- - @mastra/core@0.1.27-alpha.53
4047
-
4048
- ## 0.0.2-alpha.36
4049
-
4050
- ### Patch Changes
4051
-
4052
- - Updated dependencies [eedb829]
4053
- - @mastra/core@0.1.27-alpha.52
4054
-
4055
- ## 0.0.2-alpha.35
4056
-
4057
- ### Patch Changes
4058
-
4059
- - Updated dependencies [a7b016d]
4060
- - Updated dependencies [da2e8d3]
4061
- - Updated dependencies [538a136]
4062
- - @mastra/core@0.1.27-alpha.51
4063
-
4064
- ## 0.0.2-alpha.34
4065
-
4066
- ### Patch Changes
4067
-
4068
- - Updated dependencies [401a4d9]
4069
- - @mastra/core@0.1.27-alpha.50
4070
-
4071
- ## 0.0.2-alpha.33
4072
-
4073
- ### Patch Changes
4074
-
4075
- - a621c34: Add validation for indexName in pgVector and dimension for all vector dbs
4076
- - Updated dependencies [79acad0]
4077
- - Updated dependencies [f5dfa20]
4078
- - @mastra/core@0.1.27-alpha.49
4079
-
4080
- ## 0.0.2-alpha.32
4081
-
4082
- ### Patch Changes
4083
-
4084
- - Updated dependencies [b726bf5]
4085
- - @mastra/core@0.1.27-alpha.48
4086
-
4087
- ## 0.0.2-alpha.31
4088
-
4089
- ### Patch Changes
4090
-
4091
- - Updated dependencies [f6ba259]
4092
- - @mastra/core@0.1.27-alpha.47
4093
-
4094
- ## 0.0.2-alpha.30
4095
-
4096
- ### Patch Changes
4097
-
4098
- - 8ae2bbc: Dane publishing
4099
- - 0bd142c: Fixes learned from docs
4100
- - ee4de15: Dane fixes
4101
- - Updated dependencies [8ae2bbc]
4102
- - Updated dependencies [0bd142c]
4103
- - Updated dependencies [ee4de15]
4104
- - @mastra/core@0.1.27-alpha.46
4105
-
4106
- ## 0.0.2-alpha.29
4107
-
4108
- ### Patch Changes
4109
-
4110
- - Updated dependencies [e608d8c]
4111
- - Updated dependencies [002d6d8]
4112
- - @mastra/core@0.1.27-alpha.45
4113
-
4114
- ## 0.0.2-alpha.28
4115
-
4116
- ### Patch Changes
4117
-
4118
- - Updated dependencies [2fa7f53]
4119
- - @mastra/core@0.1.27-alpha.44
4120
-
4121
- ## 0.0.2-alpha.27
4122
-
4123
- ### Patch Changes
4124
-
4125
- - Updated dependencies [2e099d2]
4126
- - Updated dependencies [d6d8159]
4127
- - @mastra/core@0.1.27-alpha.43
4128
-
4129
- ## 0.0.2-alpha.26
4130
-
4131
- ### Patch Changes
4132
-
4133
- - Updated dependencies [4a54c82]
4134
- - @mastra/core@0.1.27-alpha.42
4135
-
4136
- ## 0.0.2-alpha.25
4137
-
4138
- ### Patch Changes
4139
-
4140
- - Updated dependencies [5cdfb88]
4141
- - @mastra/core@0.1.27-alpha.41
4142
-
4143
- ## 0.0.2-alpha.24
4144
-
4145
- ### Patch Changes
4146
-
4147
- - Updated dependencies [9029796]
4148
- - @mastra/core@0.1.27-alpha.40
4149
-
4150
- ## 0.0.2-alpha.23
4151
-
4152
- ### Patch Changes
4153
-
4154
- - 6101f2d: Fix module incompatibility, and dane cli build
4155
- - Updated dependencies [2b01511]
4156
- - @mastra/core@0.1.27-alpha.39
4157
-
4158
- ## 0.0.2-alpha.22
4159
-
4160
- ### Patch Changes
4161
-
4162
- - f031a1f: expose embed from rag, and refactor embed
4163
- - Updated dependencies [f031a1f]
4164
- - @mastra/core@0.1.27-alpha.38
4165
-
4166
- ## 0.0.2-alpha.21
4167
-
4168
- ### Patch Changes
4169
-
4170
- - 45fd5b8: rename MastraDocument to MDocument
4171
- - Updated dependencies [c872875]
4172
- - Updated dependencies [f6da688]
4173
- - Updated dependencies [b5393f1]
4174
- - @mastra/core@0.1.27-alpha.37
4175
-
4176
- ## 0.0.2-alpha.20
4177
-
4178
- ### Patch Changes
4179
-
4180
- - Updated dependencies [f537e33]
4181
- - Updated dependencies [bc40916]
4182
- - Updated dependencies [f7d1131]
4183
- - Updated dependencies [75bf3f0]
4184
- - Updated dependencies [3c4488b]
4185
- - Updated dependencies [d38f7a6]
4186
- - @mastra/core@0.1.27-alpha.36
4187
-
4188
- ## 0.0.2-alpha.19
4189
-
4190
- ### Patch Changes
4191
-
4192
- - 033eda6: More fixes for refactor
4193
- - Updated dependencies [033eda6]
4194
- - @mastra/core@0.1.27-alpha.35
4195
-
4196
- ## 0.0.2-alpha.18
4197
-
4198
- ### Patch Changes
4199
-
4200
- - 837a288: MAJOR Revamp of tools, workflows, syncs.
4201
- - 5811de6: Updates spec-writer example to use new workflows constructs. Small improvements to workflow internals. Switch transformer tokenizer for js compatible one.
4202
- - Updated dependencies [837a288]
4203
- - Updated dependencies [5811de6]
4204
- - @mastra/core@0.1.27-alpha.34
4205
-
4206
- ## 0.0.2-alpha.17
4207
-
4208
- ### Patch Changes
4209
-
4210
- - e1dd94a: update the api for embeddings
4211
- - Updated dependencies [e1dd94a]
4212
- - @mastra/core@0.1.27-alpha.33
4213
-
4214
- ## 0.0.2-alpha.16
4215
-
4216
- ### Patch Changes
4217
-
4218
- - Updated dependencies [2712098]
4219
- - @mastra/core@0.1.27-alpha.32
4220
-
4221
- ## 0.0.2-alpha.15
4222
-
4223
- ### Patch Changes
4224
-
4225
- - Updated dependencies [c2dd6b5]
4226
- - @mastra/core@0.1.27-alpha.31
4227
-
4228
- ## 0.0.2-alpha.14
4229
-
4230
- ### Patch Changes
4231
-
4232
- - 1c3232a: ChromaDB
4233
-
4234
- ## 0.0.2-alpha.13
4235
-
4236
- ### Patch Changes
4237
-
4238
- - Updated dependencies [963c15a]
4239
- - @mastra/core@0.1.27-alpha.30
4240
-
4241
- ## 0.0.2-alpha.12
4242
-
4243
- ### Patch Changes
4244
-
4245
- - Updated dependencies [7d87a15]
4246
- - @mastra/core@0.1.27-alpha.29
4247
-
4248
- ## 0.0.2-alpha.11
4249
-
4250
- ### Patch Changes
4251
-
4252
- - Updated dependencies [1ebd071]
4253
- - @mastra/core@0.1.27-alpha.28
4254
-
4255
- ## 0.0.2-alpha.10
4256
-
4257
- ### Patch Changes
4258
-
4259
- - 779702b: Upstash vector
4260
-
4261
- ## 0.0.2-alpha.9
4262
-
4263
- ### Patch Changes
4264
-
4265
- - Updated dependencies [cd02c56]
4266
- - @mastra/core@0.1.27-alpha.27
4267
-
4268
- ## 0.0.2-alpha.8
4269
-
4270
- ### Patch Changes
4271
-
4272
- - Updated dependencies [d5e12de]
4273
- - @mastra/core@0.1.27-alpha.26
4274
-
4275
- ## 0.0.2-alpha.7
4276
-
4277
- ### Patch Changes
4278
-
4279
- - 24fe87e: Change document semantics
4280
-
4281
- ## 0.0.2-alpha.6
4282
-
4283
- ### Patch Changes
4284
-
4285
- - Updated dependencies [01502b0]
4286
- - @mastra/core@0.1.27-alpha.25
4287
-
4288
- ## 0.0.2-alpha.5
4289
-
4290
- ### Patch Changes
4291
-
4292
- - 036ee5e: Add astra-db to rag
4293
-
4294
- ## 0.0.2-alpha.4
4295
-
4296
- ### Patch Changes
4297
-
4298
- - Updated dependencies [836f4e3]
4299
- - @mastra/core@0.1.27-alpha.24
4300
-
4301
- ## 0.0.2-alpha.3
4302
-
4303
- ### Patch Changes
4304
-
4305
- - Updated dependencies [0b826f6]
4306
- - @mastra/core@0.1.27-alpha.23
4307
-
4308
- ## 0.0.2-alpha.2
4309
-
4310
- ### Patch Changes
4311
-
4312
- - Updated dependencies [7a19083]
4313
- - @mastra/core@0.1.27-alpha.22
4314
-
4315
- ## 0.0.2-alpha.1
4316
-
4317
- ### Patch Changes
4318
-
4319
- - Updated dependencies [5ee2e78]
4320
- - @mastra/core@0.1.27-alpha.21
4321
-
4322
- ## 0.0.2-alpha.0
4323
-
4324
- ### Patch Changes
4325
-
4326
- - 8413645: Initial release for rag