@mastra/longmemeval 0.0.0-1.x-tester-20251106055847

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 (37) hide show
  1. package/CHANGELOG.md +1458 -0
  2. package/DATA_DOWNLOAD_GUIDE.md +117 -0
  3. package/LICENSE.md +15 -0
  4. package/README.md +173 -0
  5. package/USAGE.md +105 -0
  6. package/package.json +67 -0
  7. package/scripts/download.ts +180 -0
  8. package/scripts/find-failed.ts +176 -0
  9. package/scripts/generate-embeddings.ts +56 -0
  10. package/scripts/generate-wm-templates.ts +297 -0
  11. package/scripts/setup.ts +60 -0
  12. package/src/__fixtures__/embeddings.json +2319 -0
  13. package/src/__fixtures__/test-dataset.json +82 -0
  14. package/src/cli.ts +690 -0
  15. package/src/commands/__tests__/prepare.test.ts +230 -0
  16. package/src/commands/__tests__/run.test.ts +400 -0
  17. package/src/commands/prepare.ts +794 -0
  18. package/src/commands/run.ts +555 -0
  19. package/src/config.ts +83 -0
  20. package/src/data/loader.ts +163 -0
  21. package/src/data/types.ts +61 -0
  22. package/src/embeddings/cached-openai-embedding-model.ts +227 -0
  23. package/src/embeddings/cached-openai-provider.ts +40 -0
  24. package/src/embeddings/index.ts +2 -0
  25. package/src/evaluation/__tests__/longmemeval-metric.test.ts +169 -0
  26. package/src/evaluation/longmemeval-metric.ts +173 -0
  27. package/src/retry-model.ts +60 -0
  28. package/src/storage/__tests__/benchmark-store.test.ts +270 -0
  29. package/src/storage/__tests__/benchmark-vector.test.ts +214 -0
  30. package/src/storage/benchmark-store.ts +486 -0
  31. package/src/storage/benchmark-vector.ts +234 -0
  32. package/src/storage/index.ts +2 -0
  33. package/src/test-utils/mock-embeddings.ts +54 -0
  34. package/src/test-utils/mock-model.ts +49 -0
  35. package/tests/data-loader.test.ts +96 -0
  36. package/tsconfig.json +18 -0
  37. package/vitest.config.ts +9 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1458 @@
1
+ # @mastra/longmemeval
2
+
3
+ ## 0.0.0-1.x-tester-20251106055847
4
+
5
+ ### Major Changes
6
+
7
+ - **BREAKING:** Remove `getMessagesPaginated()` and add `perPage: false` support ([#9670](https://github.com/mastra-ai/mastra/pull/9670))
8
+
9
+ Removes deprecated `getMessagesPaginated()` method. The `listMessages()` API and score handlers now support `perPage: false` to fetch all records without pagination limits.
10
+
11
+ **Storage changes:**
12
+ - `StoragePagination.perPage` type changed from `number` to `number | false`
13
+ - All storage implementations support `perPage: false`:
14
+ - Memory: `listMessages()`
15
+ - Scores: `listScoresBySpan()`, `listScoresByRunId()`, `listScoresByExecutionId()`
16
+ - HTTP query parser accepts `"false"` string (e.g., `?perPage=false`)
17
+
18
+ **Memory changes:**
19
+ - `memory.query()` parameter type changed from `StorageGetMessagesArg` to `StorageListMessagesInput`
20
+ - Uses flat parameters (`page`, `perPage`, `include`, `filter`, `vectorSearchString`) instead of `selectBy` object
21
+
22
+ **Stricter validation:**
23
+ - `listMessages()` requires non-empty, non-whitespace `threadId` (throws error instead of returning empty results)
24
+
25
+ **Migration:**
26
+
27
+ ```typescript
28
+ // Storage/Memory: Replace getMessagesPaginated with listMessages
29
+ - storage.getMessagesPaginated({ threadId, selectBy: { pagination: { page: 0, perPage: 20 } } })
30
+ + storage.listMessages({ threadId, page: 0, perPage: 20 })
31
+ + storage.listMessages({ threadId, page: 0, perPage: false }) // Fetch all
32
+
33
+ // Memory: Replace selectBy with flat parameters
34
+ - memory.query({ threadId, selectBy: { last: 20, include: [...] } })
35
+ + memory.query({ threadId, perPage: 20, include: [...] })
36
+
37
+ // Client SDK
38
+ - thread.getMessagesPaginated({ selectBy: { pagination: { page: 0 } } })
39
+ + thread.listMessages({ page: 0, perPage: 20 })
40
+ ```
41
+
42
+ - # Major Changes ([#9695](https://github.com/mastra-ai/mastra/pull/9695))
43
+
44
+ ## Storage Layer
45
+
46
+ ### BREAKING: Removed `storage.getMessages()`
47
+
48
+ The `getMessages()` method has been removed from all storage implementations. Use `listMessages()` instead, which provides pagination support.
49
+
50
+ **Migration:**
51
+
52
+ ```typescript
53
+ // Before
54
+ const messages = await storage.getMessages({ threadId: 'thread-1' });
55
+
56
+ // After
57
+ const result = await storage.listMessages({
58
+ threadId: 'thread-1',
59
+ page: 0,
60
+ perPage: 50,
61
+ });
62
+ const messages = result.messages; // Access messages array
63
+ console.log(result.total); // Total count
64
+ console.log(result.hasMore); // Whether more pages exist
65
+ ```
66
+
67
+ ### Message ordering default
68
+
69
+ `listMessages()` defaults to ASC (oldest first) ordering by `createdAt`, matching the previous `getMessages()` behavior.
70
+
71
+ **To use DESC ordering (newest first):**
72
+
73
+ ```typescript
74
+ const result = await storage.listMessages({
75
+ threadId: 'thread-1',
76
+ orderBy: { field: 'createdAt', direction: 'DESC' },
77
+ });
78
+ ```
79
+
80
+ ## Client SDK
81
+
82
+ ### BREAKING: Renamed `client.getThreadMessages()` → `client.listThreadMessages()`
83
+
84
+ **Migration:**
85
+
86
+ ```typescript
87
+ // Before
88
+ const response = await client.getThreadMessages(threadId, { agentId });
89
+
90
+ // After
91
+ const response = await client.listThreadMessages(threadId, { agentId });
92
+ ```
93
+
94
+ The response format remains the same.
95
+
96
+ ## Type Changes
97
+
98
+ ### BREAKING: Removed `StorageGetMessagesArg` type
99
+
100
+ Use `StorageListMessagesInput` instead:
101
+
102
+ ```typescript
103
+ // Before
104
+ import type { StorageGetMessagesArg } from '@mastra/core';
105
+
106
+ // After
107
+ import type { StorageListMessagesInput } from '@mastra/core';
108
+ ```
109
+
110
+ - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
111
+
112
+ - Remove `getThreadsByResourceId` and `getThreadsByResourceIdPaginated` methods from storage interfaces in favor of `listThreadsByResourceId`. The new method uses `offset`/`limit` pagination and a nested `orderBy` object structure (`{ field, direction }`). ([#9536](https://github.com/mastra-ai/mastra/pull/9536))
113
+
114
+ - Removed old tracing code based on OpenTelemetry ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
115
+
116
+ - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
117
+
118
+ - Remove legacy evals from Mastra ([#9491](https://github.com/mastra-ai/mastra/pull/9491))
119
+
120
+ ### Patch Changes
121
+
122
+ - Updated dependencies [[`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), [`735d8c1`](https://github.com/mastra-ai/mastra/commit/735d8c1c0d19fbc09e6f8b66cf41bc7655993838), [`6c049d9`](https://github.com/mastra-ai/mastra/commit/6c049d94063fdcbd5b81c4912a2bf82a92c9cc0b), [`2f897df`](https://github.com/mastra-ai/mastra/commit/2f897df208508f46f51b7625e5dd20c37f93e0e3), [`f0f8f12`](https://github.com/mastra-ai/mastra/commit/f0f8f125c308f2d0fd36942ef652fd852df7522f), [`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), [`f0f8f12`](https://github.com/mastra-ai/mastra/commit/f0f8f125c308f2d0fd36942ef652fd852df7522f), [`e629310`](https://github.com/mastra-ai/mastra/commit/e629310f1a73fa236d49ec7a1d1cceb6229dc7cc), [`844ea5d`](https://github.com/mastra-ai/mastra/commit/844ea5dc0c248961e7bf73629ae7dcff503e853c), [`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), [`a51cc81`](https://github.com/mastra-ai/mastra/commit/a51cc813e98fe115ef59df7de394fdbb9ffa7f9c), [`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), [`b88dd9d`](https://github.com/mastra-ai/mastra/commit/b88dd9dfd04a5f1a35d54f48eda944eac29923c2), [`0793497`](https://github.com/mastra-ai/mastra/commit/079349753620c40246ffd673e3f9d7d9820beff3), [`0d7618b`](https://github.com/mastra-ai/mastra/commit/0d7618bc650bf2800934b243eca5648f4aeed9c2), [`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), [`2a90c55`](https://github.com/mastra-ai/mastra/commit/2a90c55a86a9210697d5adaab5ee94584b079adc), [`4c6b492`](https://github.com/mastra-ai/mastra/commit/4c6b492c4dd591c6a592520c1f6855d6e936d71f), [`eb09742`](https://github.com/mastra-ai/mastra/commit/eb09742197f66c4c38154c3beec78313e69760b2), [`ebac155`](https://github.com/mastra-ai/mastra/commit/ebac15564a590117db7078233f927a7e28a85106), [`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), [`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), [`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), [`22f64bc`](https://github.com/mastra-ai/mastra/commit/22f64bc1d37149480b58bf2fefe35b79a1e3e7d5), [`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc), [`dff01d8`](https://github.com/mastra-ai/mastra/commit/dff01d81ce1f4e4087cfac20fa868e6db138dd14), [`b7959e6`](https://github.com/mastra-ai/mastra/commit/b7959e6e25a46b480f9ea2217c4c6c588c423791), [`bda6370`](https://github.com/mastra-ai/mastra/commit/bda637009360649aaf579919e7873e33553c273e), [`245820c`](https://github.com/mastra-ai/mastra/commit/245820cdea463218fd1c4e62eb2a349d6520fe71), [`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), [`c218bd3`](https://github.com/mastra-ai/mastra/commit/c218bd3759e32423735b04843a09404572631014), [`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)]:
123
+ - @mastra/core@0.0.0-1.x-tester-20251106055847
124
+ - @mastra/libsql@0.0.0-1.x-tester-20251106055847
125
+ - @mastra/memory@0.0.0-1.x-tester-20251106055847
126
+ - @mastra/fastembed@0.0.0-1.x-tester-20251106055847
127
+ - @mastra/rag@0.0.0-1.x-tester-20251106055847
128
+
129
+ ## 0.1.31
130
+
131
+ ### Patch Changes
132
+
133
+ - Updated dependencies [[`2b031e2`](https://github.com/mastra-ai/mastra/commit/2b031e25ca10cd3e4d63e6a27f909cba26d91405)]:
134
+ - @mastra/core@0.22.2
135
+
136
+ ## 0.1.31-alpha.0
137
+
138
+ ### Patch Changes
139
+
140
+ - Updated dependencies [[`2b031e2`](https://github.com/mastra-ai/mastra/commit/2b031e25ca10cd3e4d63e6a27f909cba26d91405)]:
141
+ - @mastra/core@0.22.2-alpha.0
142
+
143
+ ## 0.1.30
144
+
145
+ ### Patch Changes
146
+
147
+ - Updated dependencies []:
148
+ - @mastra/core@0.22.1
149
+
150
+ ## 0.1.30-alpha.0
151
+
152
+ ### Patch Changes
153
+
154
+ - Updated dependencies []:
155
+ - @mastra/core@0.22.1-alpha.0
156
+
157
+ ## 0.1.29
158
+
159
+ ### Patch Changes
160
+
161
+ - 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), [`02fe153`](https://github.com/mastra-ai/mastra/commit/02fe15351d6021d214da48ec982a0e9e4150bcee), [`fc2a774`](https://github.com/mastra-ai/mastra/commit/fc2a77468981aaddc3e77f83f0c4ad4a4af140da), [`4e08933`](https://github.com/mastra-ai/mastra/commit/4e08933625464dfde178347af5b6278fcf34188e), [`10188d6`](https://github.com/mastra-ai/mastra/commit/10188d632a729010441f9c7e2a41eab60afccb23)]:
162
+ - @mastra/core@0.22.0
163
+ - @mastra/libsql@0.16.0
164
+ - @mastra/memory@0.15.8
165
+ - @mastra/rag@1.3.2
166
+
167
+ ## 0.1.29-alpha.1
168
+
169
+ ### Patch Changes
170
+
171
+ - 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), [`10188d6`](https://github.com/mastra-ai/mastra/commit/10188d632a729010441f9c7e2a41eab60afccb23)]:
172
+ - @mastra/core@0.22.0-alpha.1
173
+ - @mastra/memory@0.15.8-alpha.0
174
+ - @mastra/libsql@0.16.0-alpha.1
175
+ - @mastra/rag@1.3.2-alpha.0
176
+
177
+ ## 0.1.29-alpha.0
178
+
179
+ ### Patch Changes
180
+
181
+ - Updated dependencies [[`c67ca32`](https://github.com/mastra-ai/mastra/commit/c67ca32e3c2cf69bfc146580770c720220ca44ac), [`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), [`f053e89`](https://github.com/mastra-ai/mastra/commit/f053e89160dbd0bd3333fc3492f68231b5c7c349), [`9a1a485`](https://github.com/mastra-ai/mastra/commit/9a1a4859b855e37239f652bf14b1ecd1029b8c4e), [`9257233`](https://github.com/mastra-ai/mastra/commit/9257233c4ffce09b2bedc2a9adbd70d7a83fa8e2), [`0f1a4c9`](https://github.com/mastra-ai/mastra/commit/0f1a4c984fb4b104b2f0b63ba18c9fa77f567700), [`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), [`74567b3`](https://github.com/mastra-ai/mastra/commit/74567b3d237ae3915cd0bca3cf55fa0a64e4e4a4), [`15a1733`](https://github.com/mastra-ai/mastra/commit/15a1733074cee8bd37370e1af34cd818e89fa7ac), [`02fe153`](https://github.com/mastra-ai/mastra/commit/02fe15351d6021d214da48ec982a0e9e4150bcee), [`fc2a774`](https://github.com/mastra-ai/mastra/commit/fc2a77468981aaddc3e77f83f0c4ad4a4af140da), [`4e08933`](https://github.com/mastra-ai/mastra/commit/4e08933625464dfde178347af5b6278fcf34188e)]:
182
+ - @mastra/core@0.21.2-alpha.0
183
+ - @mastra/libsql@0.16.0-alpha.0
184
+
185
+ ## 0.1.28
186
+
187
+ ### Patch Changes
188
+
189
+ - Updated dependencies [[`ca85c93`](https://github.com/mastra-ai/mastra/commit/ca85c932b232e6ad820c811ec176d98e68c59b0a), [`a1d40f8`](https://github.com/mastra-ai/mastra/commit/a1d40f88d4ce42c4508774ad22e38ac582157af2), [`01c4a25`](https://github.com/mastra-ai/mastra/commit/01c4a2506c514d5e861c004d3d2fb3791c6391f3), [`cce8aad`](https://github.com/mastra-ai/mastra/commit/cce8aad878a0dd98e5647680f3765caba0b1701c)]:
190
+ - @mastra/core@0.21.1
191
+
192
+ ## 0.1.28-alpha.0
193
+
194
+ ### Patch Changes
195
+
196
+ - Updated dependencies [[`ca85c93`](https://github.com/mastra-ai/mastra/commit/ca85c932b232e6ad820c811ec176d98e68c59b0a), [`a1d40f8`](https://github.com/mastra-ai/mastra/commit/a1d40f88d4ce42c4508774ad22e38ac582157af2), [`01c4a25`](https://github.com/mastra-ai/mastra/commit/01c4a2506c514d5e861c004d3d2fb3791c6391f3), [`cce8aad`](https://github.com/mastra-ai/mastra/commit/cce8aad878a0dd98e5647680f3765caba0b1701c)]:
197
+ - @mastra/core@0.21.1-alpha.0
198
+
199
+ ## 0.1.27
200
+
201
+ ### Patch Changes
202
+
203
+ - Updated dependencies [[`2288200`](https://github.com/mastra-ai/mastra/commit/22882001be465d960a88f2c7f9ff1502787eefe8), [`f368e7b`](https://github.com/mastra-ai/mastra/commit/f368e7b19436a14e5771c46810e5ae93a2faf2e9), [`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), [`16f1c10`](https://github.com/mastra-ai/mastra/commit/16f1c1062530419e3dc1c4076dc5e54872b15019), [`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), [`2ddb851`](https://github.com/mastra-ai/mastra/commit/2ddb8519c4b6f1d31be10ffd33b41d2b649a04ff), [`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), [`228228b`](https://github.com/mastra-ai/mastra/commit/228228b0b1de9291cb8887587f5cea1a8757ebad), [`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`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), [`7b1ef57`](https://github.com/mastra-ai/mastra/commit/7b1ef57fc071c2aa2a2e32905b18cd88719c5a39), [`135d6f2`](https://github.com/mastra-ai/mastra/commit/135d6f22a326ed1dffff858700669dff09d2c9eb)]:
204
+ - @mastra/memory@0.15.7
205
+ - @mastra/core@0.21.0
206
+ - @mastra/rag@1.3.1
207
+ - @mastra/libsql@0.15.2
208
+
209
+ ## 0.1.27-alpha.4
210
+
211
+ ### Patch Changes
212
+
213
+ - Updated dependencies [[`1908ca0`](https://github.com/mastra-ai/mastra/commit/1908ca0521f90e43779cc29ab590173ca560443c)]:
214
+ - @mastra/core@0.21.0-alpha.4
215
+
216
+ ## 0.1.27-alpha.3
217
+
218
+ ### Patch Changes
219
+
220
+ - Updated dependencies [[`a1799bc`](https://github.com/mastra-ai/mastra/commit/a1799bcc1b5a1cdc188f2ac0165f17a1c4ac6f7b), [`6ff6094`](https://github.com/mastra-ai/mastra/commit/6ff60946f4ecfebdeef6e21d2b230c2204f2c9b8)]:
221
+ - @mastra/core@0.21.0-alpha.3
222
+
223
+ ## 0.1.27-alpha.2
224
+
225
+ ### Patch Changes
226
+
227
+ - Updated dependencies [[`f59fc1e`](https://github.com/mastra-ai/mastra/commit/f59fc1e406b8912e692f6bff6cfd4754cc8d165c)]:
228
+ - @mastra/core@0.21.0-alpha.2
229
+
230
+ ## 0.1.27-alpha.1
231
+
232
+ ### Patch Changes
233
+
234
+ - Updated dependencies [[`1ed9670`](https://github.com/mastra-ai/mastra/commit/1ed9670d3ca50cb60dc2e517738c5eef3968ed27), [`16f1c10`](https://github.com/mastra-ai/mastra/commit/16f1c1062530419e3dc1c4076dc5e54872b15019), [`158381d`](https://github.com/mastra-ai/mastra/commit/158381d39335be934b81ef8a1947bccace492c25), [`fb703b9`](https://github.com/mastra-ai/mastra/commit/fb703b9634eeaff1a6eb2b5531ce0f9e8fb04727), [`37a2314`](https://github.com/mastra-ai/mastra/commit/37a23148e0e5a3b40d4f9f098b194671a8a49faf), [`05a9dee`](https://github.com/mastra-ai/mastra/commit/05a9dee3d355694d28847bfffb6289657fcf7dfa), [`e3c1077`](https://github.com/mastra-ai/mastra/commit/e3c107763aedd1643d3def5df450c235da9ff76c), [`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), [`65493b3`](https://github.com/mastra-ai/mastra/commit/65493b31c36f6fdb78f9679f7e1ecf0c250aa5ee), [`a998b8f`](https://github.com/mastra-ai/mastra/commit/a998b8f858091c2ec47683e60766cf12d03001e4), [`8a37bdd`](https://github.com/mastra-ai/mastra/commit/8a37bddb6d8614a32c5b70303d583d80c620ea61)]:
235
+ - @mastra/core@0.21.0-alpha.1
236
+ - @mastra/memory@0.15.7-alpha.1
237
+
238
+ ## 0.1.27-alpha.0
239
+
240
+ ### Patch Changes
241
+
242
+ - Updated dependencies [[`2288200`](https://github.com/mastra-ai/mastra/commit/22882001be465d960a88f2c7f9ff1502787eefe8), [`f368e7b`](https://github.com/mastra-ai/mastra/commit/f368e7b19436a14e5771c46810e5ae93a2faf2e9), [`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`2ddb851`](https://github.com/mastra-ai/mastra/commit/2ddb8519c4b6f1d31be10ffd33b41d2b649a04ff), [`7b1ef57`](https://github.com/mastra-ai/mastra/commit/7b1ef57fc071c2aa2a2e32905b18cd88719c5a39), [`228228b`](https://github.com/mastra-ai/mastra/commit/228228b0b1de9291cb8887587f5cea1a8757ebad), [`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`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), [`7b1ef57`](https://github.com/mastra-ai/mastra/commit/7b1ef57fc071c2aa2a2e32905b18cd88719c5a39), [`135d6f2`](https://github.com/mastra-ai/mastra/commit/135d6f22a326ed1dffff858700669dff09d2c9eb), [`59d036d`](https://github.com/mastra-ai/mastra/commit/59d036d4c2706b430b0e3f1f1e0ee853ce16ca04)]:
243
+ - @mastra/memory@0.15.7-alpha.0
244
+ - @mastra/core@0.21.0-alpha.0
245
+ - @mastra/rag@1.3.1-alpha.0
246
+ - @mastra/libsql@0.15.2-alpha.0
247
+
248
+ ## 0.1.26
249
+
250
+ ### Patch Changes
251
+
252
+ - Updated dependencies [[`07eaf25`](https://github.com/mastra-ai/mastra/commit/07eaf25aada9e42235dbf905854de53da4d8121b), [`0d71771`](https://github.com/mastra-ai/mastra/commit/0d71771f5711164c79f8e80919bc84d6bffeb6bc), [`0d6e55e`](https://github.com/mastra-ai/mastra/commit/0d6e55ecc5a2e689cd4fc9c86525e0eb54d82372), [`68b1111`](https://github.com/mastra-ai/mastra/commit/68b11118a1303f93e9c0c157850c0751309304c5)]:
253
+ - @mastra/core@0.20.2
254
+
255
+ ## 0.1.26-alpha.1
256
+
257
+ ### Patch Changes
258
+
259
+ - Updated dependencies [[`07eaf25`](https://github.com/mastra-ai/mastra/commit/07eaf25aada9e42235dbf905854de53da4d8121b), [`68b1111`](https://github.com/mastra-ai/mastra/commit/68b11118a1303f93e9c0c157850c0751309304c5)]:
260
+ - @mastra/core@0.20.2-alpha.1
261
+
262
+ ## 0.1.26-alpha.0
263
+
264
+ ### Patch Changes
265
+
266
+ - Updated dependencies [[`0d71771`](https://github.com/mastra-ai/mastra/commit/0d71771f5711164c79f8e80919bc84d6bffeb6bc), [`0d6e55e`](https://github.com/mastra-ai/mastra/commit/0d6e55ecc5a2e689cd4fc9c86525e0eb54d82372)]:
267
+ - @mastra/core@0.20.2-alpha.0
268
+
269
+ ## 0.1.25
270
+
271
+ ### Patch Changes
272
+
273
+ - Mutable shared workflow run state ([#8545](https://github.com/mastra-ai/mastra/pull/8545))
274
+
275
+ - Updated dependencies [[`c621613`](https://github.com/mastra-ai/mastra/commit/c621613069173c69eb2c3ef19a5308894c6549f0), [`12b1189`](https://github.com/mastra-ai/mastra/commit/12b118942445e4de0dd916c593e33ec78dc3bc73), [`4783b30`](https://github.com/mastra-ai/mastra/commit/4783b3063efea887825514b783ba27f67912c26d), [`076b092`](https://github.com/mastra-ai/mastra/commit/076b0924902ff0f49d5712d2df24c4cca683713f), [`2aee9e7`](https://github.com/mastra-ai/mastra/commit/2aee9e7d188b8b256a4ddc203ccefb366b4867fa), [`c582906`](https://github.com/mastra-ai/mastra/commit/c5829065a346260f96c4beb8af131b94804ae3ad), [`fa2eb96`](https://github.com/mastra-ai/mastra/commit/fa2eb96af16c7d433891a73932764960d3235c1d), [`ee9108f`](https://github.com/mastra-ai/mastra/commit/ee9108fa29bb8368fc23df158c9f0645b2d7b65c), [`4783b30`](https://github.com/mastra-ai/mastra/commit/4783b3063efea887825514b783ba27f67912c26d), [`a739d0c`](https://github.com/mastra-ai/mastra/commit/a739d0c8b37cd89569e04a6ca0827083c6167e19), [`603e927`](https://github.com/mastra-ai/mastra/commit/603e9279db8bf8a46caf83881c6b7389ccffff7e), [`cd45982`](https://github.com/mastra-ai/mastra/commit/cd4598291cda128a88738734ae6cbef076ebdebd), [`874f74d`](https://github.com/mastra-ai/mastra/commit/874f74da4b1acf6517f18132d035612c3ecc394a), [`b728a45`](https://github.com/mastra-ai/mastra/commit/b728a45ab3dba59da0f5ee36b81fe246659f305d), [`0baf2ba`](https://github.com/mastra-ai/mastra/commit/0baf2bab8420277072ef1f95df5ea7b0a2f61fe7), [`0ec8b4a`](https://github.com/mastra-ai/mastra/commit/0ec8b4a358db917016f45f1b5df3c81831c51834), [`10e633a`](https://github.com/mastra-ai/mastra/commit/10e633a07d333466d9734c97acfc3dbf757ad2d0), [`a6d69c5`](https://github.com/mastra-ai/mastra/commit/a6d69c5fb50c0875b46275811fece5862f03c6a0), [`84199af`](https://github.com/mastra-ai/mastra/commit/84199af8673f6f9cb59286ffb5477a41932775de), [`7f431af`](https://github.com/mastra-ai/mastra/commit/7f431afd586b7d3265075e73106eb73167edbb86), [`26e968d`](https://github.com/mastra-ai/mastra/commit/26e968db2171ded9e4d47aa1b4f19e1e771158d0), [`cbd3fb6`](https://github.com/mastra-ai/mastra/commit/cbd3fb65adb03a7c0df193cb998aed5ac56675ee)]:
276
+ - @mastra/core@0.20.1
277
+ - @mastra/memory@0.15.6
278
+
279
+ ## 0.1.25-alpha.4
280
+
281
+ ### Patch Changes
282
+
283
+ - Updated dependencies [[`b728a45`](https://github.com/mastra-ai/mastra/commit/b728a45ab3dba59da0f5ee36b81fe246659f305d)]:
284
+ - @mastra/core@0.20.1-alpha.4
285
+
286
+ ## 0.1.25-alpha.3
287
+
288
+ ### Patch Changes
289
+
290
+ - Updated dependencies [[`a6d69c5`](https://github.com/mastra-ai/mastra/commit/a6d69c5fb50c0875b46275811fece5862f03c6a0), [`84199af`](https://github.com/mastra-ai/mastra/commit/84199af8673f6f9cb59286ffb5477a41932775de), [`7f431af`](https://github.com/mastra-ai/mastra/commit/7f431afd586b7d3265075e73106eb73167edbb86)]:
291
+ - @mastra/core@0.20.1-alpha.3
292
+ - @mastra/memory@0.15.6-alpha.1
293
+
294
+ ## 0.1.25-alpha.2
295
+
296
+ ### Patch Changes
297
+
298
+ - Updated dependencies [[`ee9108f`](https://github.com/mastra-ai/mastra/commit/ee9108fa29bb8368fc23df158c9f0645b2d7b65c)]:
299
+ - @mastra/core@0.20.1-alpha.2
300
+
301
+ ## 0.1.25-alpha.1
302
+
303
+ ### Patch Changes
304
+
305
+ - Mutable shared workflow run state ([#8545](https://github.com/mastra-ai/mastra/pull/8545))
306
+
307
+ - Updated dependencies [[`c621613`](https://github.com/mastra-ai/mastra/commit/c621613069173c69eb2c3ef19a5308894c6549f0), [`12b1189`](https://github.com/mastra-ai/mastra/commit/12b118942445e4de0dd916c593e33ec78dc3bc73), [`4783b30`](https://github.com/mastra-ai/mastra/commit/4783b3063efea887825514b783ba27f67912c26d), [`076b092`](https://github.com/mastra-ai/mastra/commit/076b0924902ff0f49d5712d2df24c4cca683713f), [`2aee9e7`](https://github.com/mastra-ai/mastra/commit/2aee9e7d188b8b256a4ddc203ccefb366b4867fa), [`c582906`](https://github.com/mastra-ai/mastra/commit/c5829065a346260f96c4beb8af131b94804ae3ad), [`fa2eb96`](https://github.com/mastra-ai/mastra/commit/fa2eb96af16c7d433891a73932764960d3235c1d), [`4783b30`](https://github.com/mastra-ai/mastra/commit/4783b3063efea887825514b783ba27f67912c26d), [`a739d0c`](https://github.com/mastra-ai/mastra/commit/a739d0c8b37cd89569e04a6ca0827083c6167e19), [`603e927`](https://github.com/mastra-ai/mastra/commit/603e9279db8bf8a46caf83881c6b7389ccffff7e), [`cd45982`](https://github.com/mastra-ai/mastra/commit/cd4598291cda128a88738734ae6cbef076ebdebd), [`874f74d`](https://github.com/mastra-ai/mastra/commit/874f74da4b1acf6517f18132d035612c3ecc394a), [`0baf2ba`](https://github.com/mastra-ai/mastra/commit/0baf2bab8420277072ef1f95df5ea7b0a2f61fe7), [`0ec8b4a`](https://github.com/mastra-ai/mastra/commit/0ec8b4a358db917016f45f1b5df3c81831c51834), [`26e968d`](https://github.com/mastra-ai/mastra/commit/26e968db2171ded9e4d47aa1b4f19e1e771158d0), [`cbd3fb6`](https://github.com/mastra-ai/mastra/commit/cbd3fb65adb03a7c0df193cb998aed5ac56675ee)]:
308
+ - @mastra/core@0.20.1-alpha.1
309
+ - @mastra/memory@0.15.6-alpha.0
310
+
311
+ ## 0.1.25-alpha.0
312
+
313
+ ### Patch Changes
314
+
315
+ - Updated dependencies [[`10e633a`](https://github.com/mastra-ai/mastra/commit/10e633a07d333466d9734c97acfc3dbf757ad2d0)]:
316
+ - @mastra/core@0.20.1-alpha.0
317
+
318
+ ## 0.1.24
319
+
320
+ ### Patch Changes
321
+
322
+ - 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)]:
323
+ - @mastra/core@0.20.0
324
+ - @mastra/rag@1.3.0
325
+ - @mastra/memory@0.15.5
326
+ - @mastra/libsql@0.15.1
327
+
328
+ ## 0.1.24-alpha.0
329
+
330
+ ### Patch Changes
331
+
332
+ - 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)]:
333
+ - @mastra/core@0.20.0-alpha.0
334
+ - @mastra/rag@1.3.0-alpha.0
335
+ - @mastra/memory@0.15.5-alpha.0
336
+ - @mastra/libsql@0.15.1-alpha.0
337
+
338
+ ## 0.1.23
339
+
340
+ ### Patch Changes
341
+
342
+ - Updated dependencies [[`4a70ccc`](https://github.com/mastra-ai/mastra/commit/4a70ccc5cfa12ae9c2b36545a5814cd98e5a0ead), [`0992b8b`](https://github.com/mastra-ai/mastra/commit/0992b8bf0f4f1ba7ad9940883ec4bb8d867d3105), [`283bea0`](https://github.com/mastra-ai/mastra/commit/283bea07adbaf04a27fa3ad2df611095e0825195)]:
343
+ - @mastra/core@0.19.1
344
+
345
+ ## 0.1.23-alpha.1
346
+
347
+ ### Patch Changes
348
+
349
+ - Updated dependencies [[`4a70ccc`](https://github.com/mastra-ai/mastra/commit/4a70ccc5cfa12ae9c2b36545a5814cd98e5a0ead)]:
350
+ - @mastra/core@0.19.1-alpha.1
351
+
352
+ ## 0.1.23-alpha.0
353
+
354
+ ### Patch Changes
355
+
356
+ - Updated dependencies [[`0992b8b`](https://github.com/mastra-ai/mastra/commit/0992b8bf0f4f1ba7ad9940883ec4bb8d867d3105), [`283bea0`](https://github.com/mastra-ai/mastra/commit/283bea07adbaf04a27fa3ad2df611095e0825195)]:
357
+ - @mastra/core@0.19.1-alpha.0
358
+
359
+ ## 0.1.22
360
+
361
+ ### Patch Changes
362
+
363
+ - 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), [`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`9bea94d`](https://github.com/mastra-ai/mastra/commit/9bea94d36582ec6aa69126ab3b5f97e38aac9d98), [`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), [`e8f379d`](https://github.com/mastra-ai/mastra/commit/e8f379d390efa264c4e0874f9ac0cf8839b07777), [`809eea0`](https://github.com/mastra-ai/mastra/commit/809eea092fa80c3f69b9eaf078d843b57fd2a88e), [`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`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)]:
364
+ - @mastra/core@0.19.0
365
+ - @mastra/memory@0.15.4
366
+ - @mastra/libsql@0.15.0
367
+ - @mastra/rag@1.2.7
368
+
369
+ ## 0.1.22-alpha.1
370
+
371
+ ### Patch Changes
372
+
373
+ - Updated dependencies [[`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`a7243e2`](https://github.com/mastra-ai/mastra/commit/a7243e2e58762667a6e3921e755e89d6bb0a3282), [`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`9bea94d`](https://github.com/mastra-ai/mastra/commit/9bea94d36582ec6aa69126ab3b5f97e38aac9d98), [`7fceb0a`](https://github.com/mastra-ai/mastra/commit/7fceb0a327d678e812f90f5387c5bc4f38bd039e), [`df64f9e`](https://github.com/mastra-ai/mastra/commit/df64f9ef814916fff9baedd861c988084e7c41de), [`e8f379d`](https://github.com/mastra-ai/mastra/commit/e8f379d390efa264c4e0874f9ac0cf8839b07777), [`809eea0`](https://github.com/mastra-ai/mastra/commit/809eea092fa80c3f69b9eaf078d843b57fd2a88e), [`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`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)]:
374
+ - @mastra/core@0.19.0-alpha.1
375
+ - @mastra/memory@0.15.4-alpha.0
376
+ - @mastra/libsql@0.15.0-alpha.0
377
+ - @mastra/rag@1.2.7-alpha.0
378
+
379
+ ## 0.1.22-alpha.0
380
+
381
+ ### Patch Changes
382
+
383
+ - Updated dependencies [[`dc099b4`](https://github.com/mastra-ai/mastra/commit/dc099b40fb31147ba3f362f98d991892033c4c67), [`b342a68`](https://github.com/mastra-ai/mastra/commit/b342a68e1399cf1ece9ba11bda112db89d21118c), [`303a9c0`](https://github.com/mastra-ai/mastra/commit/303a9c0d7dd58795915979f06a0512359e4532fb), [`370f8a6`](https://github.com/mastra-ai/mastra/commit/370f8a6480faec70fef18d72e5f7538f27004301), [`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), [`3e292ba`](https://github.com/mastra-ai/mastra/commit/3e292ba00837886d5d68a34cbc0d9b703c991883), [`418c136`](https://github.com/mastra-ai/mastra/commit/418c1366843d88e491bca3f87763899ce855ca29), [`c84b7d0`](https://github.com/mastra-ai/mastra/commit/c84b7d093c4657772140cbfd2b15ef72f3315ed5)]:
384
+ - @mastra/core@0.18.1-alpha.0
385
+
386
+ ## 0.1.21
387
+
388
+ ### Patch Changes
389
+
390
+ - Updated dependencies [[`6b7e804`](https://github.com/mastra-ai/mastra/commit/6b7e80406ba91bd6c6f5789f90e33551a48e66b1), [`5e1fa13`](https://github.com/mastra-ai/mastra/commit/5e1fa1371deef46395b68433ed2bb0518e4f1344), [`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), [`5b1ee71`](https://github.com/mastra-ai/mastra/commit/5b1ee71dc3ac92383226dc1e375642ca5f9b4224)]:
391
+ - @mastra/memory@0.15.3
392
+ - @mastra/rag@1.2.6
393
+ - @mastra/core@0.18.0
394
+ - @mastra/libsql@0.14.3
395
+
396
+ ## 0.1.21-alpha.3
397
+
398
+ ### Patch Changes
399
+
400
+ - Updated dependencies [[`6b7e804`](https://github.com/mastra-ai/mastra/commit/6b7e80406ba91bd6c6f5789f90e33551a48e66b1), [`4b339b8`](https://github.com/mastra-ai/mastra/commit/4b339b8141c20d6a6d80583c7e8c5c05d8c19492), [`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)]:
401
+ - @mastra/memory@0.15.3-alpha.1
402
+ - @mastra/core@0.18.0-alpha.3
403
+
404
+ ## 0.1.21-alpha.2
405
+
406
+ ### Patch Changes
407
+
408
+ - Updated dependencies [[`5e1fa13`](https://github.com/mastra-ai/mastra/commit/5e1fa1371deef46395b68433ed2bb0518e4f1344), [`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), [`5b1ee71`](https://github.com/mastra-ai/mastra/commit/5b1ee71dc3ac92383226dc1e375642ca5f9b4224)]:
409
+ - @mastra/rag@1.2.6-alpha.0
410
+ - @mastra/core@0.18.0-alpha.2
411
+ - @mastra/memory@0.15.3-alpha.0
412
+ - @mastra/libsql@0.14.3-alpha.0
413
+
414
+ ## 0.1.21-alpha.1
415
+
416
+ ### Patch Changes
417
+
418
+ - Updated dependencies [[`c45298a`](https://github.com/mastra-ai/mastra/commit/c45298a0a0791db35cf79f1199d77004da0704cb)]:
419
+ - @mastra/core@0.17.2-alpha.1
420
+
421
+ ## 0.1.21-alpha.0
422
+
423
+ ### Patch Changes
424
+
425
+ - Updated dependencies [[`a61f23f`](https://github.com/mastra-ai/mastra/commit/a61f23fbbca4b88b763d94f1d784c47895ed72d7), [`d1dc606`](https://github.com/mastra-ai/mastra/commit/d1dc6067b0557a71190b68d56ee15b48c26d2411), [`d3bd4d4`](https://github.com/mastra-ai/mastra/commit/d3bd4d482a685bbb67bfa89be91c90dca3fa71ad)]:
426
+ - @mastra/core@0.17.2-alpha.0
427
+
428
+ ## 0.1.20
429
+
430
+ ### Patch Changes
431
+
432
+ - Updated dependencies [[`fd00e63`](https://github.com/mastra-ai/mastra/commit/fd00e63759cbcca3473c40cac9843280b0557cff), [`ab610f6`](https://github.com/mastra-ai/mastra/commit/ab610f6f41dbfe6c9502368671485ca7a0aac09b), [`e6bda5f`](https://github.com/mastra-ai/mastra/commit/e6bda5f954ee8493ea18adc1a883f0a5b785ad9b)]:
433
+ - @mastra/core@0.17.1
434
+
435
+ ## 0.1.20-alpha.0
436
+
437
+ ### Patch Changes
438
+
439
+ - Updated dependencies [[`fd00e63`](https://github.com/mastra-ai/mastra/commit/fd00e63759cbcca3473c40cac9843280b0557cff), [`ab610f6`](https://github.com/mastra-ai/mastra/commit/ab610f6f41dbfe6c9502368671485ca7a0aac09b), [`e6bda5f`](https://github.com/mastra-ai/mastra/commit/e6bda5f954ee8493ea18adc1a883f0a5b785ad9b)]:
440
+ - @mastra/core@0.17.1-alpha.0
441
+
442
+ ## 0.1.19
443
+
444
+ ### Patch Changes
445
+
446
+ - Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
447
+
448
+ - Updated dependencies [[`197cbb2`](https://github.com/mastra-ai/mastra/commit/197cbb248fc8cb4bbf61bf70b770f1388b445df2), [`2cecf62`](https://github.com/mastra-ai/mastra/commit/2cecf62739e6107d6f6a10de51bf7de88ff6d9e6), [`2ebe4c4`](https://github.com/mastra-ai/mastra/commit/2ebe4c4c34dd3e16b94cf66f6d5ce03a286e322a), [`3359146`](https://github.com/mastra-ai/mastra/commit/3359146477152fc68047d96081078b0912125824), [`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), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382), [`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), [`fdc1394`](https://github.com/mastra-ai/mastra/commit/fdc13940f16d8ffcffebe96fe60396edae81450c), [`0fed8f2`](https://github.com/mastra-ai/mastra/commit/0fed8f2aa84b167b3415ea6f8f70755775132c8d), [`4f9ea8c`](https://github.com/mastra-ai/mastra/commit/4f9ea8c95ea74ba9abbf3b2ab6106c7d7bc45689), [`c4dbd12`](https://github.com/mastra-ai/mastra/commit/c4dbd12a05e75db124c5d8abff3d893ea1b88c30), [`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)]:
449
+ - @mastra/core@0.17.0
450
+ - @mastra/libsql@0.14.2
451
+ - @mastra/rag@1.2.5
452
+ - @mastra/memory@0.15.2
453
+
454
+ ## 0.1.19-alpha.8
455
+
456
+ ### Patch Changes
457
+
458
+ - Updated dependencies [[`05c7abf`](https://github.com/mastra-ai/mastra/commit/05c7abfe105a015b7760c9bf33ff4419727502a0), [`aee4f00`](https://github.com/mastra-ai/mastra/commit/aee4f00e61e1a42e81a6d74ff149dbe69e32695a)]:
459
+ - @mastra/core@0.17.0-alpha.8
460
+
461
+ ## 0.1.19-alpha.7
462
+
463
+ ### Patch Changes
464
+
465
+ - Updated dependencies [[`4f9ea8c`](https://github.com/mastra-ai/mastra/commit/4f9ea8c95ea74ba9abbf3b2ab6106c7d7bc45689)]:
466
+ - @mastra/core@0.17.0-alpha.7
467
+
468
+ ## 0.1.19-alpha.6
469
+
470
+ ### Patch Changes
471
+
472
+ - Updated dependencies [[`197cbb2`](https://github.com/mastra-ai/mastra/commit/197cbb248fc8cb4bbf61bf70b770f1388b445df2), [`6590763`](https://github.com/mastra-ai/mastra/commit/65907630ef4bf4127067cecd1cb21b56f55d5f1b), [`c2eade3`](https://github.com/mastra-ai/mastra/commit/c2eade3508ef309662f065e5f340d7840295dd53), [`222965a`](https://github.com/mastra-ai/mastra/commit/222965a98ce8197b86673ec594244650b5960257), [`0324ceb`](https://github.com/mastra-ai/mastra/commit/0324ceb8af9d16c12a531f90e575f6aab797ac81), [`0f9d227`](https://github.com/mastra-ai/mastra/commit/0f9d227890a98db33865abbea39daf407cd55ef7), [`de056a0`](https://github.com/mastra-ai/mastra/commit/de056a02cbb43f6aa0380ab2150ea404af9ec0dd), [`c93532a`](https://github.com/mastra-ai/mastra/commit/c93532a340b80e4dd946d4c138d9381de5f70399), [`6cb1fcb`](https://github.com/mastra-ai/mastra/commit/6cb1fcbc8d0378ffed0d17784c96e68f30cb0272), [`2685a78`](https://github.com/mastra-ai/mastra/commit/2685a78f224b8b04e20d4fab5ac1adb638190071), [`239b5a4`](https://github.com/mastra-ai/mastra/commit/239b5a497aeae2e8b4d764f46217cfff2284788e)]:
473
+ - @mastra/core@0.17.0-alpha.6
474
+ - @mastra/memory@0.15.2-alpha.2
475
+
476
+ ## 0.1.19-alpha.5
477
+
478
+ ### Patch Changes
479
+
480
+ - Updated dependencies [[`6047778`](https://github.com/mastra-ai/mastra/commit/6047778e501df460648f31decddf8e443f36e373)]:
481
+ - @mastra/core@0.17.0-alpha.5
482
+
483
+ ## 0.1.19-alpha.4
484
+
485
+ ### Patch Changes
486
+
487
+ - Updated dependencies [[`fb84c21`](https://github.com/mastra-ai/mastra/commit/fb84c21859d09bdc8f158bd5412bdc4b5835a61c), [`9d4fc09`](https://github.com/mastra-ai/mastra/commit/9d4fc09b2ad55caa7738c7ceb3a905e454f74cdd), [`d75ccf0`](https://github.com/mastra-ai/mastra/commit/d75ccf06dfd2582b916aa12624e3cd61b279edf1), [`0fed8f2`](https://github.com/mastra-ai/mastra/commit/0fed8f2aa84b167b3415ea6f8f70755775132c8d), [`c4dbd12`](https://github.com/mastra-ai/mastra/commit/c4dbd12a05e75db124c5d8abff3d893ea1b88c30), [`87fd07f`](https://github.com/mastra-ai/mastra/commit/87fd07ff35387a38728967163460231b5d33ae3b)]:
488
+ - @mastra/memory@0.15.2-alpha.1
489
+ - @mastra/core@0.17.0-alpha.4
490
+
491
+ ## 0.1.19-alpha.3
492
+
493
+ ### Patch Changes
494
+
495
+ - Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
496
+
497
+ - Updated dependencies [[`3359146`](https://github.com/mastra-ai/mastra/commit/3359146477152fc68047d96081078b0912125824), [`a1bb887`](https://github.com/mastra-ai/mastra/commit/a1bb887e8bfae44230f487648da72e96ef824561), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382), [`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), [`fdc1394`](https://github.com/mastra-ai/mastra/commit/fdc13940f16d8ffcffebe96fe60396edae81450c), [`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)]:
498
+ - @mastra/rag@1.2.5-alpha.1
499
+ - @mastra/core@0.17.0-alpha.3
500
+ - @mastra/memory@0.15.2-alpha.0
501
+ - @mastra/libsql@0.14.2-alpha.2
502
+
503
+ ## 0.1.19-alpha.2
504
+
505
+ ### Patch Changes
506
+
507
+ - Updated dependencies [[`60c9cec`](https://github.com/mastra-ai/mastra/commit/60c9cec7048a79a87440f7840c383875bd710d93), [`897995e`](https://github.com/mastra-ai/mastra/commit/897995e630d572fe2891e7ede817938cabb43251)]:
508
+ - @mastra/core@0.16.4-alpha.2
509
+
510
+ ## 0.1.19-alpha.1
511
+
512
+ ### Patch Changes
513
+
514
+ - Updated dependencies [[`547c621`](https://github.com/mastra-ai/mastra/commit/547c62104af3f7a551b3754e9cbdf0a3fbba15e4)]:
515
+ - @mastra/core@0.16.4-alpha.1
516
+ - @mastra/libsql@0.14.2-alpha.1
517
+
518
+ ## 0.1.19-alpha.0
519
+
520
+ ### Patch Changes
521
+
522
+ - Updated dependencies [[`2cecf62`](https://github.com/mastra-ai/mastra/commit/2cecf62739e6107d6f6a10de51bf7de88ff6d9e6), [`2ebe4c4`](https://github.com/mastra-ai/mastra/commit/2ebe4c4c34dd3e16b94cf66f6d5ce03a286e322a), [`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)]:
523
+ - @mastra/libsql@0.14.2-alpha.0
524
+ - @mastra/rag@1.2.5-alpha.0
525
+ - @mastra/core@0.16.4-alpha.0
526
+
527
+ ## 0.1.18
528
+
529
+ ### Patch Changes
530
+
531
+ - Updated dependencies [[`b4379f7`](https://github.com/mastra-ai/mastra/commit/b4379f703fd74474f253420e8c3a684f2c4b2f8e), [`2a6585f`](https://github.com/mastra-ai/mastra/commit/2a6585f7cb71f023f805d521d1c3c95fb9a3aa59), [`3d26e83`](https://github.com/mastra-ai/mastra/commit/3d26e8353a945719028f087cc6ac4b06f0ce27d2), [`dd9119b`](https://github.com/mastra-ai/mastra/commit/dd9119b175a8f389082f75c12750e51f96d65dca), [`d34aaa1`](https://github.com/mastra-ai/mastra/commit/d34aaa1da5d3c5f991740f59e2fe6d28d3e2dd91), [`56e55d1`](https://github.com/mastra-ai/mastra/commit/56e55d1e9eb63e7d9e41aa46e012aae471256812), [`ce1e580`](https://github.com/mastra-ai/mastra/commit/ce1e580f6391e94a0c6816a9c5db0a21566a262f), [`0a95f82`](https://github.com/mastra-ai/mastra/commit/0a95f824759099751d88b58db636863f9c8ff707), [`b2babfa`](https://github.com/mastra-ai/mastra/commit/b2babfa9e75b22f2759179e71d8473f6dc5421ed), [`d8c3ba5`](https://github.com/mastra-ai/mastra/commit/d8c3ba516f4173282d293f7e64769cfc8738d360), [`a566c4e`](https://github.com/mastra-ai/mastra/commit/a566c4e92d86c1671707c54359b1d33934f7cc13), [`af333aa`](https://github.com/mastra-ai/mastra/commit/af333aa30fe6d1b127024b03a64736c46eddeca2), [`3863c52`](https://github.com/mastra-ai/mastra/commit/3863c52d44b4e5779968b802d977e87adf939d8e), [`6424c7e`](https://github.com/mastra-ai/mastra/commit/6424c7ec38b6921d66212431db1e0958f441b2a7), [`db94750`](https://github.com/mastra-ai/mastra/commit/db94750a41fd29b43eb1f7ce8e97ba8b9978c91b), [`a66a371`](https://github.com/mastra-ai/mastra/commit/a66a3716b00553d7f01842be9deb34f720b10fab), [`69fc3cd`](https://github.com/mastra-ai/mastra/commit/69fc3cd0fd814901785bdcf49bf536ab1e7fd975)]:
532
+ - @mastra/core@0.16.3
533
+ - @mastra/libsql@0.14.1
534
+ - @mastra/memory@0.15.1
535
+
536
+ ## 0.1.18-alpha.1
537
+
538
+ ### Patch Changes
539
+
540
+ - Updated dependencies [[`2a6585f`](https://github.com/mastra-ai/mastra/commit/2a6585f7cb71f023f805d521d1c3c95fb9a3aa59), [`3d26e83`](https://github.com/mastra-ai/mastra/commit/3d26e8353a945719028f087cc6ac4b06f0ce27d2), [`56e55d1`](https://github.com/mastra-ai/mastra/commit/56e55d1e9eb63e7d9e41aa46e012aae471256812)]:
541
+ - @mastra/core@0.16.3-alpha.1
542
+
543
+ ## 0.1.18-alpha.0
544
+
545
+ ### Patch Changes
546
+
547
+ - Updated dependencies [[`b4379f7`](https://github.com/mastra-ai/mastra/commit/b4379f703fd74474f253420e8c3a684f2c4b2f8e), [`dd9119b`](https://github.com/mastra-ai/mastra/commit/dd9119b175a8f389082f75c12750e51f96d65dca), [`d34aaa1`](https://github.com/mastra-ai/mastra/commit/d34aaa1da5d3c5f991740f59e2fe6d28d3e2dd91), [`ce1e580`](https://github.com/mastra-ai/mastra/commit/ce1e580f6391e94a0c6816a9c5db0a21566a262f), [`0a95f82`](https://github.com/mastra-ai/mastra/commit/0a95f824759099751d88b58db636863f9c8ff707), [`b2babfa`](https://github.com/mastra-ai/mastra/commit/b2babfa9e75b22f2759179e71d8473f6dc5421ed), [`d8c3ba5`](https://github.com/mastra-ai/mastra/commit/d8c3ba516f4173282d293f7e64769cfc8738d360), [`a566c4e`](https://github.com/mastra-ai/mastra/commit/a566c4e92d86c1671707c54359b1d33934f7cc13), [`af333aa`](https://github.com/mastra-ai/mastra/commit/af333aa30fe6d1b127024b03a64736c46eddeca2), [`3863c52`](https://github.com/mastra-ai/mastra/commit/3863c52d44b4e5779968b802d977e87adf939d8e), [`6424c7e`](https://github.com/mastra-ai/mastra/commit/6424c7ec38b6921d66212431db1e0958f441b2a7), [`db94750`](https://github.com/mastra-ai/mastra/commit/db94750a41fd29b43eb1f7ce8e97ba8b9978c91b), [`a66a371`](https://github.com/mastra-ai/mastra/commit/a66a3716b00553d7f01842be9deb34f720b10fab), [`69fc3cd`](https://github.com/mastra-ai/mastra/commit/69fc3cd0fd814901785bdcf49bf536ab1e7fd975)]:
548
+ - @mastra/core@0.16.3-alpha.0
549
+ - @mastra/libsql@0.14.1-alpha.0
550
+ - @mastra/memory@0.15.1-alpha.0
551
+
552
+ ## 0.1.17
553
+
554
+ ### Patch Changes
555
+
556
+ - Updated dependencies [[`61926ef`](https://github.com/mastra-ai/mastra/commit/61926ef40d415b805a63527cffe27a50542e15e5)]:
557
+ - @mastra/core@0.16.2
558
+
559
+ ## 0.1.17-alpha.0
560
+
561
+ ### Patch Changes
562
+
563
+ - Updated dependencies [[`61926ef`](https://github.com/mastra-ai/mastra/commit/61926ef40d415b805a63527cffe27a50542e15e5)]:
564
+ - @mastra/core@0.16.2-alpha.0
565
+
566
+ ## 0.1.16
567
+
568
+ ### Patch Changes
569
+
570
+ - Updated dependencies [[`47b6dc9`](https://github.com/mastra-ai/mastra/commit/47b6dc94f4976d4f3d3882e8f19eb365bbc5976c), [`827d876`](https://github.com/mastra-ai/mastra/commit/827d8766f36a900afcaf64a040f7ba76249009b3), [`0662d02`](https://github.com/mastra-ai/mastra/commit/0662d02ef16916e67531890639fcd72c69cfb6e2), [`565d65f`](https://github.com/mastra-ai/mastra/commit/565d65fc16314a99f081975ec92f2636dff0c86d), [`6189844`](https://github.com/mastra-ai/mastra/commit/61898448e65bda02bb814fb15801a89dc6476938), [`4da3d68`](https://github.com/mastra-ai/mastra/commit/4da3d68a778e5c4d5a17351ef223289fe2f45a45), [`fd9bbfe`](https://github.com/mastra-ai/mastra/commit/fd9bbfee22484f8493582325f53e8171bf8e682b), [`7eaf1d1`](https://github.com/mastra-ai/mastra/commit/7eaf1d1cec7e828d7a98efc2a748ac395bbdba3b), [`6f046b5`](https://github.com/mastra-ai/mastra/commit/6f046b5ccc5c8721302a9a61d5d16c12374cc8d7), [`d7a8f59`](https://github.com/mastra-ai/mastra/commit/d7a8f59154b0621aec4f41a6b2ea2b3882f03cb7), [`0b0bbb2`](https://github.com/mastra-ai/mastra/commit/0b0bbb24f4198ead69792e92b68a350f52b45cf3), [`d951f41`](https://github.com/mastra-ai/mastra/commit/d951f41771e4e5da8da4b9f870949f9509e38756), [`4dda259`](https://github.com/mastra-ai/mastra/commit/4dda2593b6343f9258671de5fb237aeba3ef6bb7), [`8049e2e`](https://github.com/mastra-ai/mastra/commit/8049e2e8cce80a00353c64894c62b695ac34e35e), [`f3427cd`](https://github.com/mastra-ai/mastra/commit/f3427cdaf9eecd63360dfc897a4acbf5f4143a4e), [`defed1c`](https://github.com/mastra-ai/mastra/commit/defed1ca8040cc8d42e645c5a50a1bc52a4918d7), [`79b39c1`](https://github.com/mastra-ai/mastra/commit/79b39c1def3bbd5d6ee2d2cc1e89ea378a940477), [`6991ced`](https://github.com/mastra-ai/mastra/commit/6991cedcb5a44a49d9fe58ef67926e1f96ba55b1), [`9cb9c42`](https://github.com/mastra-ai/mastra/commit/9cb9c422854ee81074989dd2d8dccc0500ba8d3e), [`8334859`](https://github.com/mastra-ai/mastra/commit/83348594d4f37b311ba4a94d679c5f8721d796d4), [`05f13b8`](https://github.com/mastra-ai/mastra/commit/05f13b8fb269ccfc4de98e9db58dbe16eae55a5e)]:
571
+ - @mastra/core@0.16.1
572
+ - @mastra/memory@0.15.0
573
+
574
+ ## 0.1.16-alpha.3
575
+
576
+ ### Patch Changes
577
+
578
+ - Updated dependencies [[`fd9bbfe`](https://github.com/mastra-ai/mastra/commit/fd9bbfee22484f8493582325f53e8171bf8e682b)]:
579
+ - @mastra/core@0.16.1-alpha.3
580
+
581
+ ## 0.1.16-alpha.2
582
+
583
+ ### Patch Changes
584
+
585
+ - Updated dependencies [[`827d876`](https://github.com/mastra-ai/mastra/commit/827d8766f36a900afcaf64a040f7ba76249009b3), [`7eaf1d1`](https://github.com/mastra-ai/mastra/commit/7eaf1d1cec7e828d7a98efc2a748ac395bbdba3b), [`f3427cd`](https://github.com/mastra-ai/mastra/commit/f3427cdaf9eecd63360dfc897a4acbf5f4143a4e), [`05f13b8`](https://github.com/mastra-ai/mastra/commit/05f13b8fb269ccfc4de98e9db58dbe16eae55a5e)]:
586
+ - @mastra/core@0.16.1-alpha.2
587
+
588
+ ## 0.1.16-alpha.1
589
+
590
+ ### Patch Changes
591
+
592
+ - Updated dependencies [[`47b6dc9`](https://github.com/mastra-ai/mastra/commit/47b6dc94f4976d4f3d3882e8f19eb365bbc5976c), [`565d65f`](https://github.com/mastra-ai/mastra/commit/565d65fc16314a99f081975ec92f2636dff0c86d), [`4da3d68`](https://github.com/mastra-ai/mastra/commit/4da3d68a778e5c4d5a17351ef223289fe2f45a45), [`0b0bbb2`](https://github.com/mastra-ai/mastra/commit/0b0bbb24f4198ead69792e92b68a350f52b45cf3), [`d951f41`](https://github.com/mastra-ai/mastra/commit/d951f41771e4e5da8da4b9f870949f9509e38756), [`8049e2e`](https://github.com/mastra-ai/mastra/commit/8049e2e8cce80a00353c64894c62b695ac34e35e)]:
593
+ - @mastra/core@0.16.1-alpha.1
594
+
595
+ ## 0.1.16-alpha.0
596
+
597
+ ### Patch Changes
598
+
599
+ - Updated dependencies [[`0662d02`](https://github.com/mastra-ai/mastra/commit/0662d02ef16916e67531890639fcd72c69cfb6e2), [`6189844`](https://github.com/mastra-ai/mastra/commit/61898448e65bda02bb814fb15801a89dc6476938), [`d7a8f59`](https://github.com/mastra-ai/mastra/commit/d7a8f59154b0621aec4f41a6b2ea2b3882f03cb7), [`4dda259`](https://github.com/mastra-ai/mastra/commit/4dda2593b6343f9258671de5fb237aeba3ef6bb7), [`defed1c`](https://github.com/mastra-ai/mastra/commit/defed1ca8040cc8d42e645c5a50a1bc52a4918d7), [`79b39c1`](https://github.com/mastra-ai/mastra/commit/79b39c1def3bbd5d6ee2d2cc1e89ea378a940477), [`6991ced`](https://github.com/mastra-ai/mastra/commit/6991cedcb5a44a49d9fe58ef67926e1f96ba55b1), [`9cb9c42`](https://github.com/mastra-ai/mastra/commit/9cb9c422854ee81074989dd2d8dccc0500ba8d3e), [`8334859`](https://github.com/mastra-ai/mastra/commit/83348594d4f37b311ba4a94d679c5f8721d796d4)]:
600
+ - @mastra/core@0.16.1-alpha.0
601
+ - @mastra/memory@0.15.0-alpha.0
602
+
603
+ ## 0.1.15
604
+
605
+ ### Patch Changes
606
+
607
+ - 6f5eb7a: Throw if an empty or whitespace-only threadId is passed when getting messages
608
+ - Updated dependencies [8fbf79e]
609
+ - Updated dependencies [fd83526]
610
+ - Updated dependencies [d0b90ab]
611
+ - Updated dependencies [6f5eb7a]
612
+ - Updated dependencies [a01cf14]
613
+ - Updated dependencies [a9e50ee]
614
+ - Updated dependencies [5397eb4]
615
+ - Updated dependencies [376913a]
616
+ - Updated dependencies [c9f4e4a]
617
+ - Updated dependencies [0acbc80]
618
+ - Updated dependencies [376913a]
619
+ - Updated dependencies [38020d5]
620
+ - @mastra/core@0.16.0
621
+ - @mastra/libsql@0.14.0
622
+ - @mastra/memory@0.14.4
623
+ - @mastra/rag@1.2.4
624
+
625
+ ## 0.1.15-alpha.1
626
+
627
+ ### Patch Changes
628
+
629
+ - Updated dependencies [8fbf79e]
630
+ - Updated dependencies [376913a]
631
+ - Updated dependencies [376913a]
632
+ - Updated dependencies [38020d5]
633
+ - @mastra/core@0.16.0-alpha.1
634
+ - @mastra/memory@0.14.4-alpha.0
635
+ - @mastra/rag@1.2.4-alpha.0
636
+ - @mastra/libsql@0.14.0-alpha.1
637
+
638
+ ## 0.1.15-alpha.0
639
+
640
+ ### Patch Changes
641
+
642
+ - 6f5eb7a: Throw if an empty or whitespace-only threadId is passed when getting messages
643
+ - Updated dependencies [fd83526]
644
+ - Updated dependencies [d0b90ab]
645
+ - Updated dependencies [6f5eb7a]
646
+ - Updated dependencies [a01cf14]
647
+ - Updated dependencies [a9e50ee]
648
+ - Updated dependencies [5397eb4]
649
+ - Updated dependencies [c9f4e4a]
650
+ - Updated dependencies [0acbc80]
651
+ - @mastra/core@0.16.0-alpha.0
652
+ - @mastra/libsql@0.13.9-alpha.0
653
+
654
+ ## 0.1.14
655
+
656
+ ### Patch Changes
657
+
658
+ - de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
659
+ - Updated dependencies [ab48c97]
660
+ - Updated dependencies [8429e4c]
661
+ - Updated dependencies [ab48c97]
662
+ - Updated dependencies [85ef90b]
663
+ - Updated dependencies [aedbbfa]
664
+ - Updated dependencies [ff89505]
665
+ - Updated dependencies [637f323]
666
+ - Updated dependencies [de3cbc6]
667
+ - Updated dependencies [c19bcf7]
668
+ - Updated dependencies [a5632dd]
669
+ - Updated dependencies [4474d04]
670
+ - Updated dependencies [183dc95]
671
+ - Updated dependencies [a1111e2]
672
+ - Updated dependencies [b42a961]
673
+ - Updated dependencies [61debef]
674
+ - Updated dependencies [9beaeff]
675
+ - Updated dependencies [29de0e1]
676
+ - Updated dependencies [f643c65]
677
+ - Updated dependencies [00c74e7]
678
+ - Updated dependencies [f0dfcac]
679
+ - Updated dependencies [fef7375]
680
+ - Updated dependencies [e3d8fea]
681
+ - Updated dependencies [45e4d39]
682
+ - Updated dependencies [9eee594]
683
+ - Updated dependencies [7149d8d]
684
+ - Updated dependencies [b415a4e]
685
+ - Updated dependencies [822c2e8]
686
+ - Updated dependencies [979912c]
687
+ - Updated dependencies [7dcf4c0]
688
+ - Updated dependencies [4106a58]
689
+ - Updated dependencies [dbc51ef]
690
+ - Updated dependencies [ad78bfc]
691
+ - Updated dependencies [0302f50]
692
+ - Updated dependencies [6ac697e]
693
+ - Updated dependencies [74db265]
694
+ - Updated dependencies [0ce418a]
695
+ - Updated dependencies [af90672]
696
+ - Updated dependencies [8387952]
697
+ - Updated dependencies [7f3b8da]
698
+ - Updated dependencies [905352b]
699
+ - Updated dependencies [599d04c]
700
+ - Updated dependencies [56041d0]
701
+ - Updated dependencies [3412597]
702
+ - Updated dependencies [5eca5d2]
703
+ - Updated dependencies [f2cda47]
704
+ - Updated dependencies [5de1555]
705
+ - Updated dependencies [cfd377a]
706
+ - Updated dependencies [1ed5a3e]
707
+ - @mastra/core@0.15.3
708
+ - @mastra/libsql@0.13.8
709
+ - @mastra/memory@0.14.3
710
+ - @mastra/fastembed@0.10.5
711
+ - @mastra/rag@1.2.3
712
+
713
+ ## 0.1.14-alpha.9
714
+
715
+ ### Patch Changes
716
+
717
+ - Updated dependencies [[`599d04c`](https://github.com/mastra-ai/mastra/commit/599d04cebe92c1d536fee3190434941b8c91548e)]:
718
+ - @mastra/core@0.15.3-alpha.9
719
+
720
+ ## 0.1.14-alpha.8
721
+
722
+ ### Patch Changes
723
+
724
+ - Updated dependencies [[`4474d04`](https://github.com/mastra-ai/mastra/commit/4474d0489b1e152e0985c33a4f529207317d27b5), [`4106a58`](https://github.com/mastra-ai/mastra/commit/4106a58b15b4c0a060a4a9ccab52d119d00d8edb)]:
725
+ - @mastra/core@0.15.3-alpha.8
726
+
727
+ ## 0.1.14-alpha.7
728
+
729
+ ### Patch Changes
730
+
731
+ - Updated dependencies [[`f0dfcac`](https://github.com/mastra-ai/mastra/commit/f0dfcac4458bdf789b975e2d63e984f5d1e7c4d3), [`7149d8d`](https://github.com/mastra-ai/mastra/commit/7149d8d4bdc1edf0008e0ca9b7925eb0b8b60dbe)]:
732
+ - @mastra/memory@0.14.3-alpha.4
733
+ - @mastra/libsql@0.13.8-alpha.3
734
+ - @mastra/rag@1.2.3-alpha.2
735
+ - @mastra/core@0.15.3-alpha.7
736
+
737
+ ## 0.1.14-alpha.6
738
+
739
+ ### Patch Changes
740
+
741
+ - Updated dependencies [[`8429e4c`](https://github.com/mastra-ai/mastra/commit/8429e4c0d2041d072826c4382c09187116573a77), [`c19bcf7`](https://github.com/mastra-ai/mastra/commit/c19bcf7b43542b02157b5e17303e519933a153ab), [`a5632dd`](https://github.com/mastra-ai/mastra/commit/a5632dd316a6246666662705404bda570b070af1), [`b42a961`](https://github.com/mastra-ai/mastra/commit/b42a961a5aefd19d6e938a7705fc0ecc90e8f756), [`45e4d39`](https://github.com/mastra-ai/mastra/commit/45e4d391a2a09fc70c48e4d60f505586ada1ba0e), [`0302f50`](https://github.com/mastra-ai/mastra/commit/0302f50861a53c66ff28801fc371b37c5f97e41e), [`74db265`](https://github.com/mastra-ai/mastra/commit/74db265b96aa01a72ffd91dcae0bc3b346cca0f2), [`7f3b8da`](https://github.com/mastra-ai/mastra/commit/7f3b8da6dd21c35d3672e44b4f5dd3502b8f8f92), [`905352b`](https://github.com/mastra-ai/mastra/commit/905352bcda134552400eb252bca1cb05a7975c14), [`f2cda47`](https://github.com/mastra-ai/mastra/commit/f2cda47ae911038c5d5489f54c36517d6f15bdcc), [`cfd377a`](https://github.com/mastra-ai/mastra/commit/cfd377a3a33a9c88b644f6540feed9cd9832db47)]:
742
+ - @mastra/libsql@0.13.8-alpha.2
743
+ - @mastra/core@0.15.3-alpha.6
744
+ - @mastra/memory@0.14.3-alpha.3
745
+
746
+ ## 0.1.14-alpha.5
747
+
748
+ ### Patch Changes
749
+
750
+ - [#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`.
751
+
752
+ - Updated dependencies [[`85ef90b`](https://github.com/mastra-ai/mastra/commit/85ef90bb2cd4ae4df855c7ac175f7d392c55c1bf), [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e)]:
753
+ - @mastra/core@0.15.3-alpha.5
754
+ - @mastra/fastembed@0.10.5-alpha.0
755
+ - @mastra/memory@0.14.3-alpha.2
756
+ - @mastra/libsql@0.13.8-alpha.1
757
+ - @mastra/rag@1.2.3-alpha.1
758
+
759
+ ## 0.1.14-alpha.4
760
+
761
+ ### Patch Changes
762
+
763
+ - Updated dependencies [[`ab48c97`](https://github.com/mastra-ai/mastra/commit/ab48c979098ea571faf998a55d3a00e7acd7a715), [`ab48c97`](https://github.com/mastra-ai/mastra/commit/ab48c979098ea571faf998a55d3a00e7acd7a715), [`ff89505`](https://github.com/mastra-ai/mastra/commit/ff895057c8c7e91a5535faef46c5e5391085ddfa), [`183dc95`](https://github.com/mastra-ai/mastra/commit/183dc95596f391b977bd1a2c050b8498dac74891), [`a1111e2`](https://github.com/mastra-ai/mastra/commit/a1111e24e705488adfe5e0a6f20c53bddf26cb22), [`61debef`](https://github.com/mastra-ai/mastra/commit/61debefd80ad3a7ed5737e19df6a23d40091689a), [`9beaeff`](https://github.com/mastra-ai/mastra/commit/9beaeffa4a97b1d5fd01a7f8af8708b16067f67c), [`9eee594`](https://github.com/mastra-ai/mastra/commit/9eee594e35e0ca2a650fcc33fa82009a142b9ed0), [`979912c`](https://github.com/mastra-ai/mastra/commit/979912cfd180aad53287cda08af771df26454e2c), [`7dcf4c0`](https://github.com/mastra-ai/mastra/commit/7dcf4c04f44d9345b1f8bc5d41eae3f11ac61611), [`ad78bfc`](https://github.com/mastra-ai/mastra/commit/ad78bfc4ea6a1fff140432bf4f638e01af7af668), [`0ce418a`](https://github.com/mastra-ai/mastra/commit/0ce418a1ccaa5e125d4483a9651b635046152569), [`8387952`](https://github.com/mastra-ai/mastra/commit/838795227b4edf758c84a2adf6f7fba206c27719), [`5eca5d2`](https://github.com/mastra-ai/mastra/commit/5eca5d2655788863ea0442a46c9ef5d3c6dbe0a8)]:
764
+ - @mastra/core@0.15.3-alpha.4
765
+ - @mastra/memory@0.14.3-alpha.1
766
+
767
+ ## 0.1.14-alpha.3
768
+
769
+ ### Patch Changes
770
+
771
+ - Updated dependencies [[`aedbbfa`](https://github.com/mastra-ai/mastra/commit/aedbbfa064124ddde039111f12629daebfea7e48), [`f643c65`](https://github.com/mastra-ai/mastra/commit/f643c651bdaf57c2343cf9dbfc499010495701fb), [`fef7375`](https://github.com/mastra-ai/mastra/commit/fef737534574f41b432a7361a285f776c3bac42b), [`e3d8fea`](https://github.com/mastra-ai/mastra/commit/e3d8feaacfb8b5c5c03c13604cc06ea2873d45fe), [`dbc51ef`](https://github.com/mastra-ai/mastra/commit/dbc51ef2e42604117ab90917fc284a560647a61f), [`3412597`](https://github.com/mastra-ai/mastra/commit/3412597a6644c0b6bf3236d6e319ed1450c5bae8)]:
772
+ - @mastra/core@0.15.3-alpha.3
773
+ - @mastra/libsql@0.13.8-alpha.0
774
+
775
+ ## 0.1.14-alpha.2
776
+
777
+ ### Patch Changes
778
+
779
+ - Updated dependencies [[`822c2e8`](https://github.com/mastra-ai/mastra/commit/822c2e88a3ecbffb7c680e6227976006ccefe6a8)]:
780
+ - @mastra/core@0.15.3-alpha.2
781
+
782
+ ## 0.1.14-alpha.1
783
+
784
+ ### Patch Changes
785
+
786
+ - Updated dependencies [[`637f323`](https://github.com/mastra-ai/mastra/commit/637f32371d79a8f78c52c0d53411af0915fcec67), [`29de0e1`](https://github.com/mastra-ai/mastra/commit/29de0e1b0a7173317ae7d1ab0c0993167c659f2b), [`b415a4e`](https://github.com/mastra-ai/mastra/commit/b415a4e05b2546ccb9b5ba31a2bdf23deb1c7fa8), [`6ac697e`](https://github.com/mastra-ai/mastra/commit/6ac697edcc2435482c247cba615277ec4765dcc4)]:
787
+ - @mastra/core@0.15.3-alpha.1
788
+ - @mastra/rag@1.2.3-alpha.0
789
+ - @mastra/memory@0.14.3-alpha.0
790
+
791
+ ## 0.1.14-alpha.0
792
+
793
+ ### Patch Changes
794
+
795
+ - Updated dependencies [[`00c74e7`](https://github.com/mastra-ai/mastra/commit/00c74e73b1926be0d475693bb886fb67a22ff352), [`af90672`](https://github.com/mastra-ai/mastra/commit/af906722d8da28688882193b1e531026f9e2e81e), [`56041d0`](https://github.com/mastra-ai/mastra/commit/56041d018863a3da6b98c512e47348647c075fb3), [`5de1555`](https://github.com/mastra-ai/mastra/commit/5de15554d3d6695211945a36928f6657e76cddc9), [`1ed5a3e`](https://github.com/mastra-ai/mastra/commit/1ed5a3e19330374c4347a4237cd2f4b9ffb60376)]:
796
+ - @mastra/core@0.15.3-alpha.0
797
+
798
+ ## 0.1.13
799
+
800
+ ### Patch Changes
801
+
802
+ - [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
803
+
804
+ - Updated dependencies [[`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430)]:
805
+ - @mastra/fastembed@0.10.4
806
+ - @mastra/memory@0.14.2
807
+ - @mastra/rag@1.2.2
808
+ - @mastra/libsql@0.13.7
809
+ - @mastra/core@0.15.2
810
+
811
+ ## 0.1.12
812
+
813
+ ### Patch Changes
814
+
815
+ - Updated dependencies [[`95b2aa9`](https://github.com/mastra-ai/mastra/commit/95b2aa908230919e67efcac0d69005a2d5745298)]:
816
+ - @mastra/memory@0.14.1
817
+ - @mastra/libsql@0.13.6
818
+ - @mastra/rag@1.2.1
819
+ - @mastra/core@0.15.1
820
+
821
+ ## 0.1.11
822
+
823
+ ### Patch Changes
824
+
825
+ - 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), [`24d9ee3`](https://github.com/mastra-ai/mastra/commit/24d9ee3db1c09d15f27a5d0971b102abcfcf7dfd), [`da58ccc`](https://github.com/mastra-ai/mastra/commit/da58ccc1f2ac33da0cb97b00443fc6208b45bdec), [`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), [`94e9f54`](https://github.com/mastra-ai/mastra/commit/94e9f547d66ef7cd01d9075ab53b5ca9a1cae100), [`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), [`0594a70`](https://github.com/mastra-ai/mastra/commit/0594a70ac948d306c7f38765b171c9535e6c78d4), [`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), [`704173b`](https://github.com/mastra-ai/mastra/commit/704173b0d047e8d4cf29872464f383afc2f0c054), [`9613558`](https://github.com/mastra-ai/mastra/commit/9613558e6475f4710e05d1be7553a32ee7bddc20)]:
826
+ - @mastra/core@0.15.0
827
+ - @mastra/memory@0.14.0
828
+ - @mastra/rag@1.2.0
829
+ - @mastra/libsql@0.13.5
830
+
831
+ ## 0.1.11-alpha.4
832
+
833
+ ### Patch Changes
834
+
835
+ - Updated dependencies [[`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c)]:
836
+ - @mastra/memory@0.14.0-alpha.3
837
+ - @mastra/core@0.15.0-alpha.4
838
+ - @mastra/rag@1.2.0-alpha.2
839
+
840
+ ## 0.1.11-alpha.3
841
+
842
+ ### Patch Changes
843
+
844
+ - Updated dependencies [[`da58ccc`](https://github.com/mastra-ai/mastra/commit/da58ccc1f2ac33da0cb97b00443fc6208b45bdec)]:
845
+ - @mastra/memory@0.14.0-alpha.2
846
+ - @mastra/rag@1.2.0-alpha.1
847
+ - @mastra/core@0.15.0-alpha.3
848
+
849
+ ## 0.1.11-alpha.2
850
+
851
+ ### Patch Changes
852
+
853
+ - Updated dependencies [[`2e58325`](https://github.com/mastra-ai/mastra/commit/2e58325beb170f5b92f856e27d915cd26917e5e6)]:
854
+ - @mastra/core@0.14.2-alpha.2
855
+
856
+ ## 0.1.11-alpha.1
857
+
858
+ ### Patch Changes
859
+
860
+ - Updated dependencies [[`943a7f3`](https://github.com/mastra-ai/mastra/commit/943a7f3dbc6a8ab3f9b7bc7c8a1c5b319c3d7f56), [`24d9ee3`](https://github.com/mastra-ai/mastra/commit/24d9ee3db1c09d15f27a5d0971b102abcfcf7dfd), [`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), [`94e9f54`](https://github.com/mastra-ai/mastra/commit/94e9f547d66ef7cd01d9075ab53b5ca9a1cae100), [`82d9f64`](https://github.com/mastra-ai/mastra/commit/82d9f647fbe4f0177320e7c05073fce88599aa95), [`0594a70`](https://github.com/mastra-ai/mastra/commit/0594a70ac948d306c7f38765b171c9535e6c78d4), [`4189486`](https://github.com/mastra-ai/mastra/commit/4189486c6718fda78347bdf4ce4d3fc33b2236e1), [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01), [`704173b`](https://github.com/mastra-ai/mastra/commit/704173b0d047e8d4cf29872464f383afc2f0c054)]:
861
+ - @mastra/core@0.14.2-alpha.1
862
+ - @mastra/memory@0.13.2-alpha.1
863
+ - @mastra/rag@1.1.1-alpha.0
864
+ - @mastra/libsql@0.13.5-alpha.0
865
+
866
+ ## 0.1.11-alpha.0
867
+
868
+ ### Patch Changes
869
+
870
+ - Updated dependencies [[`0778757`](https://github.com/mastra-ai/mastra/commit/07787570e4addbd501522037bd2542c3d9e26822), [`bf504a8`](https://github.com/mastra-ai/mastra/commit/bf504a833051f6f321d832cc7d631f3cb86d657b), [`e6f5046`](https://github.com/mastra-ai/mastra/commit/e6f50467aff317e67e8bd74c485c3fbe2a5a6db1), [`9613558`](https://github.com/mastra-ai/mastra/commit/9613558e6475f4710e05d1be7553a32ee7bddc20)]:
871
+ - @mastra/core@0.14.2-alpha.0
872
+ - @mastra/memory@0.13.2-alpha.0
873
+
874
+ ## 0.1.10
875
+
876
+ ### Patch Changes
877
+
878
+ - Updated dependencies [[`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`64ad21f`](https://github.com/mastra-ai/mastra/commit/64ad21ff4f58ce8b344d163d800d9e4f84d82f6f), [`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`c4f2605`](https://github.com/mastra-ai/mastra/commit/c4f2605fa00e796a26c6f5fc3cf8f5552f77d617), [`0f00e17`](https://github.com/mastra-ai/mastra/commit/0f00e172953ccdccadb35ed3d70f5e4d89115869), [`217cd7a`](https://github.com/mastra-ai/mastra/commit/217cd7a4ce171e9a575c41bb8c83300f4db03236), [`a5a23d9`](https://github.com/mastra-ai/mastra/commit/a5a23d981920d458dc6078919992a5338931ef02)]:
879
+ - @mastra/core@0.14.1
880
+ - @mastra/fastembed@0.10.3
881
+ - @mastra/libsql@0.13.4
882
+ - @mastra/memory@0.13.1
883
+
884
+ ## 0.1.10-alpha.1
885
+
886
+ ### Patch Changes
887
+
888
+ - Updated dependencies [[`0f00e17`](https://github.com/mastra-ai/mastra/commit/0f00e172953ccdccadb35ed3d70f5e4d89115869), [`217cd7a`](https://github.com/mastra-ai/mastra/commit/217cd7a4ce171e9a575c41bb8c83300f4db03236)]:
889
+ - @mastra/core@0.14.1-alpha.1
890
+
891
+ ## 0.1.10-alpha.0
892
+
893
+ ### Patch Changes
894
+
895
+ - Updated dependencies [[`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`64ad21f`](https://github.com/mastra-ai/mastra/commit/64ad21ff4f58ce8b344d163d800d9e4f84d82f6f), [`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`c4f2605`](https://github.com/mastra-ai/mastra/commit/c4f2605fa00e796a26c6f5fc3cf8f5552f77d617), [`a5a23d9`](https://github.com/mastra-ai/mastra/commit/a5a23d981920d458dc6078919992a5338931ef02)]:
896
+ - @mastra/core@0.14.1-alpha.0
897
+ - @mastra/fastembed@0.10.3-alpha.0
898
+ - @mastra/libsql@0.13.4-alpha.0
899
+ - @mastra/memory@0.13.1-alpha.0
900
+
901
+ ## 0.1.9
902
+
903
+ ### Patch Changes
904
+
905
+ - Updated dependencies [8a41506]
906
+ - Updated dependencies [227c7e6]
907
+ - Updated dependencies [12cae67]
908
+ - Updated dependencies [fd3a3eb]
909
+ - Updated dependencies [6faaee5]
910
+ - Updated dependencies [4232b14]
911
+ - Updated dependencies [a89de7e]
912
+ - Updated dependencies [5a37d0c]
913
+ - Updated dependencies [4bde0cb]
914
+ - Updated dependencies [cf4f357]
915
+ - Updated dependencies [03997ae]
916
+ - Updated dependencies [03997ae]
917
+ - Updated dependencies [ad888a2]
918
+ - Updated dependencies [481751d]
919
+ - Updated dependencies [2454423]
920
+ - Updated dependencies [194e395]
921
+ - Updated dependencies [a722c0b]
922
+ - Updated dependencies [c30bca8]
923
+ - Updated dependencies [d6e39da]
924
+ - Updated dependencies [3b5fec7]
925
+ - Updated dependencies [a8f129d]
926
+ - @mastra/memory@0.13.0
927
+ - @mastra/core@0.14.0
928
+ - @mastra/libsql@0.13.3
929
+ - @mastra/rag@1.1.0
930
+
931
+ ## 0.1.9-alpha.7
932
+
933
+ ### Patch Changes
934
+
935
+ - Updated dependencies [03997ae]
936
+ - Updated dependencies [03997ae]
937
+ - @mastra/libsql@0.13.3-alpha.1
938
+ - @mastra/memory@0.13.0-alpha.1
939
+ - @mastra/rag@1.1.0-alpha.1
940
+ - @mastra/core@0.14.0-alpha.7
941
+
942
+ ## 0.1.9-alpha.6
943
+
944
+ ### Patch Changes
945
+
946
+ - Updated dependencies [ad888a2]
947
+ - Updated dependencies [481751d]
948
+ - Updated dependencies [194e395]
949
+ - @mastra/core@0.14.0-alpha.6
950
+
951
+ ## 0.1.9-alpha.5
952
+
953
+ ### Patch Changes
954
+
955
+ - @mastra/core@0.14.0-alpha.5
956
+
957
+ ## 0.1.9-alpha.4
958
+
959
+ ### Patch Changes
960
+
961
+ - Updated dependencies [8a41506]
962
+ - Updated dependencies [0a7f675]
963
+ - Updated dependencies [12cae67]
964
+ - Updated dependencies [5a37d0c]
965
+ - Updated dependencies [4bde0cb]
966
+ - Updated dependencies [1a80071]
967
+ - Updated dependencies [36a3be8]
968
+ - Updated dependencies [361757b]
969
+ - Updated dependencies [2bb9955]
970
+ - Updated dependencies [2454423]
971
+ - Updated dependencies [a44d91e]
972
+ - Updated dependencies [dfb91e9]
973
+ - Updated dependencies [a741dde]
974
+ - Updated dependencies [e2ed127]
975
+ - Updated dependencies [7cb3fc0]
976
+ - Updated dependencies [195eabb]
977
+ - Updated dependencies [b78b95b]
978
+ - @mastra/memory@0.12.3-alpha.0
979
+ - @mastra/core@0.14.0-alpha.4
980
+ - @mastra/rag@1.0.9-alpha.0
981
+
982
+ ## 0.1.9-alpha.3
983
+
984
+ ### Patch Changes
985
+
986
+ - Updated dependencies [227c7e6]
987
+ - Updated dependencies [fd3a3eb]
988
+ - Updated dependencies [a8f129d]
989
+ - @mastra/core@0.14.0-alpha.3
990
+
991
+ ## 0.1.9-alpha.2
992
+
993
+ ### Patch Changes
994
+
995
+ - @mastra/core@0.14.0-alpha.2
996
+
997
+ ## 0.1.9-alpha.1
998
+
999
+ ### Patch Changes
1000
+
1001
+ - Updated dependencies [6faaee5]
1002
+ - Updated dependencies [4232b14]
1003
+ - Updated dependencies [a89de7e]
1004
+ - Updated dependencies [cf4f357]
1005
+ - Updated dependencies [a722c0b]
1006
+ - Updated dependencies [d6e39da]
1007
+ - Updated dependencies [3b5fec7]
1008
+ - @mastra/core@0.14.0-alpha.1
1009
+ - @mastra/libsql@0.13.3-alpha.0
1010
+
1011
+ ## 0.1.9-alpha.0
1012
+
1013
+ ### Patch Changes
1014
+
1015
+ - Updated dependencies [c30bca8]
1016
+ - @mastra/core@0.13.3-alpha.0
1017
+
1018
+ ## 0.1.8
1019
+
1020
+ ### Patch Changes
1021
+
1022
+ - Updated dependencies [d5330bf]
1023
+ - Updated dependencies [2e74797]
1024
+ - Updated dependencies [da62f49]
1025
+ - Updated dependencies [8388649]
1026
+ - Updated dependencies [a239d41]
1027
+ - Updated dependencies [dd94a26]
1028
+ - Updated dependencies [3ba6772]
1029
+ - Updated dependencies [b5cf2a3]
1030
+ - Updated dependencies [2fff911]
1031
+ - Updated dependencies [1be6004]
1032
+ - Updated dependencies [b32c50d]
1033
+ - Updated dependencies [63449d0]
1034
+ - Updated dependencies [121a3f8]
1035
+ - Updated dependencies [ec510e7]
1036
+ - @mastra/core@0.13.2
1037
+ - @mastra/memory@0.12.2
1038
+ - @mastra/libsql@0.13.2
1039
+ - @mastra/rag@1.0.8
1040
+
1041
+ ## 0.1.8-alpha.3
1042
+
1043
+ ### Patch Changes
1044
+
1045
+ - Updated dependencies [b5cf2a3]
1046
+ - @mastra/core@0.13.2-alpha.3
1047
+ - @mastra/libsql@0.13.2-alpha.1
1048
+
1049
+ ## 0.1.8-alpha.2
1050
+
1051
+ ### Patch Changes
1052
+
1053
+ - Updated dependencies [d5330bf]
1054
+ - Updated dependencies [a239d41]
1055
+ - Updated dependencies [b32c50d]
1056
+ - Updated dependencies [121a3f8]
1057
+ - Updated dependencies [ec510e7]
1058
+ - @mastra/core@0.13.2-alpha.2
1059
+ - @mastra/libsql@0.13.2-alpha.0
1060
+ - @mastra/memory@0.12.2-alpha.2
1061
+
1062
+ ## 0.1.8-alpha.1
1063
+
1064
+ ### Patch Changes
1065
+
1066
+ - Updated dependencies [2e74797]
1067
+ - Updated dependencies [da62f49]
1068
+ - Updated dependencies [63449d0]
1069
+ - @mastra/core@0.13.2-alpha.1
1070
+ - @mastra/memory@0.12.2-alpha.1
1071
+
1072
+ ## 0.1.8-alpha.0
1073
+
1074
+ ### Patch Changes
1075
+
1076
+ - Updated dependencies [8388649]
1077
+ - Updated dependencies [dd94a26]
1078
+ - Updated dependencies [3ba6772]
1079
+ - Updated dependencies [2fff911]
1080
+ - Updated dependencies [1be6004]
1081
+ - @mastra/core@0.13.2-alpha.0
1082
+ - @mastra/memory@0.12.2-alpha.0
1083
+ - @mastra/rag@1.0.8-alpha.0
1084
+
1085
+ ## 0.1.7
1086
+
1087
+ ### Patch Changes
1088
+
1089
+ - Updated dependencies [8888b57]
1090
+ - Updated dependencies [cd0042e]
1091
+ - @mastra/libsql@0.13.1
1092
+ - @mastra/core@0.13.1
1093
+
1094
+ ## 0.1.7-alpha.0
1095
+
1096
+ ### Patch Changes
1097
+
1098
+ - Updated dependencies [8888b57]
1099
+ - Updated dependencies [cd0042e]
1100
+ - @mastra/libsql@0.13.1-alpha.0
1101
+ - @mastra/core@0.13.1-alpha.0
1102
+
1103
+ ## 0.1.6
1104
+
1105
+ ### Patch Changes
1106
+
1107
+ - Updated dependencies [cb36de0]
1108
+ - Updated dependencies [d0496e6]
1109
+ - Updated dependencies [7d53af4]
1110
+ - Updated dependencies [e1a2ef1]
1111
+ - Updated dependencies [f082460]
1112
+ - Updated dependencies [a82b851]
1113
+ - Updated dependencies [ea0c5f2]
1114
+ - Updated dependencies [41a0a0e]
1115
+ - Updated dependencies [351b36e]
1116
+ - Updated dependencies [ea0c5f2]
1117
+ - Updated dependencies [2871020]
1118
+ - Updated dependencies [ccd519c]
1119
+ - Updated dependencies [94f4812]
1120
+ - Updated dependencies [e202b82]
1121
+ - Updated dependencies [e00f6a0]
1122
+ - Updated dependencies [4a406ec]
1123
+ - Updated dependencies [b0e43c1]
1124
+ - Updated dependencies [5d377e5]
1125
+ - Updated dependencies [1fb812e]
1126
+ - Updated dependencies [35c5798]
1127
+ - @mastra/core@0.13.0
1128
+ - @mastra/memory@0.12.1
1129
+ - @mastra/rag@1.0.7
1130
+ - @mastra/libsql@0.13.0
1131
+ - @mastra/fastembed@0.10.2
1132
+
1133
+ ## 0.1.6-alpha.3
1134
+
1135
+ ### Patch Changes
1136
+
1137
+ - Updated dependencies [d0496e6]
1138
+ - @mastra/core@0.13.0-alpha.3
1139
+
1140
+ ## 0.1.6-alpha.2
1141
+
1142
+ ### Patch Changes
1143
+
1144
+ - Updated dependencies [cb36de0]
1145
+ - Updated dependencies [e1a2ef1]
1146
+ - Updated dependencies [f082460]
1147
+ - Updated dependencies [a82b851]
1148
+ - Updated dependencies [41a0a0e]
1149
+ - Updated dependencies [2871020]
1150
+ - Updated dependencies [4a406ec]
1151
+ - Updated dependencies [5d377e5]
1152
+ - @mastra/core@0.13.0-alpha.2
1153
+ - @mastra/memory@0.12.1-alpha.2
1154
+ - @mastra/libsql@0.13.0-alpha.1
1155
+ - @mastra/fastembed@0.10.2-alpha.0
1156
+ - @mastra/rag@1.0.7-alpha.1
1157
+
1158
+ ## 0.1.6-alpha.1
1159
+
1160
+ ### Patch Changes
1161
+
1162
+ - Updated dependencies [7d53af4]
1163
+ - Updated dependencies [ea0c5f2]
1164
+ - Updated dependencies [351b36e]
1165
+ - Updated dependencies [ea0c5f2]
1166
+ - Updated dependencies [ccd519c]
1167
+ - Updated dependencies [b0e43c1]
1168
+ - Updated dependencies [1fb812e]
1169
+ - Updated dependencies [35c5798]
1170
+ - @mastra/memory@0.12.1-alpha.1
1171
+ - @mastra/core@0.13.0-alpha.1
1172
+ - @mastra/rag@1.0.7-alpha.0
1173
+ - @mastra/libsql@0.13.0-alpha.0
1174
+
1175
+ ## 0.1.6-alpha.0
1176
+
1177
+ ### Patch Changes
1178
+
1179
+ - Updated dependencies [94f4812]
1180
+ - Updated dependencies [e202b82]
1181
+ - Updated dependencies [e00f6a0]
1182
+ - @mastra/core@0.12.2-alpha.0
1183
+ - @mastra/memory@0.12.1-alpha.0
1184
+
1185
+ ## 0.1.5
1186
+
1187
+ ### Patch Changes
1188
+
1189
+ - Updated dependencies [33dcb07]
1190
+ - Updated dependencies [613eec3]
1191
+ - Updated dependencies [d0d9500]
1192
+ - Updated dependencies [d30b1a0]
1193
+ - Updated dependencies [bff87f7]
1194
+ - Updated dependencies [b4a8df0]
1195
+ - @mastra/core@0.12.1
1196
+ - @mastra/rag@1.0.6
1197
+
1198
+ ## 0.1.5-alpha.1
1199
+
1200
+ ### Patch Changes
1201
+
1202
+ - Updated dependencies [d0d9500]
1203
+ - @mastra/core@0.12.1-alpha.1
1204
+
1205
+ ## 0.1.5-alpha.0
1206
+
1207
+ ### Patch Changes
1208
+
1209
+ - Updated dependencies [33dcb07]
1210
+ - Updated dependencies [613eec3]
1211
+ - Updated dependencies [d30b1a0]
1212
+ - Updated dependencies [bff87f7]
1213
+ - Updated dependencies [b4a8df0]
1214
+ - @mastra/core@0.12.1-alpha.0
1215
+ - @mastra/rag@1.0.6-alpha.0
1216
+
1217
+ ## 0.1.4
1218
+
1219
+ ### Patch Changes
1220
+
1221
+ - Updated dependencies [510e2c8]
1222
+ - Updated dependencies [2f72fb2]
1223
+ - Updated dependencies [27cc97a]
1224
+ - Updated dependencies [24ac5ff]
1225
+ - Updated dependencies [674a348]
1226
+ - Updated dependencies [fc437d9]
1227
+ - Updated dependencies [3f89307]
1228
+ - Updated dependencies [b5a6da2]
1229
+ - Updated dependencies [9eda7d4]
1230
+ - Updated dependencies [9d49408]
1231
+ - Updated dependencies [41daa63]
1232
+ - Updated dependencies [ad0a58b]
1233
+ - Updated dependencies [254a36b]
1234
+ - Updated dependencies [2ecf658]
1235
+ - Updated dependencies [7a7754f]
1236
+ - Updated dependencies [fc92d80]
1237
+ - Updated dependencies [e0f73c6]
1238
+ - Updated dependencies [0b89602]
1239
+ - Updated dependencies [4d37822]
1240
+ - Updated dependencies [23a6a7c]
1241
+ - Updated dependencies [cda801d]
1242
+ - Updated dependencies [a77c823]
1243
+ - Updated dependencies [ff9c125]
1244
+ - Updated dependencies [09bca64]
1245
+ - Updated dependencies [a3ca14c]
1246
+ - Updated dependencies [f42c4c2]
1247
+ - Updated dependencies [b8efbb9]
1248
+ - Updated dependencies [71466e7]
1249
+ - Updated dependencies [0c99fbe]
1250
+ - Updated dependencies [ad8a1d8]
1251
+ - @mastra/core@0.12.0
1252
+ - @mastra/libsql@0.12.0
1253
+ - @mastra/memory@0.12.0
1254
+ - @mastra/rag@1.0.5
1255
+
1256
+ ## 0.1.4-alpha.5
1257
+
1258
+ ### Patch Changes
1259
+
1260
+ - Updated dependencies [f42c4c2]
1261
+ - @mastra/memory@0.12.0-alpha.3
1262
+ - @mastra/libsql@0.12.0-alpha.2
1263
+ - @mastra/rag@1.0.5-alpha.1
1264
+ - @mastra/core@0.12.0-alpha.5
1265
+
1266
+ ## 0.1.4-alpha.4
1267
+
1268
+ ### Patch Changes
1269
+
1270
+ - Updated dependencies [ad0a58b]
1271
+ - @mastra/core@0.12.0-alpha.4
1272
+
1273
+ ## 0.1.4-alpha.3
1274
+
1275
+ ### Patch Changes
1276
+
1277
+ - @mastra/core@0.12.0-alpha.3
1278
+
1279
+ ## 0.1.4-alpha.2
1280
+
1281
+ ### Patch Changes
1282
+
1283
+ - Updated dependencies [27cc97a]
1284
+ - Updated dependencies [41daa63]
1285
+ - Updated dependencies [254a36b]
1286
+ - Updated dependencies [0b89602]
1287
+ - Updated dependencies [4d37822]
1288
+ - Updated dependencies [ff9c125]
1289
+ - Updated dependencies [b8efbb9]
1290
+ - Updated dependencies [71466e7]
1291
+ - Updated dependencies [0c99fbe]
1292
+ - @mastra/core@0.12.0-alpha.2
1293
+ - @mastra/memory@0.11.6-alpha.2
1294
+ - @mastra/libsql@0.11.3-alpha.1
1295
+
1296
+ ## 0.1.4-alpha.1
1297
+
1298
+ ### Patch Changes
1299
+
1300
+ - Updated dependencies [e0f73c6]
1301
+ - Updated dependencies [cda801d]
1302
+ - Updated dependencies [a77c823]
1303
+ - @mastra/core@0.12.0-alpha.1
1304
+ - @mastra/memory@0.11.6-alpha.1
1305
+
1306
+ ## 0.1.4-alpha.0
1307
+
1308
+ ### Patch Changes
1309
+
1310
+ - Updated dependencies [510e2c8]
1311
+ - Updated dependencies [2f72fb2]
1312
+ - Updated dependencies [24ac5ff]
1313
+ - Updated dependencies [674a348]
1314
+ - Updated dependencies [fc437d9]
1315
+ - Updated dependencies [3f89307]
1316
+ - Updated dependencies [b5a6da2]
1317
+ - Updated dependencies [9eda7d4]
1318
+ - Updated dependencies [9d49408]
1319
+ - Updated dependencies [2ecf658]
1320
+ - Updated dependencies [7a7754f]
1321
+ - Updated dependencies [fc92d80]
1322
+ - Updated dependencies [23a6a7c]
1323
+ - Updated dependencies [09bca64]
1324
+ - Updated dependencies [a3ca14c]
1325
+ - Updated dependencies [ad8a1d8]
1326
+ - @mastra/core@0.12.0-alpha.0
1327
+ - @mastra/libsql@0.11.3-alpha.0
1328
+ - @mastra/memory@0.11.6-alpha.0
1329
+ - @mastra/rag@1.0.5-alpha.0
1330
+
1331
+ ## 0.1.3
1332
+
1333
+ ### Patch Changes
1334
+
1335
+ - Updated dependencies [3cc50c7]
1336
+ - Updated dependencies [ce088f5]
1337
+ - @mastra/libsql@0.11.2
1338
+ - @mastra/memory@0.11.5
1339
+ - @mastra/rag@1.0.4
1340
+ - @mastra/core@0.11.1
1341
+
1342
+ ## 0.1.2
1343
+
1344
+ ### Patch Changes
1345
+
1346
+ - Updated dependencies [138f4a2]
1347
+ - Updated dependencies [f248d53]
1348
+ - Updated dependencies [2affc57]
1349
+ - Updated dependencies [66e13e3]
1350
+ - Updated dependencies [edd9482]
1351
+ - Updated dependencies [18344d7]
1352
+ - Updated dependencies [7ba91fa]
1353
+ - Updated dependencies [9d372c2]
1354
+ - Updated dependencies [40c2525]
1355
+ - Updated dependencies [e473f27]
1356
+ - Updated dependencies [032cb66]
1357
+ - Updated dependencies [703ac71]
1358
+ - Updated dependencies [a723d69]
1359
+ - Updated dependencies [7827943]
1360
+ - Updated dependencies [5889a31]
1361
+ - Updated dependencies [bf1e7e7]
1362
+ - Updated dependencies [65e3395]
1363
+ - Updated dependencies [4933192]
1364
+ - Updated dependencies [d1c77a4]
1365
+ - Updated dependencies [bea9dd1]
1366
+ - Updated dependencies [da168a4]
1367
+ - Updated dependencies [dcd4802]
1368
+ - Updated dependencies [cbddd18]
1369
+ - Updated dependencies [7ba91fa]
1370
+ - @mastra/memory@0.11.4
1371
+ - @mastra/core@0.11.0
1372
+ - @mastra/libsql@0.11.1
1373
+
1374
+ ## 0.1.2-alpha.3
1375
+
1376
+ ### Patch Changes
1377
+
1378
+ - @mastra/core@0.11.0-alpha.3
1379
+
1380
+ ## 0.1.2-alpha.2
1381
+
1382
+ ### Patch Changes
1383
+
1384
+ - Updated dependencies [f248d53]
1385
+ - Updated dependencies [2affc57]
1386
+ - Updated dependencies [66e13e3]
1387
+ - Updated dependencies [edd9482]
1388
+ - Updated dependencies [18344d7]
1389
+ - Updated dependencies [7ba91fa]
1390
+ - Updated dependencies [9d372c2]
1391
+ - Updated dependencies [40c2525]
1392
+ - Updated dependencies [e473f27]
1393
+ - Updated dependencies [032cb66]
1394
+ - Updated dependencies [703ac71]
1395
+ - Updated dependencies [a723d69]
1396
+ - Updated dependencies [5889a31]
1397
+ - Updated dependencies [65e3395]
1398
+ - Updated dependencies [4933192]
1399
+ - Updated dependencies [d1c77a4]
1400
+ - Updated dependencies [bea9dd1]
1401
+ - Updated dependencies [da168a4]
1402
+ - Updated dependencies [dcd4802]
1403
+ - Updated dependencies [7ba91fa]
1404
+ - @mastra/core@0.11.0-alpha.2
1405
+ - @mastra/libsql@0.11.1-alpha.0
1406
+
1407
+ ## 0.1.2-alpha.1
1408
+
1409
+ ### Patch Changes
1410
+
1411
+ - @mastra/core@0.11.0-alpha.1
1412
+
1413
+ ## 0.1.2-alpha.0
1414
+
1415
+ ### Patch Changes
1416
+
1417
+ - Updated dependencies [138f4a2]
1418
+ - Updated dependencies [7827943]
1419
+ - Updated dependencies [bf1e7e7]
1420
+ - Updated dependencies [cbddd18]
1421
+ - @mastra/memory@0.11.4-alpha.0
1422
+ - @mastra/core@0.11.0-alpha.0
1423
+
1424
+ ## 0.1.1
1425
+
1426
+ ### Patch Changes
1427
+
1428
+ - Updated dependencies [4b20131]
1429
+ - Updated dependencies [0b56518]
1430
+ - Updated dependencies [db5cc15]
1431
+ - Updated dependencies [2ba5b76]
1432
+ - Updated dependencies [edff568]
1433
+ - Updated dependencies [5237998]
1434
+ - Updated dependencies [c3a30de]
1435
+ - Updated dependencies [37c1acd]
1436
+ - Updated dependencies [1aa60b1]
1437
+ - Updated dependencies [89ec9d4]
1438
+ - Updated dependencies [cf3a184]
1439
+ - Updated dependencies [d6bfd60]
1440
+ - Updated dependencies [626b0f4]
1441
+ - Updated dependencies [c22a91f]
1442
+ - Updated dependencies [f7403ab]
1443
+ - Updated dependencies [6c89d7f]
1444
+ - @mastra/memory@0.11.3
1445
+ - @mastra/core@0.10.15
1446
+ - @mastra/rag@1.0.3
1447
+
1448
+ ## 0.1.1-alpha.0
1449
+
1450
+ ### Patch Changes
1451
+
1452
+ - Updated dependencies [0b56518]
1453
+ - Updated dependencies [2ba5b76]
1454
+ - Updated dependencies [c3a30de]
1455
+ - Updated dependencies [cf3a184]
1456
+ - Updated dependencies [d6bfd60]
1457
+ - @mastra/core@0.10.15-alpha.1
1458
+ - @mastra/memory@0.11.3-alpha.1