@mastra/libsql 0.0.0-remove-cloud-span-transform-20250425214156 → 0.0.0-remove-unused-model-providers-api-20251030210744
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.
- package/CHANGELOG.md +1327 -2
- package/LICENSE.md +12 -4
- package/README.md +2 -2
- package/dist/index.cjs +3014 -658
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +4 -4
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3007 -652
- package/dist/index.js.map +1 -0
- package/dist/storage/domains/memory/index.d.ts +92 -0
- package/dist/storage/domains/memory/index.d.ts.map +1 -0
- package/dist/storage/domains/observability/index.d.ts +34 -0
- package/dist/storage/domains/observability/index.d.ts.map +1 -0
- package/dist/storage/domains/operations/index.d.ts +110 -0
- package/dist/storage/domains/operations/index.d.ts.map +1 -0
- package/dist/storage/domains/scores/index.d.ts +54 -0
- package/dist/storage/domains/scores/index.d.ts.map +1 -0
- package/dist/storage/domains/utils.d.ts +60 -0
- package/dist/storage/domains/utils.d.ts.map +1 -0
- package/dist/storage/domains/workflows/index.d.ts +53 -0
- package/dist/storage/domains/workflows/index.d.ts.map +1 -0
- package/dist/storage/index.d.ts +243 -0
- package/dist/storage/index.d.ts.map +1 -0
- package/dist/vector/filter.d.ts +29 -0
- package/dist/vector/filter.d.ts.map +1 -0
- package/dist/vector/index.d.ts +72 -0
- package/dist/vector/index.d.ts.map +1 -0
- package/dist/vector/prompt.d.ts +6 -0
- package/dist/vector/prompt.d.ts.map +1 -0
- package/dist/vector/sql-builder.d.ts +9 -0
- package/dist/vector/sql-builder.d.ts.map +1 -0
- package/package.json +32 -15
- package/dist/_tsup-dts-rollup.d.cts +0 -192
- package/dist/_tsup-dts-rollup.d.ts +0 -192
- package/dist/index.d.cts +0 -4
- package/eslint.config.js +0 -6
- package/src/index.ts +0 -2
- package/src/storage/index.test.ts +0 -15
- package/src/storage/index.ts +0 -624
- package/src/vector/filter.test.ts +0 -968
- package/src/vector/filter.ts +0 -117
- package/src/vector/index.test.ts +0 -1702
- package/src/vector/index.ts +0 -344
- package/src/vector/sql-builder.ts +0 -462
- package/tsconfig.json +0 -5
- package/vitest.config.ts +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,19 +1,1344 @@
|
|
|
1
1
|
# @mastra/libsql
|
|
2
2
|
|
|
3
|
-
## 0.0.0-remove-
|
|
3
|
+
## 0.0.0-remove-unused-model-providers-api-20251030210744
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- Update handlers to use `listWorkflowRuns` instead of `getWorkflowRuns`. Fix type names from `StoragelistThreadsByResourceIdInput/Output` to `StorageListThreadsByResourceIdInput/Output`. ([#9507](https://github.com/mastra-ai/mastra/pull/9507))
|
|
8
|
+
|
|
9
|
+
- Add new list methods to storage API: `listMessages`, `listMessagesById`, `listThreadsByResourceId`, and `listWorkflowRuns`. Most methods are currently wrappers around existing methods. Full implementations will be added when migrating away from legacy methods. ([#9489](https://github.com/mastra-ai/mastra/pull/9489))
|
|
10
|
+
|
|
11
|
+
- Rename RuntimeContext to RequestContext ([#9511](https://github.com/mastra-ai/mastra/pull/9511))
|
|
12
|
+
|
|
13
|
+
- Implement listMessages API for replacing previous methods ([#9531](https://github.com/mastra-ai/mastra/pull/9531))
|
|
14
|
+
|
|
15
|
+
- Remove `getMessagesById` method from storage interfaces in favor of `listMessagesById`. The new method only returns V2-format messages and removes the format parameter, simplifying the API surface. Users should migrate from `getMessagesById({ messageIds, format })` to `listMessagesById({ messageIds })`. ([#9534](https://github.com/mastra-ai/mastra/pull/9534))
|
|
16
|
+
|
|
17
|
+
- Removed old tracing code based on OpenTelemetry ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
|
|
18
|
+
|
|
19
|
+
- Remove legacy evals from Mastra ([#9491](https://github.com/mastra-ai/mastra/pull/9491))
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- Update peer dependencies to match core package version bump (1.0.0) ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies [[`f743dbb`](https://github.com/mastra-ai/mastra/commit/f743dbb8b40d1627b5c10c0e6fc154f4ebb6e394), [`0e8ed46`](https://github.com/mastra-ai/mastra/commit/0e8ed467c54d6901a6a365f270ec15d6faadb36c), [`6c049d9`](https://github.com/mastra-ai/mastra/commit/6c049d94063fdcbd5b81c4912a2bf82a92c9cc0b), [`3443770`](https://github.com/mastra-ai/mastra/commit/3443770662df8eb24c9df3589b2792d78cfcb811), [`9e1911d`](https://github.com/mastra-ai/mastra/commit/9e1911db2b4db85e0e768c3f15e0d61e319869f6), [`ebac155`](https://github.com/mastra-ai/mastra/commit/ebac15564a590117db7078233f927a7e28a85106), [`5948e6a`](https://github.com/mastra-ai/mastra/commit/5948e6a5146c83666ba3f294b2be576c82a513fb), [`8940859`](https://github.com/mastra-ai/mastra/commit/89408593658199b4ad67f7b65e888f344e64a442), [`e629310`](https://github.com/mastra-ai/mastra/commit/e629310f1a73fa236d49ec7a1d1cceb6229dc7cc), [`4c6b492`](https://github.com/mastra-ai/mastra/commit/4c6b492c4dd591c6a592520c1f6855d6e936d71f), [`9d819d5`](https://github.com/mastra-ai/mastra/commit/9d819d54b61481639f4008e4694791bddf187edd), [`71c8d6c`](https://github.com/mastra-ai/mastra/commit/71c8d6c161253207b2b9588bdadb7eed604f7253), [`6179a9b`](https://github.com/mastra-ai/mastra/commit/6179a9ba36ffac326de3cc3c43cdc8028d37c251), [`7051bf3`](https://github.com/mastra-ai/mastra/commit/7051bf38b3b122a069008f861f7bfc004a6d9f6e), [`a8f1494`](https://github.com/mastra-ai/mastra/commit/a8f1494f4bbdc2770bcf327d4c7d869e332183f1), [`5df9cce`](https://github.com/mastra-ai/mastra/commit/5df9cce1a753438413f64c11eeef8f845745c2a8), [`c576fc0`](https://github.com/mastra-ai/mastra/commit/c576fc0b100b2085afded91a37c97a0ea0ec09c7), [`3defc80`](https://github.com/mastra-ai/mastra/commit/3defc80cf2b88a1b7fc1cc4ddcb91e982a614609), [`9f4a683`](https://github.com/mastra-ai/mastra/commit/9f4a6833e88b52574665c028fd5508ad5c2f6004), [`57d157f`](https://github.com/mastra-ai/mastra/commit/57d157f0b163a95c3e6c9eae31bdb11d1bfc64f9), [`2a90c55`](https://github.com/mastra-ai/mastra/commit/2a90c55a86a9210697d5adaab5ee94584b079adc), [`d78b38d`](https://github.com/mastra-ai/mastra/commit/d78b38d898fce285260d3bbb4befade54331617f), [`c710c16`](https://github.com/mastra-ai/mastra/commit/c710c1652dccfdc4111c8412bca7a6bb1d48b441), [`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), [`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), [`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), [`bda6370`](https://github.com/mastra-ai/mastra/commit/bda637009360649aaf579919e7873e33553c273e), [`c7f1f7d`](https://github.com/mastra-ai/mastra/commit/c7f1f7d24f61f247f018cc2d1f33bf63212959a7), [`735d8c1`](https://github.com/mastra-ai/mastra/commit/735d8c1c0d19fbc09e6f8b66cf41bc7655993838), [`c218bd3`](https://github.com/mastra-ai/mastra/commit/c218bd3759e32423735b04843a09404572631014), [`2c4438b`](https://github.com/mastra-ai/mastra/commit/2c4438b87817ab7eed818c7990fef010475af1a3), [`2b8893c`](https://github.com/mastra-ai/mastra/commit/2b8893cb108ef9acb72ee7835cd625610d2c1a4a), [`8e5c75b`](https://github.com/mastra-ai/mastra/commit/8e5c75bdb1d08a42d45309a4c72def4b6890230f), [`fa8409b`](https://github.com/mastra-ai/mastra/commit/fa8409bc39cfd8ba6643b9db5269b90b22e2a2f7), [`173c535`](https://github.com/mastra-ai/mastra/commit/173c535c0645b0da404fe09f003778f0b0d4e019)]:
|
|
28
|
+
- @mastra/core@0.0.0-remove-unused-model-providers-api-20251030210744
|
|
29
|
+
|
|
30
|
+
## 0.16.0
|
|
31
|
+
|
|
32
|
+
### Minor Changes
|
|
33
|
+
|
|
34
|
+
- Update peer dependencies to match core package version bump (0.21.2) ([#8941](https://github.com/mastra-ai/mastra/pull/8941))
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- Support for custom resume labels mapping to step to be resumed ([#8941](https://github.com/mastra-ai/mastra/pull/8941))
|
|
39
|
+
|
|
40
|
+
- Update peerdeps to 0.23.0-0 ([#9043](https://github.com/mastra-ai/mastra/pull/9043))
|
|
41
|
+
|
|
42
|
+
- Updated dependencies [[`c67ca32`](https://github.com/mastra-ai/mastra/commit/c67ca32e3c2cf69bfc146580770c720220ca44ac), [`efb5ed9`](https://github.com/mastra-ai/mastra/commit/efb5ed946ae7f410bc68c9430beb4b010afd25ec), [`dbc9e12`](https://github.com/mastra-ai/mastra/commit/dbc9e1216ba575ba59ead4afb727a01215f7de4f), [`99e41b9`](https://github.com/mastra-ai/mastra/commit/99e41b94957cdd25137d3ac12e94e8b21aa01b68), [`c28833c`](https://github.com/mastra-ai/mastra/commit/c28833c5b6d8e10eeffd7f7d39129d53b8bca240), [`8ea07b4`](https://github.com/mastra-ai/mastra/commit/8ea07b4bdc73e4218437dbb6dcb0f4b23e745a44), [`ba201b8`](https://github.com/mastra-ai/mastra/commit/ba201b8f8feac4c72350f2dbd52c13c7297ba7b0), [`f053e89`](https://github.com/mastra-ai/mastra/commit/f053e89160dbd0bd3333fc3492f68231b5c7c349), [`4fc4136`](https://github.com/mastra-ai/mastra/commit/4fc413652866a8d2240694fddb2562e9edbb70df), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`d10baf5`](https://github.com/mastra-ai/mastra/commit/d10baf5a3c924f2a6654e23a3e318ed03f189b76), [`038c55a`](https://github.com/mastra-ai/mastra/commit/038c55a7090fc1b1513a966386d3072617f836ac), [`182f045`](https://github.com/mastra-ai/mastra/commit/182f0458f25bd70aa774e64fd923c8a483eddbf1), [`9a1a485`](https://github.com/mastra-ai/mastra/commit/9a1a4859b855e37239f652bf14b1ecd1029b8c4e), [`9257233`](https://github.com/mastra-ai/mastra/commit/9257233c4ffce09b2bedc2a9adbd70d7a83fa8e2), [`7620d2b`](https://github.com/mastra-ai/mastra/commit/7620d2bddeb4fae4c3c0a0b4e672969795fca11a), [`b2365f0`](https://github.com/mastra-ai/mastra/commit/b2365f038dd4c5f06400428b224af963f399ad50), [`0f1a4c9`](https://github.com/mastra-ai/mastra/commit/0f1a4c984fb4b104b2f0b63ba18c9fa77f567700), [`9029ba3`](https://github.com/mastra-ai/mastra/commit/9029ba34459c8859fed4c6b73efd8e2d0021e7ba), [`426cc56`](https://github.com/mastra-ai/mastra/commit/426cc561c85ae76a112ded2385532a91f9f9f074), [`00931fb`](https://github.com/mastra-ai/mastra/commit/00931fb1a21aa42c4fbc20c2c40dd62466b8fc8f), [`e473bfe`](https://github.com/mastra-ai/mastra/commit/e473bfe416c0b8e876973c2b6a6f13c394b7a93f), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`2db6160`](https://github.com/mastra-ai/mastra/commit/2db6160e2022ff8827c15d30157e684683b934b5), [`8aeea37`](https://github.com/mastra-ai/mastra/commit/8aeea37efdde347c635a67fed56794943b7f74ec), [`02fe153`](https://github.com/mastra-ai/mastra/commit/02fe15351d6021d214da48ec982a0e9e4150bcee), [`648e2ca`](https://github.com/mastra-ai/mastra/commit/648e2ca42da54838c6ccbdaadc6fadd808fa6b86), [`74567b3`](https://github.com/mastra-ai/mastra/commit/74567b3d237ae3915cd0bca3cf55fa0a64e4e4a4), [`b65c5e0`](https://github.com/mastra-ai/mastra/commit/b65c5e0fe6f3c390a9a8bbcf69304d972c3a4afb), [`15a1733`](https://github.com/mastra-ai/mastra/commit/15a1733074cee8bd37370e1af34cd818e89fa7ac), [`fc2a774`](https://github.com/mastra-ai/mastra/commit/fc2a77468981aaddc3e77f83f0c4ad4a4af140da), [`4e08933`](https://github.com/mastra-ai/mastra/commit/4e08933625464dfde178347af5b6278fcf34188e)]:
|
|
43
|
+
- @mastra/core@0.22.0
|
|
44
|
+
|
|
45
|
+
## 0.16.0-alpha.1
|
|
46
|
+
|
|
47
|
+
### Patch Changes
|
|
48
|
+
|
|
49
|
+
- Update peerdeps to 0.23.0-0 ([#9043](https://github.com/mastra-ai/mastra/pull/9043))
|
|
50
|
+
|
|
51
|
+
- 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)]:
|
|
52
|
+
- @mastra/core@0.22.0-alpha.1
|
|
53
|
+
|
|
54
|
+
## 0.16.0-alpha.0
|
|
55
|
+
|
|
56
|
+
### Minor Changes
|
|
57
|
+
|
|
58
|
+
- Update peer dependencies to match core package version bump (0.21.2) ([#8941](https://github.com/mastra-ai/mastra/pull/8941))
|
|
59
|
+
|
|
60
|
+
### Patch Changes
|
|
61
|
+
|
|
62
|
+
- Support for custom resume labels mapping to step to be resumed ([#8941](https://github.com/mastra-ai/mastra/pull/8941))
|
|
63
|
+
|
|
64
|
+
- 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), [`fc2a774`](https://github.com/mastra-ai/mastra/commit/fc2a77468981aaddc3e77f83f0c4ad4a4af140da), [`4e08933`](https://github.com/mastra-ai/mastra/commit/4e08933625464dfde178347af5b6278fcf34188e)]:
|
|
65
|
+
- @mastra/core@0.21.2-alpha.0
|
|
66
|
+
|
|
67
|
+
## 0.15.2
|
|
68
|
+
|
|
69
|
+
### Patch Changes
|
|
70
|
+
|
|
71
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8619](https://github.com/mastra-ai/mastra/pull/8619))
|
|
72
|
+
|
|
73
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8557](https://github.com/mastra-ai/mastra/pull/8557))
|
|
74
|
+
|
|
75
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8626](https://github.com/mastra-ai/mastra/pull/8626))
|
|
76
|
+
|
|
77
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8686](https://github.com/mastra-ai/mastra/pull/8686))
|
|
78
|
+
|
|
79
|
+
- Updated dependencies [[`1ed9670`](https://github.com/mastra-ai/mastra/commit/1ed9670d3ca50cb60dc2e517738c5eef3968ed27), [`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`f59fc1e`](https://github.com/mastra-ai/mastra/commit/f59fc1e406b8912e692f6bff6cfd4754cc8d165c), [`158381d`](https://github.com/mastra-ai/mastra/commit/158381d39335be934b81ef8a1947bccace492c25), [`a1799bc`](https://github.com/mastra-ai/mastra/commit/a1799bcc1b5a1cdc188f2ac0165f17a1c4ac6f7b), [`6ff6094`](https://github.com/mastra-ai/mastra/commit/6ff60946f4ecfebdeef6e21d2b230c2204f2c9b8), [`fb703b9`](https://github.com/mastra-ai/mastra/commit/fb703b9634eeaff1a6eb2b5531ce0f9e8fb04727), [`37a2314`](https://github.com/mastra-ai/mastra/commit/37a23148e0e5a3b40d4f9f098b194671a8a49faf), [`7b1ef57`](https://github.com/mastra-ai/mastra/commit/7b1ef57fc071c2aa2a2e32905b18cd88719c5a39), [`05a9dee`](https://github.com/mastra-ai/mastra/commit/05a9dee3d355694d28847bfffb6289657fcf7dfa), [`e3c1077`](https://github.com/mastra-ai/mastra/commit/e3c107763aedd1643d3def5df450c235da9ff76c), [`1908ca0`](https://github.com/mastra-ai/mastra/commit/1908ca0521f90e43779cc29ab590173ca560443c), [`1bccdb3`](https://github.com/mastra-ai/mastra/commit/1bccdb33eb90cbeba2dc5ece1c2561fb774b26b6), [`5ef944a`](https://github.com/mastra-ai/mastra/commit/5ef944a3721d93105675cac2b2311432ff8cc393), [`d6b186f`](https://github.com/mastra-ai/mastra/commit/d6b186fb08f1caf1b86f73d3a5ee88fb999ca3be), [`ee68e82`](https://github.com/mastra-ai/mastra/commit/ee68e8289ea4408d29849e899bc6e78b3bd4e843), [`228228b`](https://github.com/mastra-ai/mastra/commit/228228b0b1de9291cb8887587f5cea1a8757ebad), [`ea33930`](https://github.com/mastra-ai/mastra/commit/ea339301e82d6318257720d811b043014ee44064), [`65493b3`](https://github.com/mastra-ai/mastra/commit/65493b31c36f6fdb78f9679f7e1ecf0c250aa5ee), [`a998b8f`](https://github.com/mastra-ai/mastra/commit/a998b8f858091c2ec47683e60766cf12d03001e4), [`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`8a37bdd`](https://github.com/mastra-ai/mastra/commit/8a37bddb6d8614a32c5b70303d583d80c620ea61), [`135d6f2`](https://github.com/mastra-ai/mastra/commit/135d6f22a326ed1dffff858700669dff09d2c9eb)]:
|
|
80
|
+
- @mastra/core@0.21.0
|
|
81
|
+
|
|
82
|
+
## 0.15.2-alpha.0
|
|
83
|
+
|
|
84
|
+
### Patch Changes
|
|
85
|
+
|
|
86
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8619](https://github.com/mastra-ai/mastra/pull/8619))
|
|
87
|
+
|
|
88
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8557](https://github.com/mastra-ai/mastra/pull/8557))
|
|
89
|
+
|
|
90
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8626](https://github.com/mastra-ai/mastra/pull/8626))
|
|
91
|
+
|
|
92
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8686](https://github.com/mastra-ai/mastra/pull/8686))
|
|
93
|
+
|
|
94
|
+
- Updated dependencies [[`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`7b1ef57`](https://github.com/mastra-ai/mastra/commit/7b1ef57fc071c2aa2a2e32905b18cd88719c5a39), [`ee68e82`](https://github.com/mastra-ai/mastra/commit/ee68e8289ea4408d29849e899bc6e78b3bd4e843), [`228228b`](https://github.com/mastra-ai/mastra/commit/228228b0b1de9291cb8887587f5cea1a8757ebad), [`ea33930`](https://github.com/mastra-ai/mastra/commit/ea339301e82d6318257720d811b043014ee44064), [`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`135d6f2`](https://github.com/mastra-ai/mastra/commit/135d6f22a326ed1dffff858700669dff09d2c9eb), [`59d036d`](https://github.com/mastra-ai/mastra/commit/59d036d4c2706b430b0e3f1f1e0ee853ce16ca04)]:
|
|
95
|
+
- @mastra/core@0.21.0-alpha.0
|
|
96
|
+
|
|
97
|
+
## 0.15.1
|
|
98
|
+
|
|
99
|
+
### Patch Changes
|
|
100
|
+
|
|
101
|
+
- Breaking change to move the agent.streamVNext/generateVNext implementation to the default stream/generate. The old stream/generate have now been moved to streamLegacy and generateLegacy ([#8097](https://github.com/mastra-ai/mastra/pull/8097))
|
|
102
|
+
|
|
103
|
+
- 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)]:
|
|
104
|
+
- @mastra/core@0.20.0
|
|
105
|
+
|
|
106
|
+
## 0.15.1-alpha.0
|
|
107
|
+
|
|
108
|
+
### Patch Changes
|
|
109
|
+
|
|
110
|
+
- Breaking change to move the agent.streamVNext/generateVNext implementation to the default stream/generate. The old stream/generate have now been moved to streamLegacy and generateLegacy ([#8097](https://github.com/mastra-ai/mastra/pull/8097))
|
|
111
|
+
|
|
112
|
+
- 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)]:
|
|
113
|
+
- @mastra/core@0.20.0-alpha.0
|
|
114
|
+
|
|
115
|
+
## 0.15.0
|
|
116
|
+
|
|
117
|
+
### Minor Changes
|
|
118
|
+
|
|
119
|
+
- Added Postgres and updated libsql storage adapters for ai-traces ([#8027](https://github.com/mastra-ai/mastra/pull/8027))
|
|
120
|
+
|
|
121
|
+
### Patch Changes
|
|
122
|
+
|
|
123
|
+
- Update peer deps ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
|
|
124
|
+
|
|
125
|
+
- Fix incorrect title and import references in README.md ([#8288](https://github.com/mastra-ai/mastra/pull/8288))
|
|
126
|
+
|
|
127
|
+
Fixed the package title from '@mastra/pg' to '@mastra/libsql' and corrected the import statement in the Storage usage example.
|
|
128
|
+
|
|
129
|
+
- Libsql get scores by span ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
|
|
130
|
+
|
|
131
|
+
- Updated dependencies [[`dc099b4`](https://github.com/mastra-ai/mastra/commit/dc099b40fb31147ba3f362f98d991892033c4c67), [`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`b342a68`](https://github.com/mastra-ai/mastra/commit/b342a68e1399cf1ece9ba11bda112db89d21118c), [`a7243e2`](https://github.com/mastra-ai/mastra/commit/a7243e2e58762667a6e3921e755e89d6bb0a3282), [`7fceb0a`](https://github.com/mastra-ai/mastra/commit/7fceb0a327d678e812f90f5387c5bc4f38bd039e), [`303a9c0`](https://github.com/mastra-ai/mastra/commit/303a9c0d7dd58795915979f06a0512359e4532fb), [`df64f9e`](https://github.com/mastra-ai/mastra/commit/df64f9ef814916fff9baedd861c988084e7c41de), [`370f8a6`](https://github.com/mastra-ai/mastra/commit/370f8a6480faec70fef18d72e5f7538f27004301), [`809eea0`](https://github.com/mastra-ai/mastra/commit/809eea092fa80c3f69b9eaf078d843b57fd2a88e), [`683e5a1`](https://github.com/mastra-ai/mastra/commit/683e5a1466e48b686825b2c11f84680f296138e4), [`3679378`](https://github.com/mastra-ai/mastra/commit/3679378673350aa314741dc826f837b1984149bc), [`7775bc2`](https://github.com/mastra-ai/mastra/commit/7775bc20bb1ad1ab24797fb420e4f96c65b0d8ec), [`623ffaf`](https://github.com/mastra-ai/mastra/commit/623ffaf2d969e11e99a0224633cf7b5a0815c857), [`9fc1613`](https://github.com/mastra-ai/mastra/commit/9fc16136400186648880fd990119ac15f7c02ee4), [`61f62aa`](https://github.com/mastra-ai/mastra/commit/61f62aa31bc88fe4ddf8da6240dbcfbeb07358bd), [`db1891a`](https://github.com/mastra-ai/mastra/commit/db1891a4707443720b7cd8a260dc7e1d49b3609c), [`e8f379d`](https://github.com/mastra-ai/mastra/commit/e8f379d390efa264c4e0874f9ac0cf8839b07777), [`652066b`](https://github.com/mastra-ai/mastra/commit/652066bd1efc6bb6813ba950ed1d7573e8b7d9d4), [`3e292ba`](https://github.com/mastra-ai/mastra/commit/3e292ba00837886d5d68a34cbc0d9b703c991883), [`418c136`](https://github.com/mastra-ai/mastra/commit/418c1366843d88e491bca3f87763899ce855ca29), [`ea8d386`](https://github.com/mastra-ai/mastra/commit/ea8d386cd8c5593664515fd5770c06bf2aa980ef), [`67b0f00`](https://github.com/mastra-ai/mastra/commit/67b0f005b520335c71fb85cbaa25df4ce8484a81), [`c2a4919`](https://github.com/mastra-ai/mastra/commit/c2a4919ba6797d8bdb1509e02287496eef69303e), [`c84b7d0`](https://github.com/mastra-ai/mastra/commit/c84b7d093c4657772140cbfd2b15ef72f3315ed5), [`0130986`](https://github.com/mastra-ai/mastra/commit/0130986fc62d0edcc626dd593282661dbb9af141)]:
|
|
132
|
+
- @mastra/core@0.19.0
|
|
133
|
+
|
|
134
|
+
## 0.15.0-alpha.0
|
|
135
|
+
|
|
136
|
+
### Minor Changes
|
|
137
|
+
|
|
138
|
+
- Added Postgres and updated libsql storage adapters for ai-traces ([#8027](https://github.com/mastra-ai/mastra/pull/8027))
|
|
139
|
+
|
|
140
|
+
### Patch Changes
|
|
141
|
+
|
|
142
|
+
- Update peer deps ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
|
|
143
|
+
|
|
144
|
+
- Fix incorrect title and import references in README.md ([#8288](https://github.com/mastra-ai/mastra/pull/8288))
|
|
145
|
+
|
|
146
|
+
Fixed the package title from '@mastra/pg' to '@mastra/libsql' and corrected the import statement in the Storage usage example.
|
|
147
|
+
|
|
148
|
+
- Libsql get scores by span ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
|
|
149
|
+
|
|
150
|
+
- Updated dependencies [[`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`a7243e2`](https://github.com/mastra-ai/mastra/commit/a7243e2e58762667a6e3921e755e89d6bb0a3282), [`7fceb0a`](https://github.com/mastra-ai/mastra/commit/7fceb0a327d678e812f90f5387c5bc4f38bd039e), [`df64f9e`](https://github.com/mastra-ai/mastra/commit/df64f9ef814916fff9baedd861c988084e7c41de), [`809eea0`](https://github.com/mastra-ai/mastra/commit/809eea092fa80c3f69b9eaf078d843b57fd2a88e), [`683e5a1`](https://github.com/mastra-ai/mastra/commit/683e5a1466e48b686825b2c11f84680f296138e4), [`3679378`](https://github.com/mastra-ai/mastra/commit/3679378673350aa314741dc826f837b1984149bc), [`7775bc2`](https://github.com/mastra-ai/mastra/commit/7775bc20bb1ad1ab24797fb420e4f96c65b0d8ec), [`db1891a`](https://github.com/mastra-ai/mastra/commit/db1891a4707443720b7cd8a260dc7e1d49b3609c), [`e8f379d`](https://github.com/mastra-ai/mastra/commit/e8f379d390efa264c4e0874f9ac0cf8839b07777), [`652066b`](https://github.com/mastra-ai/mastra/commit/652066bd1efc6bb6813ba950ed1d7573e8b7d9d4), [`ea8d386`](https://github.com/mastra-ai/mastra/commit/ea8d386cd8c5593664515fd5770c06bf2aa980ef), [`c2a4919`](https://github.com/mastra-ai/mastra/commit/c2a4919ba6797d8bdb1509e02287496eef69303e), [`0130986`](https://github.com/mastra-ai/mastra/commit/0130986fc62d0edcc626dd593282661dbb9af141)]:
|
|
151
|
+
- @mastra/core@0.19.0-alpha.1
|
|
152
|
+
|
|
153
|
+
## 0.14.3
|
|
154
|
+
|
|
155
|
+
### Patch Changes
|
|
156
|
+
|
|
157
|
+
- Update Peerdeps for packages based on core minor bump ([#8025](https://github.com/mastra-ai/mastra/pull/8025))
|
|
158
|
+
|
|
159
|
+
- Updated dependencies [[`cf34503`](https://github.com/mastra-ai/mastra/commit/cf345031de4e157f29087946449e60b965e9c8a9), [`6b4b1e4`](https://github.com/mastra-ai/mastra/commit/6b4b1e4235428d39e51cbda9832704c0ba70ab32), [`3469fca`](https://github.com/mastra-ai/mastra/commit/3469fca7bb7e5e19369ff9f7044716a5e4b02585), [`a61f23f`](https://github.com/mastra-ai/mastra/commit/a61f23fbbca4b88b763d94f1d784c47895ed72d7), [`4b339b8`](https://github.com/mastra-ai/mastra/commit/4b339b8141c20d6a6d80583c7e8c5c05d8c19492), [`d1dc606`](https://github.com/mastra-ai/mastra/commit/d1dc6067b0557a71190b68d56ee15b48c26d2411), [`c45298a`](https://github.com/mastra-ai/mastra/commit/c45298a0a0791db35cf79f1199d77004da0704cb), [`c4a8204`](https://github.com/mastra-ai/mastra/commit/c4a82046bfd241d6044e234bc5917d5a01fe6b55), [`d3bd4d4`](https://github.com/mastra-ai/mastra/commit/d3bd4d482a685bbb67bfa89be91c90dca3fa71ad), [`c591dfc`](https://github.com/mastra-ai/mastra/commit/c591dfc1e600fae1dedffe239357d250e146378f), [`1920c5c`](https://github.com/mastra-ai/mastra/commit/1920c5c6d666f687785c73021196aa551e579e0d), [`b6a3b65`](https://github.com/mastra-ai/mastra/commit/b6a3b65d830fa0ca7754ad6481661d1f2c878f21), [`af3abb6`](https://github.com/mastra-ai/mastra/commit/af3abb6f7c7585d856e22d27f4e7d2ece2186b9a)]:
|
|
160
|
+
- @mastra/core@0.18.0
|
|
161
|
+
|
|
162
|
+
## 0.14.3-alpha.0
|
|
163
|
+
|
|
164
|
+
### Patch Changes
|
|
165
|
+
|
|
166
|
+
- Update Peerdeps for packages based on core minor bump ([#8025](https://github.com/mastra-ai/mastra/pull/8025))
|
|
167
|
+
|
|
168
|
+
- Updated dependencies [[`cf34503`](https://github.com/mastra-ai/mastra/commit/cf345031de4e157f29087946449e60b965e9c8a9), [`6b4b1e4`](https://github.com/mastra-ai/mastra/commit/6b4b1e4235428d39e51cbda9832704c0ba70ab32), [`3469fca`](https://github.com/mastra-ai/mastra/commit/3469fca7bb7e5e19369ff9f7044716a5e4b02585), [`c4a8204`](https://github.com/mastra-ai/mastra/commit/c4a82046bfd241d6044e234bc5917d5a01fe6b55)]:
|
|
169
|
+
- @mastra/core@0.18.0-alpha.2
|
|
170
|
+
|
|
171
|
+
## 0.14.2
|
|
172
|
+
|
|
173
|
+
### Patch Changes
|
|
174
|
+
|
|
175
|
+
- dependencies updates: ([#7742](https://github.com/mastra-ai/mastra/pull/7742))
|
|
176
|
+
- Updated dependency [`@libsql/client@^0.15.15` ↗︎](https://www.npmjs.com/package/@libsql/client/v/0.15.15) (from `^0.15.14`, in `dependencies`)
|
|
177
|
+
|
|
178
|
+
- Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
|
|
179
|
+
|
|
180
|
+
- Add resource id to workflow run snapshots ([#7740](https://github.com/mastra-ai/mastra/pull/7740))
|
|
181
|
+
|
|
182
|
+
- Updated dependencies [[`197cbb2`](https://github.com/mastra-ai/mastra/commit/197cbb248fc8cb4bbf61bf70b770f1388b445df2), [`a1bb887`](https://github.com/mastra-ai/mastra/commit/a1bb887e8bfae44230f487648da72e96ef824561), [`6590763`](https://github.com/mastra-ai/mastra/commit/65907630ef4bf4127067cecd1cb21b56f55d5f1b), [`fb84c21`](https://github.com/mastra-ai/mastra/commit/fb84c21859d09bdc8f158bd5412bdc4b5835a61c), [`5802bf5`](https://github.com/mastra-ai/mastra/commit/5802bf57f6182e4b67c28d7d91abed349a8d14f3), [`5bda53a`](https://github.com/mastra-ai/mastra/commit/5bda53a9747bfa7d876d754fc92c83a06e503f62), [`c2eade3`](https://github.com/mastra-ai/mastra/commit/c2eade3508ef309662f065e5f340d7840295dd53), [`f26a8fd`](https://github.com/mastra-ai/mastra/commit/f26a8fd99fcb0497a5d86c28324430d7f6a5fb83), [`222965a`](https://github.com/mastra-ai/mastra/commit/222965a98ce8197b86673ec594244650b5960257), [`6047778`](https://github.com/mastra-ai/mastra/commit/6047778e501df460648f31decddf8e443f36e373), [`a0f5f1c`](https://github.com/mastra-ai/mastra/commit/a0f5f1ca39c3c5c6d26202e9fcab986b4fe14568), [`9d4fc09`](https://github.com/mastra-ai/mastra/commit/9d4fc09b2ad55caa7738c7ceb3a905e454f74cdd), [`05c7abf`](https://github.com/mastra-ai/mastra/commit/05c7abfe105a015b7760c9bf33ff4419727502a0), [`0324ceb`](https://github.com/mastra-ai/mastra/commit/0324ceb8af9d16c12a531f90e575f6aab797ac81), [`d75ccf0`](https://github.com/mastra-ai/mastra/commit/d75ccf06dfd2582b916aa12624e3cd61b279edf1), [`0f9d227`](https://github.com/mastra-ai/mastra/commit/0f9d227890a98db33865abbea39daf407cd55ef7), [`b356f5f`](https://github.com/mastra-ai/mastra/commit/b356f5f7566cb3edb755d91f00b72fc1420b2a37), [`de056a0`](https://github.com/mastra-ai/mastra/commit/de056a02cbb43f6aa0380ab2150ea404af9ec0dd), [`f5ce05f`](https://github.com/mastra-ai/mastra/commit/f5ce05f831d42c69559bf4c0fdb46ccb920fc3a3), [`60c9cec`](https://github.com/mastra-ai/mastra/commit/60c9cec7048a79a87440f7840c383875bd710d93), [`c93532a`](https://github.com/mastra-ai/mastra/commit/c93532a340b80e4dd946d4c138d9381de5f70399), [`6cb1fcb`](https://github.com/mastra-ai/mastra/commit/6cb1fcbc8d0378ffed0d17784c96e68f30cb0272), [`aee4f00`](https://github.com/mastra-ai/mastra/commit/aee4f00e61e1a42e81a6d74ff149dbe69e32695a), [`9f6f30f`](https://github.com/mastra-ai/mastra/commit/9f6f30f04ec6648bbca798ea8aad59317c40d8db), [`547c621`](https://github.com/mastra-ai/mastra/commit/547c62104af3f7a551b3754e9cbdf0a3fbba15e4), [`897995e`](https://github.com/mastra-ai/mastra/commit/897995e630d572fe2891e7ede817938cabb43251), [`0fed8f2`](https://github.com/mastra-ai/mastra/commit/0fed8f2aa84b167b3415ea6f8f70755775132c8d), [`4f9ea8c`](https://github.com/mastra-ai/mastra/commit/4f9ea8c95ea74ba9abbf3b2ab6106c7d7bc45689), [`1a1fbe6`](https://github.com/mastra-ai/mastra/commit/1a1fbe66efb7d94abc373ed0dd9676adb8122454), [`d706fad`](https://github.com/mastra-ai/mastra/commit/d706fad6e6e4b72357b18d229ba38e6c913c0e70), [`87fd07f`](https://github.com/mastra-ai/mastra/commit/87fd07ff35387a38728967163460231b5d33ae3b), [`5c3768f`](https://github.com/mastra-ai/mastra/commit/5c3768fa959454232ad76715c381f4aac00c6881), [`2685a78`](https://github.com/mastra-ai/mastra/commit/2685a78f224b8b04e20d4fab5ac1adb638190071), [`36f39c0`](https://github.com/mastra-ai/mastra/commit/36f39c00dc794952dc3c11aab91c2fa8bca74b11), [`239b5a4`](https://github.com/mastra-ai/mastra/commit/239b5a497aeae2e8b4d764f46217cfff2284788e), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382)]:
|
|
183
|
+
- @mastra/core@0.17.0
|
|
184
|
+
|
|
185
|
+
## 0.14.2-alpha.2
|
|
186
|
+
|
|
187
|
+
### Patch Changes
|
|
188
|
+
|
|
189
|
+
- Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
|
|
190
|
+
|
|
191
|
+
- Updated dependencies [[`a1bb887`](https://github.com/mastra-ai/mastra/commit/a1bb887e8bfae44230f487648da72e96ef824561), [`a0f5f1c`](https://github.com/mastra-ai/mastra/commit/a0f5f1ca39c3c5c6d26202e9fcab986b4fe14568), [`b356f5f`](https://github.com/mastra-ai/mastra/commit/b356f5f7566cb3edb755d91f00b72fc1420b2a37), [`f5ce05f`](https://github.com/mastra-ai/mastra/commit/f5ce05f831d42c69559bf4c0fdb46ccb920fc3a3), [`9f6f30f`](https://github.com/mastra-ai/mastra/commit/9f6f30f04ec6648bbca798ea8aad59317c40d8db), [`d706fad`](https://github.com/mastra-ai/mastra/commit/d706fad6e6e4b72357b18d229ba38e6c913c0e70), [`5c3768f`](https://github.com/mastra-ai/mastra/commit/5c3768fa959454232ad76715c381f4aac00c6881), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382)]:
|
|
192
|
+
- @mastra/core@0.17.0-alpha.3
|
|
193
|
+
|
|
194
|
+
## 0.14.2-alpha.1
|
|
195
|
+
|
|
196
|
+
### Patch Changes
|
|
197
|
+
|
|
198
|
+
- Add resource id to workflow run snapshots ([#7740](https://github.com/mastra-ai/mastra/pull/7740))
|
|
199
|
+
|
|
200
|
+
- Updated dependencies [[`547c621`](https://github.com/mastra-ai/mastra/commit/547c62104af3f7a551b3754e9cbdf0a3fbba15e4)]:
|
|
201
|
+
- @mastra/core@0.16.4-alpha.1
|
|
202
|
+
|
|
203
|
+
## 0.14.2-alpha.0
|
|
204
|
+
|
|
205
|
+
### Patch Changes
|
|
206
|
+
|
|
207
|
+
- dependencies updates: ([#7742](https://github.com/mastra-ai/mastra/pull/7742))
|
|
208
|
+
- Updated dependency [`@libsql/client@^0.15.15` ↗︎](https://www.npmjs.com/package/@libsql/client/v/0.15.15) (from `^0.15.14`, in `dependencies`)
|
|
209
|
+
- Updated dependencies [[`5802bf5`](https://github.com/mastra-ai/mastra/commit/5802bf57f6182e4b67c28d7d91abed349a8d14f3), [`5bda53a`](https://github.com/mastra-ai/mastra/commit/5bda53a9747bfa7d876d754fc92c83a06e503f62), [`f26a8fd`](https://github.com/mastra-ai/mastra/commit/f26a8fd99fcb0497a5d86c28324430d7f6a5fb83), [`1a1fbe6`](https://github.com/mastra-ai/mastra/commit/1a1fbe66efb7d94abc373ed0dd9676adb8122454), [`36f39c0`](https://github.com/mastra-ai/mastra/commit/36f39c00dc794952dc3c11aab91c2fa8bca74b11)]:
|
|
210
|
+
- @mastra/core@0.16.4-alpha.0
|
|
211
|
+
|
|
212
|
+
## 0.14.1
|
|
213
|
+
|
|
214
|
+
### Patch Changes
|
|
215
|
+
|
|
216
|
+
- Fix AI Trace bug for libsql ([#7695](https://github.com/mastra-ai/mastra/pull/7695))
|
|
217
|
+
|
|
218
|
+
- 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), [`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)]:
|
|
219
|
+
- @mastra/core@0.16.3
|
|
220
|
+
|
|
221
|
+
## 0.14.1-alpha.0
|
|
222
|
+
|
|
223
|
+
### Patch Changes
|
|
224
|
+
|
|
225
|
+
- Fix AI Trace bug for libsql ([#7695](https://github.com/mastra-ai/mastra/pull/7695))
|
|
226
|
+
|
|
227
|
+
- 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), [`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)]:
|
|
228
|
+
- @mastra/core@0.16.3-alpha.0
|
|
229
|
+
|
|
230
|
+
## 0.14.0
|
|
231
|
+
|
|
232
|
+
### Minor Changes
|
|
233
|
+
|
|
234
|
+
- 376913a: Update peerdeps of @mastra/core
|
|
235
|
+
|
|
236
|
+
### Patch Changes
|
|
237
|
+
|
|
238
|
+
- 6f5eb7a: Throw if an empty or whitespace-only threadId is passed when getting messages
|
|
239
|
+
- Updated dependencies [8fbf79e]
|
|
240
|
+
- Updated dependencies [fd83526]
|
|
241
|
+
- Updated dependencies [d0b90ab]
|
|
242
|
+
- Updated dependencies [6f5eb7a]
|
|
243
|
+
- Updated dependencies [a01cf14]
|
|
244
|
+
- Updated dependencies [a9e50ee]
|
|
245
|
+
- Updated dependencies [5397eb4]
|
|
246
|
+
- Updated dependencies [c9f4e4a]
|
|
247
|
+
- Updated dependencies [0acbc80]
|
|
248
|
+
- @mastra/core@0.16.0
|
|
249
|
+
|
|
250
|
+
## 0.14.0-alpha.1
|
|
251
|
+
|
|
252
|
+
### Minor Changes
|
|
253
|
+
|
|
254
|
+
- 376913a: Update peerdeps of @mastra/core
|
|
255
|
+
|
|
256
|
+
### Patch Changes
|
|
257
|
+
|
|
258
|
+
- Updated dependencies [8fbf79e]
|
|
259
|
+
- @mastra/core@0.16.0-alpha.1
|
|
260
|
+
|
|
261
|
+
## 0.13.9-alpha.0
|
|
262
|
+
|
|
263
|
+
### Patch Changes
|
|
264
|
+
|
|
265
|
+
- 6f5eb7a: Throw if an empty or whitespace-only threadId is passed when getting messages
|
|
266
|
+
- Updated dependencies [fd83526]
|
|
267
|
+
- Updated dependencies [d0b90ab]
|
|
268
|
+
- Updated dependencies [6f5eb7a]
|
|
269
|
+
- Updated dependencies [a01cf14]
|
|
270
|
+
- Updated dependencies [a9e50ee]
|
|
271
|
+
- Updated dependencies [5397eb4]
|
|
272
|
+
- Updated dependencies [c9f4e4a]
|
|
273
|
+
- Updated dependencies [0acbc80]
|
|
274
|
+
- @mastra/core@0.16.0-alpha.0
|
|
275
|
+
|
|
276
|
+
## 0.13.8
|
|
277
|
+
|
|
278
|
+
### Patch Changes
|
|
279
|
+
|
|
280
|
+
- 8429e4c: dependencies updates:
|
|
281
|
+
- Updated dependency [`@libsql/client@^0.15.14` ↗︎](https://www.npmjs.com/package/@libsql/client/v/0.15.14) (from `^0.15.12`, in `dependencies`)
|
|
282
|
+
- de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
|
|
283
|
+
- f0dfcac: updated core peerdep
|
|
284
|
+
- dbc51ef: Fixed dependency issue with new AI_SPAN schema
|
|
285
|
+
- Updated dependencies [ab48c97]
|
|
286
|
+
- Updated dependencies [85ef90b]
|
|
287
|
+
- Updated dependencies [aedbbfa]
|
|
288
|
+
- Updated dependencies [ff89505]
|
|
289
|
+
- Updated dependencies [637f323]
|
|
290
|
+
- Updated dependencies [de3cbc6]
|
|
291
|
+
- Updated dependencies [c19bcf7]
|
|
292
|
+
- Updated dependencies [4474d04]
|
|
293
|
+
- Updated dependencies [183dc95]
|
|
294
|
+
- Updated dependencies [a1111e2]
|
|
295
|
+
- Updated dependencies [b42a961]
|
|
296
|
+
- Updated dependencies [61debef]
|
|
297
|
+
- Updated dependencies [9beaeff]
|
|
298
|
+
- Updated dependencies [29de0e1]
|
|
299
|
+
- Updated dependencies [f643c65]
|
|
300
|
+
- Updated dependencies [00c74e7]
|
|
301
|
+
- Updated dependencies [fef7375]
|
|
302
|
+
- Updated dependencies [e3d8fea]
|
|
303
|
+
- Updated dependencies [45e4d39]
|
|
304
|
+
- Updated dependencies [9eee594]
|
|
305
|
+
- Updated dependencies [7149d8d]
|
|
306
|
+
- Updated dependencies [822c2e8]
|
|
307
|
+
- Updated dependencies [979912c]
|
|
308
|
+
- Updated dependencies [7dcf4c0]
|
|
309
|
+
- Updated dependencies [4106a58]
|
|
310
|
+
- Updated dependencies [ad78bfc]
|
|
311
|
+
- Updated dependencies [0302f50]
|
|
312
|
+
- Updated dependencies [6ac697e]
|
|
313
|
+
- Updated dependencies [74db265]
|
|
314
|
+
- Updated dependencies [0ce418a]
|
|
315
|
+
- Updated dependencies [af90672]
|
|
316
|
+
- Updated dependencies [8387952]
|
|
317
|
+
- Updated dependencies [7f3b8da]
|
|
318
|
+
- Updated dependencies [905352b]
|
|
319
|
+
- Updated dependencies [599d04c]
|
|
320
|
+
- Updated dependencies [56041d0]
|
|
321
|
+
- Updated dependencies [3412597]
|
|
322
|
+
- Updated dependencies [5eca5d2]
|
|
323
|
+
- Updated dependencies [f2cda47]
|
|
324
|
+
- Updated dependencies [5de1555]
|
|
325
|
+
- Updated dependencies [cfd377a]
|
|
326
|
+
- Updated dependencies [1ed5a3e]
|
|
327
|
+
- @mastra/core@0.15.3
|
|
328
|
+
|
|
329
|
+
## 0.13.8-alpha.3
|
|
330
|
+
|
|
331
|
+
### Patch Changes
|
|
332
|
+
|
|
333
|
+
- [#7394](https://github.com/mastra-ai/mastra/pull/7394) [`f0dfcac`](https://github.com/mastra-ai/mastra/commit/f0dfcac4458bdf789b975e2d63e984f5d1e7c4d3) Thanks [@NikAiyer](https://github.com/NikAiyer)! - updated core peerdep
|
|
334
|
+
|
|
335
|
+
- Updated dependencies [[`7149d8d`](https://github.com/mastra-ai/mastra/commit/7149d8d4bdc1edf0008e0ca9b7925eb0b8b60dbe)]:
|
|
336
|
+
- @mastra/core@0.15.3-alpha.7
|
|
337
|
+
|
|
338
|
+
## 0.13.8-alpha.2
|
|
339
|
+
|
|
340
|
+
### Patch Changes
|
|
341
|
+
|
|
342
|
+
- [#7380](https://github.com/mastra-ai/mastra/pull/7380) [`8429e4c`](https://github.com/mastra-ai/mastra/commit/8429e4c0d2041d072826c4382c09187116573a77) Thanks [@dane-ai-mastra](https://github.com/apps/dane-ai-mastra)! - dependencies updates:
|
|
343
|
+
- Updated dependency [`@libsql/client@^0.15.14` ↗︎](https://www.npmjs.com/package/@libsql/client/v/0.15.14) (from `^0.15.12`, in `dependencies`)
|
|
344
|
+
- Updated dependencies [[`c19bcf7`](https://github.com/mastra-ai/mastra/commit/c19bcf7b43542b02157b5e17303e519933a153ab), [`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)]:
|
|
345
|
+
- @mastra/core@0.15.3-alpha.6
|
|
346
|
+
|
|
347
|
+
## 0.13.8-alpha.1
|
|
348
|
+
|
|
349
|
+
### Patch Changes
|
|
350
|
+
|
|
351
|
+
- [#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`.
|
|
352
|
+
|
|
353
|
+
- Updated dependencies [[`85ef90b`](https://github.com/mastra-ai/mastra/commit/85ef90bb2cd4ae4df855c7ac175f7d392c55c1bf), [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e)]:
|
|
354
|
+
- @mastra/core@0.15.3-alpha.5
|
|
355
|
+
|
|
356
|
+
## 0.13.8-alpha.0
|
|
357
|
+
|
|
358
|
+
### Patch Changes
|
|
359
|
+
|
|
360
|
+
- [#7200](https://github.com/mastra-ai/mastra/pull/7200) [`dbc51ef`](https://github.com/mastra-ai/mastra/commit/dbc51ef2e42604117ab90917fc284a560647a61f) Thanks [@epinzur](https://github.com/epinzur)! - Fixed dependency issue with new AI_SPAN schema
|
|
361
|
+
|
|
362
|
+
- 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), [`3412597`](https://github.com/mastra-ai/mastra/commit/3412597a6644c0b6bf3236d6e319ed1450c5bae8)]:
|
|
363
|
+
- @mastra/core@0.15.3-alpha.3
|
|
364
|
+
|
|
365
|
+
## 0.13.7
|
|
366
|
+
|
|
367
|
+
### Patch Changes
|
|
368
|
+
|
|
369
|
+
- [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
|
|
370
|
+
|
|
371
|
+
- Updated dependencies []:
|
|
372
|
+
- @mastra/core@0.15.2
|
|
373
|
+
|
|
374
|
+
## 0.13.6
|
|
375
|
+
|
|
376
|
+
### Patch Changes
|
|
377
|
+
|
|
378
|
+
- [`95b2aa9`](https://github.com/mastra-ai/mastra/commit/95b2aa908230919e67efcac0d69005a2d5745298) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdeps @mastra/core
|
|
379
|
+
|
|
380
|
+
- Updated dependencies []:
|
|
381
|
+
- @mastra/core@0.15.1
|
|
382
|
+
|
|
383
|
+
## 0.13.5
|
|
384
|
+
|
|
385
|
+
### Patch Changes
|
|
386
|
+
|
|
387
|
+
- [#6994](https://github.com/mastra-ai/mastra/pull/6994) [`0594a70`](https://github.com/mastra-ai/mastra/commit/0594a70ac948d306c7f38765b171c9535e6c78d4) Thanks [@wardpeet](https://github.com/wardpeet)! - Improve type resolving for storage adapters
|
|
388
|
+
|
|
389
|
+
- [#6959](https://github.com/mastra-ai/mastra/pull/6959) [`704173b`](https://github.com/mastra-ai/mastra/commit/704173b0d047e8d4cf29872464f383afc2f0c054) Thanks [@YujohnNattrass](https://github.com/YujohnNattrass)! - Implement ai spans/traces storage apis for libsql
|
|
390
|
+
|
|
391
|
+
- Updated dependencies [[`0778757`](https://github.com/mastra-ai/mastra/commit/07787570e4addbd501522037bd2542c3d9e26822), [`943a7f3`](https://github.com/mastra-ai/mastra/commit/943a7f3dbc6a8ab3f9b7bc7c8a1c5b319c3d7f56), [`bf504a8`](https://github.com/mastra-ai/mastra/commit/bf504a833051f6f321d832cc7d631f3cb86d657b), [`be49354`](https://github.com/mastra-ai/mastra/commit/be493546dca540101923ec700feb31f9a13939f2), [`d591ab3`](https://github.com/mastra-ai/mastra/commit/d591ab3ecc985c1870c0db347f8d7a20f7360536), [`ba82abe`](https://github.com/mastra-ai/mastra/commit/ba82abe76e869316bb5a9c95e8ea3946f3436fae), [`727f7e5`](https://github.com/mastra-ai/mastra/commit/727f7e5086e62e0dfe3356fb6dcd8bcb420af246), [`e6f5046`](https://github.com/mastra-ai/mastra/commit/e6f50467aff317e67e8bd74c485c3fbe2a5a6db1), [`82d9f64`](https://github.com/mastra-ai/mastra/commit/82d9f647fbe4f0177320e7c05073fce88599aa95), [`2e58325`](https://github.com/mastra-ai/mastra/commit/2e58325beb170f5b92f856e27d915cd26917e5e6), [`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c), [`4189486`](https://github.com/mastra-ai/mastra/commit/4189486c6718fda78347bdf4ce4d3fc33b2236e1), [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01), [`9613558`](https://github.com/mastra-ai/mastra/commit/9613558e6475f4710e05d1be7553a32ee7bddc20)]:
|
|
392
|
+
- @mastra/core@0.15.0
|
|
393
|
+
|
|
394
|
+
## 0.13.5-alpha.0
|
|
395
|
+
|
|
396
|
+
### Patch Changes
|
|
397
|
+
|
|
398
|
+
- [#6994](https://github.com/mastra-ai/mastra/pull/6994) [`0594a70`](https://github.com/mastra-ai/mastra/commit/0594a70ac948d306c7f38765b171c9535e6c78d4) Thanks [@wardpeet](https://github.com/wardpeet)! - Improve type resolving for storage adapters
|
|
399
|
+
|
|
400
|
+
- [#6959](https://github.com/mastra-ai/mastra/pull/6959) [`704173b`](https://github.com/mastra-ai/mastra/commit/704173b0d047e8d4cf29872464f383afc2f0c054) Thanks [@YujohnNattrass](https://github.com/YujohnNattrass)! - Implement ai spans/traces storage apis for libsql
|
|
401
|
+
|
|
402
|
+
- Updated dependencies [[`943a7f3`](https://github.com/mastra-ai/mastra/commit/943a7f3dbc6a8ab3f9b7bc7c8a1c5b319c3d7f56), [`be49354`](https://github.com/mastra-ai/mastra/commit/be493546dca540101923ec700feb31f9a13939f2), [`d591ab3`](https://github.com/mastra-ai/mastra/commit/d591ab3ecc985c1870c0db347f8d7a20f7360536), [`ba82abe`](https://github.com/mastra-ai/mastra/commit/ba82abe76e869316bb5a9c95e8ea3946f3436fae), [`727f7e5`](https://github.com/mastra-ai/mastra/commit/727f7e5086e62e0dfe3356fb6dcd8bcb420af246), [`82d9f64`](https://github.com/mastra-ai/mastra/commit/82d9f647fbe4f0177320e7c05073fce88599aa95), [`4189486`](https://github.com/mastra-ai/mastra/commit/4189486c6718fda78347bdf4ce4d3fc33b2236e1), [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01)]:
|
|
403
|
+
- @mastra/core@0.14.2-alpha.1
|
|
404
|
+
|
|
405
|
+
## 0.13.4
|
|
406
|
+
|
|
407
|
+
### Patch Changes
|
|
408
|
+
|
|
409
|
+
- [#6920](https://github.com/mastra-ai/mastra/pull/6920) [`64ad21f`](https://github.com/mastra-ai/mastra/commit/64ad21ff4f58ce8b344d163d800d9e4f84d82f6f) Thanks [@dane-ai-mastra](https://github.com/apps/dane-ai-mastra)! - dependencies updates:
|
|
410
|
+
- Updated dependency [`@libsql/client@^0.15.12` ↗︎](https://www.npmjs.com/package/@libsql/client/v/0.15.12) (from `^0.15.10`, in `dependencies`)
|
|
411
|
+
|
|
412
|
+
- [#6700](https://github.com/mastra-ai/mastra/pull/6700) [`a5a23d9`](https://github.com/mastra-ai/mastra/commit/a5a23d981920d458dc6078919992a5338931ef02) Thanks [@gpanakkal](https://github.com/gpanakkal)! - Add `getMessagesById` method to `MastraStorage` adapters
|
|
413
|
+
|
|
414
|
+
- Updated dependencies [[`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`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)]:
|
|
415
|
+
- @mastra/core@0.14.1
|
|
416
|
+
|
|
417
|
+
## 0.13.4-alpha.0
|
|
418
|
+
|
|
419
|
+
### Patch Changes
|
|
420
|
+
|
|
421
|
+
- [#6920](https://github.com/mastra-ai/mastra/pull/6920) [`64ad21f`](https://github.com/mastra-ai/mastra/commit/64ad21ff4f58ce8b344d163d800d9e4f84d82f6f) Thanks [@dane-ai-mastra](https://github.com/apps/dane-ai-mastra)! - dependencies updates:
|
|
422
|
+
- Updated dependency [`@libsql/client@^0.15.12` ↗︎](https://www.npmjs.com/package/@libsql/client/v/0.15.12) (from `^0.15.10`, in `dependencies`)
|
|
423
|
+
|
|
424
|
+
- [#6700](https://github.com/mastra-ai/mastra/pull/6700) [`a5a23d9`](https://github.com/mastra-ai/mastra/commit/a5a23d981920d458dc6078919992a5338931ef02) Thanks [@gpanakkal](https://github.com/gpanakkal)! - Add `getMessagesById` method to `MastraStorage` adapters
|
|
425
|
+
|
|
426
|
+
- Updated dependencies [[`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`a5a23d9`](https://github.com/mastra-ai/mastra/commit/a5a23d981920d458dc6078919992a5338931ef02)]:
|
|
427
|
+
- @mastra/core@0.14.1-alpha.0
|
|
428
|
+
|
|
429
|
+
## 0.13.3
|
|
430
|
+
|
|
431
|
+
### Patch Changes
|
|
432
|
+
|
|
433
|
+
- 03997ae: Update peerdeps
|
|
434
|
+
- d6e39da: Load most recent snapshot from storage
|
|
435
|
+
- Updated dependencies [227c7e6]
|
|
436
|
+
- Updated dependencies [12cae67]
|
|
437
|
+
- Updated dependencies [fd3a3eb]
|
|
438
|
+
- Updated dependencies [6faaee5]
|
|
439
|
+
- Updated dependencies [4232b14]
|
|
440
|
+
- Updated dependencies [a89de7e]
|
|
441
|
+
- Updated dependencies [5a37d0c]
|
|
442
|
+
- Updated dependencies [4bde0cb]
|
|
443
|
+
- Updated dependencies [cf4f357]
|
|
444
|
+
- Updated dependencies [ad888a2]
|
|
445
|
+
- Updated dependencies [481751d]
|
|
446
|
+
- Updated dependencies [2454423]
|
|
447
|
+
- Updated dependencies [194e395]
|
|
448
|
+
- Updated dependencies [a722c0b]
|
|
449
|
+
- Updated dependencies [c30bca8]
|
|
450
|
+
- Updated dependencies [3b5fec7]
|
|
451
|
+
- Updated dependencies [a8f129d]
|
|
452
|
+
- @mastra/core@0.14.0
|
|
453
|
+
|
|
454
|
+
## 0.13.3-alpha.1
|
|
455
|
+
|
|
456
|
+
### Patch Changes
|
|
457
|
+
|
|
458
|
+
- 03997ae: Update peerdeps
|
|
459
|
+
- @mastra/core@0.14.0-alpha.7
|
|
460
|
+
|
|
461
|
+
## 0.13.3-alpha.0
|
|
462
|
+
|
|
463
|
+
### Patch Changes
|
|
464
|
+
|
|
465
|
+
- d6e39da: Load most recent snapshot from storage
|
|
466
|
+
- Updated dependencies [6faaee5]
|
|
467
|
+
- Updated dependencies [4232b14]
|
|
468
|
+
- Updated dependencies [a89de7e]
|
|
469
|
+
- Updated dependencies [cf4f357]
|
|
470
|
+
- Updated dependencies [a722c0b]
|
|
471
|
+
- Updated dependencies [3b5fec7]
|
|
472
|
+
- @mastra/core@0.14.0-alpha.1
|
|
473
|
+
|
|
474
|
+
## 0.13.2
|
|
475
|
+
|
|
476
|
+
### Patch Changes
|
|
477
|
+
|
|
478
|
+
- b5cf2a3: make system message always available during agent calls
|
|
479
|
+
- b32c50d: Filter scores by source
|
|
480
|
+
- Updated dependencies [d5330bf]
|
|
481
|
+
- Updated dependencies [2e74797]
|
|
482
|
+
- Updated dependencies [8388649]
|
|
483
|
+
- Updated dependencies [a239d41]
|
|
484
|
+
- Updated dependencies [dd94a26]
|
|
485
|
+
- Updated dependencies [3ba6772]
|
|
486
|
+
- Updated dependencies [b5cf2a3]
|
|
487
|
+
- Updated dependencies [2fff911]
|
|
488
|
+
- Updated dependencies [b32c50d]
|
|
489
|
+
- Updated dependencies [63449d0]
|
|
490
|
+
- Updated dependencies [121a3f8]
|
|
491
|
+
- Updated dependencies [ec510e7]
|
|
492
|
+
- @mastra/core@0.13.2
|
|
493
|
+
|
|
494
|
+
## 0.13.2-alpha.1
|
|
495
|
+
|
|
496
|
+
### Patch Changes
|
|
497
|
+
|
|
498
|
+
- b5cf2a3: make system message always available during agent calls
|
|
499
|
+
- Updated dependencies [b5cf2a3]
|
|
500
|
+
- @mastra/core@0.13.2-alpha.3
|
|
501
|
+
|
|
502
|
+
## 0.13.2-alpha.0
|
|
503
|
+
|
|
504
|
+
### Patch Changes
|
|
505
|
+
|
|
506
|
+
- b32c50d: Filter scores by source
|
|
507
|
+
- Updated dependencies [d5330bf]
|
|
508
|
+
- Updated dependencies [a239d41]
|
|
509
|
+
- Updated dependencies [b32c50d]
|
|
510
|
+
- Updated dependencies [121a3f8]
|
|
511
|
+
- Updated dependencies [ec510e7]
|
|
512
|
+
- @mastra/core@0.13.2-alpha.2
|
|
513
|
+
|
|
514
|
+
## 0.13.1
|
|
515
|
+
|
|
516
|
+
### Patch Changes
|
|
517
|
+
|
|
518
|
+
- 8888b57: Fix LibSQL vector metadata filtering for Memory system - corrected JSON path syntax for simple fields and changed default minScore to -1 to include all similarity results
|
|
519
|
+
- Updated dependencies [cd0042e]
|
|
520
|
+
- @mastra/core@0.13.1
|
|
521
|
+
|
|
522
|
+
## 0.13.1-alpha.0
|
|
523
|
+
|
|
524
|
+
### Patch Changes
|
|
525
|
+
|
|
526
|
+
- 8888b57: Fix LibSQL vector metadata filtering for Memory system - corrected JSON path syntax for simple fields and changed default minScore to -1 to include all similarity results
|
|
527
|
+
- Updated dependencies [cd0042e]
|
|
528
|
+
- @mastra/core@0.13.1-alpha.0
|
|
529
|
+
|
|
530
|
+
## 0.13.0
|
|
531
|
+
|
|
532
|
+
### Minor Changes
|
|
533
|
+
|
|
534
|
+
- ea0c5f2: Add store support to new score api
|
|
535
|
+
|
|
536
|
+
### Patch Changes
|
|
537
|
+
|
|
538
|
+
- 2871020: update safelyParseJSON to check for value of param when handling parse
|
|
539
|
+
- 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
|
|
540
|
+
- Updated dependencies [cb36de0]
|
|
541
|
+
- Updated dependencies [d0496e6]
|
|
542
|
+
- Updated dependencies [a82b851]
|
|
543
|
+
- Updated dependencies [ea0c5f2]
|
|
544
|
+
- Updated dependencies [41a0a0e]
|
|
545
|
+
- Updated dependencies [2871020]
|
|
546
|
+
- Updated dependencies [94f4812]
|
|
547
|
+
- Updated dependencies [e202b82]
|
|
548
|
+
- Updated dependencies [e00f6a0]
|
|
549
|
+
- Updated dependencies [4a406ec]
|
|
550
|
+
- Updated dependencies [b0e43c1]
|
|
551
|
+
- Updated dependencies [5d377e5]
|
|
552
|
+
- Updated dependencies [1fb812e]
|
|
553
|
+
- Updated dependencies [35c5798]
|
|
554
|
+
- @mastra/core@0.13.0
|
|
555
|
+
|
|
556
|
+
## 0.13.0-alpha.1
|
|
4
557
|
|
|
5
558
|
### Patch Changes
|
|
6
559
|
|
|
560
|
+
- 2871020: update safelyParseJSON to check for value of param when handling parse
|
|
561
|
+
- 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
|
|
562
|
+
- Updated dependencies [cb36de0]
|
|
563
|
+
- Updated dependencies [a82b851]
|
|
564
|
+
- Updated dependencies [41a0a0e]
|
|
565
|
+
- Updated dependencies [2871020]
|
|
566
|
+
- Updated dependencies [4a406ec]
|
|
567
|
+
- Updated dependencies [5d377e5]
|
|
568
|
+
- @mastra/core@0.13.0-alpha.2
|
|
569
|
+
|
|
570
|
+
## 0.13.0-alpha.0
|
|
571
|
+
|
|
572
|
+
### Minor Changes
|
|
573
|
+
|
|
574
|
+
- ea0c5f2: Add store support to new score api
|
|
575
|
+
|
|
576
|
+
### Patch Changes
|
|
577
|
+
|
|
578
|
+
- Updated dependencies [ea0c5f2]
|
|
579
|
+
- Updated dependencies [b0e43c1]
|
|
580
|
+
- Updated dependencies [1fb812e]
|
|
581
|
+
- Updated dependencies [35c5798]
|
|
582
|
+
- @mastra/core@0.13.0-alpha.1
|
|
583
|
+
|
|
584
|
+
## 0.12.0
|
|
585
|
+
|
|
586
|
+
### Minor Changes
|
|
587
|
+
|
|
588
|
+
- f42c4c2: update peer deps for packages to latest core range
|
|
589
|
+
|
|
590
|
+
### Patch Changes
|
|
591
|
+
|
|
592
|
+
- 24ac5ff: dependencies updates:
|
|
593
|
+
- Updated dependency [`@libsql/client@^0.15.10` ↗︎](https://www.npmjs.com/package/@libsql/client/v/0.15.10) (from `^0.15.9`, in `dependencies`)
|
|
594
|
+
- ff9c125: enhance thread retrieval with sorting options in libsql and pg
|
|
595
|
+
- a3ca14c: `LibSQLVector.doUpsert`: check if transaction is open before attempting rollback
|
|
596
|
+
- b8efbb9: feat: add flexible deleteMessages method to memory API
|
|
597
|
+
- Added `memory.deleteMessages(input)` method that accepts multiple input types:
|
|
598
|
+
- Single message ID as string: `deleteMessages('msg-123')`
|
|
599
|
+
- Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
|
|
600
|
+
- Message object with id property: `deleteMessages({ id: 'msg-123' })`
|
|
601
|
+
- Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
|
|
602
|
+
- Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
|
|
603
|
+
- Added REST API endpoint: `POST /api/memory/messages/delete`
|
|
604
|
+
- Updated client SDK: `thread.deleteMessages()` accepts all input types
|
|
605
|
+
- Updates thread timestamps when messages are deleted
|
|
606
|
+
- Added comprehensive test coverage and documentation
|
|
607
|
+
|
|
608
|
+
- Updated dependencies [510e2c8]
|
|
609
|
+
- Updated dependencies [2f72fb2]
|
|
610
|
+
- Updated dependencies [27cc97a]
|
|
611
|
+
- Updated dependencies [3f89307]
|
|
612
|
+
- Updated dependencies [9eda7d4]
|
|
613
|
+
- Updated dependencies [9d49408]
|
|
614
|
+
- Updated dependencies [41daa63]
|
|
615
|
+
- Updated dependencies [ad0a58b]
|
|
616
|
+
- Updated dependencies [254a36b]
|
|
617
|
+
- Updated dependencies [2ecf658]
|
|
618
|
+
- Updated dependencies [7a7754f]
|
|
619
|
+
- Updated dependencies [fc92d80]
|
|
620
|
+
- Updated dependencies [e0f73c6]
|
|
621
|
+
- Updated dependencies [0b89602]
|
|
622
|
+
- Updated dependencies [4d37822]
|
|
623
|
+
- Updated dependencies [23a6a7c]
|
|
624
|
+
- Updated dependencies [cda801d]
|
|
625
|
+
- Updated dependencies [a77c823]
|
|
626
|
+
- Updated dependencies [ff9c125]
|
|
627
|
+
- Updated dependencies [09bca64]
|
|
628
|
+
- Updated dependencies [b8efbb9]
|
|
629
|
+
- Updated dependencies [71466e7]
|
|
630
|
+
- Updated dependencies [0c99fbe]
|
|
631
|
+
- @mastra/core@0.12.0
|
|
632
|
+
|
|
633
|
+
## 0.12.0-alpha.2
|
|
634
|
+
|
|
635
|
+
### Minor Changes
|
|
636
|
+
|
|
637
|
+
- f42c4c2: update peer deps for packages to latest core range
|
|
638
|
+
|
|
639
|
+
### Patch Changes
|
|
640
|
+
|
|
641
|
+
- @mastra/core@0.12.0-alpha.5
|
|
642
|
+
|
|
643
|
+
## 0.11.3-alpha.1
|
|
644
|
+
|
|
645
|
+
### Patch Changes
|
|
646
|
+
|
|
647
|
+
- ff9c125: enhance thread retrieval with sorting options in libsql and pg
|
|
648
|
+
- b8efbb9: feat: add flexible deleteMessages method to memory API
|
|
649
|
+
- Added `memory.deleteMessages(input)` method that accepts multiple input types:
|
|
650
|
+
- Single message ID as string: `deleteMessages('msg-123')`
|
|
651
|
+
- Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
|
|
652
|
+
- Message object with id property: `deleteMessages({ id: 'msg-123' })`
|
|
653
|
+
- Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
|
|
654
|
+
- Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
|
|
655
|
+
- Added REST API endpoint: `POST /api/memory/messages/delete`
|
|
656
|
+
- Updated client SDK: `thread.deleteMessages()` accepts all input types
|
|
657
|
+
- Updates thread timestamps when messages are deleted
|
|
658
|
+
- Added comprehensive test coverage and documentation
|
|
659
|
+
|
|
660
|
+
- Updated dependencies [27cc97a]
|
|
661
|
+
- Updated dependencies [41daa63]
|
|
662
|
+
- Updated dependencies [254a36b]
|
|
663
|
+
- Updated dependencies [0b89602]
|
|
664
|
+
- Updated dependencies [4d37822]
|
|
665
|
+
- Updated dependencies [ff9c125]
|
|
666
|
+
- Updated dependencies [b8efbb9]
|
|
667
|
+
- Updated dependencies [71466e7]
|
|
668
|
+
- Updated dependencies [0c99fbe]
|
|
669
|
+
- @mastra/core@0.12.0-alpha.2
|
|
670
|
+
|
|
671
|
+
## 0.11.3-alpha.0
|
|
672
|
+
|
|
673
|
+
### Patch Changes
|
|
674
|
+
|
|
675
|
+
- 24ac5ff: dependencies updates:
|
|
676
|
+
- Updated dependency [`@libsql/client@^0.15.10` ↗︎](https://www.npmjs.com/package/@libsql/client/v/0.15.10) (from `^0.15.9`, in `dependencies`)
|
|
677
|
+
- a3ca14c: `LibSQLVector.doUpsert`: check if transaction is open before attempting rollback
|
|
678
|
+
- Updated dependencies [510e2c8]
|
|
679
|
+
- Updated dependencies [2f72fb2]
|
|
680
|
+
- Updated dependencies [3f89307]
|
|
681
|
+
- Updated dependencies [9eda7d4]
|
|
682
|
+
- Updated dependencies [9d49408]
|
|
683
|
+
- Updated dependencies [2ecf658]
|
|
684
|
+
- Updated dependencies [7a7754f]
|
|
685
|
+
- Updated dependencies [fc92d80]
|
|
686
|
+
- Updated dependencies [23a6a7c]
|
|
687
|
+
- Updated dependencies [09bca64]
|
|
688
|
+
- @mastra/core@0.12.0-alpha.0
|
|
689
|
+
|
|
690
|
+
## 0.11.2
|
|
691
|
+
|
|
692
|
+
### Patch Changes
|
|
693
|
+
|
|
694
|
+
- 3cc50c7: Update mastra core peer dep version
|
|
695
|
+
- ce088f5: Update all peerdeps to latest core
|
|
696
|
+
- @mastra/core@0.11.1
|
|
697
|
+
|
|
698
|
+
## 0.11.1
|
|
699
|
+
|
|
700
|
+
### Patch Changes
|
|
701
|
+
|
|
702
|
+
- 7ba91fa: Throw mastra errors methods not implemented yet
|
|
703
|
+
- da168a4: increase the peer deps range
|
|
704
|
+
- Updated dependencies [f248d53]
|
|
705
|
+
- Updated dependencies [2affc57]
|
|
706
|
+
- Updated dependencies [66e13e3]
|
|
707
|
+
- Updated dependencies [edd9482]
|
|
708
|
+
- Updated dependencies [18344d7]
|
|
709
|
+
- Updated dependencies [9d372c2]
|
|
710
|
+
- Updated dependencies [40c2525]
|
|
711
|
+
- Updated dependencies [e473f27]
|
|
712
|
+
- Updated dependencies [032cb66]
|
|
713
|
+
- Updated dependencies [703ac71]
|
|
714
|
+
- Updated dependencies [a723d69]
|
|
715
|
+
- Updated dependencies [7827943]
|
|
716
|
+
- Updated dependencies [5889a31]
|
|
717
|
+
- Updated dependencies [bf1e7e7]
|
|
718
|
+
- Updated dependencies [65e3395]
|
|
719
|
+
- Updated dependencies [4933192]
|
|
720
|
+
- Updated dependencies [d1c77a4]
|
|
721
|
+
- Updated dependencies [bea9dd1]
|
|
722
|
+
- Updated dependencies [dcd4802]
|
|
723
|
+
- Updated dependencies [cbddd18]
|
|
724
|
+
- Updated dependencies [7ba91fa]
|
|
725
|
+
- @mastra/core@0.11.0
|
|
726
|
+
|
|
727
|
+
## 0.11.1-alpha.0
|
|
728
|
+
|
|
729
|
+
### Patch Changes
|
|
730
|
+
|
|
731
|
+
- 7ba91fa: Throw mastra errors methods not implemented yet
|
|
732
|
+
- da168a4: increase the peer deps range
|
|
733
|
+
- Updated dependencies [f248d53]
|
|
734
|
+
- Updated dependencies [2affc57]
|
|
735
|
+
- Updated dependencies [66e13e3]
|
|
736
|
+
- Updated dependencies [edd9482]
|
|
737
|
+
- Updated dependencies [18344d7]
|
|
738
|
+
- Updated dependencies [9d372c2]
|
|
739
|
+
- Updated dependencies [40c2525]
|
|
740
|
+
- Updated dependencies [e473f27]
|
|
741
|
+
- Updated dependencies [032cb66]
|
|
742
|
+
- Updated dependencies [703ac71]
|
|
743
|
+
- Updated dependencies [a723d69]
|
|
744
|
+
- Updated dependencies [5889a31]
|
|
745
|
+
- Updated dependencies [65e3395]
|
|
746
|
+
- Updated dependencies [4933192]
|
|
747
|
+
- Updated dependencies [d1c77a4]
|
|
748
|
+
- Updated dependencies [bea9dd1]
|
|
749
|
+
- Updated dependencies [dcd4802]
|
|
750
|
+
- Updated dependencies [7ba91fa]
|
|
751
|
+
- @mastra/core@0.11.0-alpha.2
|
|
752
|
+
|
|
753
|
+
## 0.11.0
|
|
754
|
+
|
|
755
|
+
### Minor Changes
|
|
756
|
+
|
|
757
|
+
- 8a3bfd2: Update peerdeps to latest core
|
|
758
|
+
|
|
759
|
+
### Patch Changes
|
|
760
|
+
|
|
761
|
+
- 15e9d26: Added per-resource working memory for LibSQL, Upstash, and PG
|
|
762
|
+
- d8f2d19: Add updateMessages API to storage classes (only support for PG and LibSQL for now) and to memory class. Additionally allow for metadata to be saved in the content field of a message.
|
|
763
|
+
- 0fb9d64: [MASTRA-4018] Update saveMessages in storage adapters to upsert messages
|
|
764
|
+
- 2097952: [MASTRA-4021] Fix PG getMessages and update messageLimit for all storage adapters
|
|
765
|
+
- 144eb0b: [MASTRA-3669] Metadata Filter Types
|
|
766
|
+
- f0150c4: Fix LibSQLStore and PgStore getMessagesPaginated implementation
|
|
767
|
+
- 0e17048: Throw mastra errors in storage packages
|
|
768
|
+
- Updated dependencies [15e9d26]
|
|
769
|
+
- Updated dependencies [d1baedb]
|
|
770
|
+
- Updated dependencies [d8f2d19]
|
|
771
|
+
- Updated dependencies [4d21bf2]
|
|
772
|
+
- Updated dependencies [07d6d88]
|
|
773
|
+
- Updated dependencies [9d52b17]
|
|
774
|
+
- Updated dependencies [2097952]
|
|
775
|
+
- Updated dependencies [792c4c0]
|
|
776
|
+
- Updated dependencies [5d74aab]
|
|
777
|
+
- Updated dependencies [a8b194f]
|
|
778
|
+
- Updated dependencies [4fb0cc2]
|
|
779
|
+
- Updated dependencies [d2a7a31]
|
|
780
|
+
- Updated dependencies [502fe05]
|
|
781
|
+
- Updated dependencies [144eb0b]
|
|
782
|
+
- Updated dependencies [8ba1b51]
|
|
783
|
+
- Updated dependencies [4efcfa0]
|
|
784
|
+
- Updated dependencies [0e17048]
|
|
785
|
+
- @mastra/core@0.10.7
|
|
786
|
+
|
|
787
|
+
## 0.11.0-alpha.3
|
|
788
|
+
|
|
789
|
+
### Minor Changes
|
|
790
|
+
|
|
791
|
+
- 8a3bfd2: Update peerdeps to latest core
|
|
792
|
+
|
|
793
|
+
### Patch Changes
|
|
794
|
+
|
|
795
|
+
- Updated dependencies [792c4c0]
|
|
796
|
+
- Updated dependencies [502fe05]
|
|
797
|
+
- Updated dependencies [4efcfa0]
|
|
798
|
+
- @mastra/core@0.10.7-alpha.3
|
|
799
|
+
|
|
800
|
+
## 0.10.4-alpha.2
|
|
801
|
+
|
|
802
|
+
### Patch Changes
|
|
803
|
+
|
|
804
|
+
- 15e9d26: Added per-resource working memory for LibSQL, Upstash, and PG
|
|
805
|
+
- 0fb9d64: [MASTRA-4018] Update saveMessages in storage adapters to upsert messages
|
|
806
|
+
- 144eb0b: [MASTRA-3669] Metadata Filter Types
|
|
807
|
+
- f0150c4: Fix LibSQLStore and PgStore getMessagesPaginated implementation
|
|
808
|
+
- Updated dependencies [15e9d26]
|
|
809
|
+
- Updated dependencies [07d6d88]
|
|
810
|
+
- Updated dependencies [5d74aab]
|
|
811
|
+
- Updated dependencies [144eb0b]
|
|
812
|
+
- @mastra/core@0.10.7-alpha.2
|
|
813
|
+
|
|
814
|
+
## 0.10.4-alpha.1
|
|
815
|
+
|
|
816
|
+
### Patch Changes
|
|
817
|
+
|
|
818
|
+
- 2097952: [MASTRA-4021] Fix PG getMessages and update messageLimit for all storage adapters
|
|
819
|
+
- 0e17048: Throw mastra errors in storage packages
|
|
820
|
+
- Updated dependencies [d1baedb]
|
|
821
|
+
- Updated dependencies [4d21bf2]
|
|
822
|
+
- Updated dependencies [2097952]
|
|
823
|
+
- Updated dependencies [4fb0cc2]
|
|
824
|
+
- Updated dependencies [d2a7a31]
|
|
825
|
+
- Updated dependencies [0e17048]
|
|
826
|
+
- @mastra/core@0.10.7-alpha.1
|
|
827
|
+
|
|
828
|
+
## 0.10.4-alpha.0
|
|
829
|
+
|
|
830
|
+
### Patch Changes
|
|
831
|
+
|
|
832
|
+
- d8f2d19: Add updateMessages API to storage classes (only support for PG and LibSQL for now) and to memory class. Additionally allow for metadata to be saved in the content field of a message.
|
|
833
|
+
- Updated dependencies [d8f2d19]
|
|
834
|
+
- Updated dependencies [9d52b17]
|
|
835
|
+
- Updated dependencies [8ba1b51]
|
|
836
|
+
- @mastra/core@0.10.7-alpha.0
|
|
837
|
+
|
|
838
|
+
## 0.10.3
|
|
839
|
+
|
|
840
|
+
### Patch Changes
|
|
841
|
+
|
|
842
|
+
- 63f6b7d: dependencies updates:
|
|
843
|
+
- Updated dependency [`@libsql/client@^0.15.9` ↗︎](https://www.npmjs.com/package/@libsql/client/v/0.15.9) (from `^0.15.8`, in `dependencies`)
|
|
844
|
+
- Updated dependencies [63f6b7d]
|
|
845
|
+
- Updated dependencies [12a95fc]
|
|
846
|
+
- Updated dependencies [4b0f8a6]
|
|
847
|
+
- Updated dependencies [51264a5]
|
|
848
|
+
- Updated dependencies [8e6f677]
|
|
849
|
+
- Updated dependencies [d70c420]
|
|
850
|
+
- Updated dependencies [ee9af57]
|
|
851
|
+
- Updated dependencies [36f1c36]
|
|
852
|
+
- Updated dependencies [2a16996]
|
|
853
|
+
- Updated dependencies [10d352e]
|
|
854
|
+
- Updated dependencies [9589624]
|
|
855
|
+
- Updated dependencies [53d3c37]
|
|
856
|
+
- Updated dependencies [751c894]
|
|
857
|
+
- Updated dependencies [577ce3a]
|
|
858
|
+
- Updated dependencies [9260b3a]
|
|
859
|
+
- @mastra/core@0.10.6
|
|
860
|
+
|
|
861
|
+
## 0.10.3-alpha.0
|
|
862
|
+
|
|
863
|
+
### Patch Changes
|
|
864
|
+
|
|
865
|
+
- 63f6b7d: dependencies updates:
|
|
866
|
+
- Updated dependency [`@libsql/client@^0.15.9` ↗︎](https://www.npmjs.com/package/@libsql/client/v/0.15.9) (from `^0.15.8`, in `dependencies`)
|
|
867
|
+
- Updated dependencies [63f6b7d]
|
|
868
|
+
- Updated dependencies [36f1c36]
|
|
869
|
+
- Updated dependencies [10d352e]
|
|
870
|
+
- Updated dependencies [53d3c37]
|
|
871
|
+
- @mastra/core@0.10.6-alpha.0
|
|
872
|
+
|
|
873
|
+
## 0.10.2
|
|
874
|
+
|
|
875
|
+
### Patch Changes
|
|
876
|
+
|
|
877
|
+
- 5d3dc1e: dependencies updates:
|
|
878
|
+
- Updated dependency [`@libsql/client@^0.15.8` ↗︎](https://www.npmjs.com/package/@libsql/client/v/0.15.8) (from `^0.15.4`, in `dependencies`)
|
|
879
|
+
- dffb67b: updated stores to add alter table and change tests
|
|
880
|
+
- e0f9201: change how dedupe works for libsql and pg
|
|
881
|
+
- 14a2566: Add pagination to libsql storage APIs
|
|
882
|
+
- 48eddb9: update filter logic in Memory class to support semantic recall search scope
|
|
883
|
+
- 66f4424: Update peerdeps
|
|
884
|
+
- Updated dependencies [d1ed912]
|
|
885
|
+
- Updated dependencies [f6fd25f]
|
|
886
|
+
- Updated dependencies [dffb67b]
|
|
887
|
+
- Updated dependencies [f1f1f1b]
|
|
888
|
+
- Updated dependencies [925ab94]
|
|
889
|
+
- Updated dependencies [f9816ae]
|
|
890
|
+
- Updated dependencies [82090c1]
|
|
891
|
+
- Updated dependencies [1b443fd]
|
|
892
|
+
- Updated dependencies [ce97900]
|
|
893
|
+
- Updated dependencies [f1309d3]
|
|
894
|
+
- Updated dependencies [14a2566]
|
|
895
|
+
- Updated dependencies [f7f8293]
|
|
896
|
+
- Updated dependencies [48eddb9]
|
|
897
|
+
- @mastra/core@0.10.4
|
|
898
|
+
|
|
899
|
+
## 0.10.2-alpha.4
|
|
900
|
+
|
|
901
|
+
### Patch Changes
|
|
902
|
+
|
|
903
|
+
- 66f4424: Update peerdeps
|
|
904
|
+
|
|
905
|
+
## 0.10.2-alpha.3
|
|
906
|
+
|
|
907
|
+
### Patch Changes
|
|
908
|
+
|
|
909
|
+
- e0f9201: change how dedupe works for libsql and pg
|
|
910
|
+
- Updated dependencies [925ab94]
|
|
911
|
+
- @mastra/core@0.10.4-alpha.3
|
|
912
|
+
|
|
913
|
+
## 0.10.2-alpha.2
|
|
914
|
+
|
|
915
|
+
### Patch Changes
|
|
916
|
+
|
|
917
|
+
- 48eddb9: update filter logic in Memory class to support semantic recall search scope
|
|
918
|
+
- Updated dependencies [48eddb9]
|
|
919
|
+
- @mastra/core@0.10.4-alpha.2
|
|
920
|
+
|
|
921
|
+
## 0.10.2-alpha.1
|
|
922
|
+
|
|
923
|
+
### Patch Changes
|
|
924
|
+
|
|
925
|
+
- dffb67b: updated stores to add alter table and change tests
|
|
926
|
+
- Updated dependencies [f6fd25f]
|
|
927
|
+
- Updated dependencies [dffb67b]
|
|
928
|
+
- Updated dependencies [f1309d3]
|
|
929
|
+
- Updated dependencies [f7f8293]
|
|
930
|
+
- @mastra/core@0.10.4-alpha.1
|
|
931
|
+
|
|
932
|
+
## 0.10.2-alpha.0
|
|
933
|
+
|
|
934
|
+
### Patch Changes
|
|
935
|
+
|
|
936
|
+
- 5d3dc1e: dependencies updates:
|
|
937
|
+
- Updated dependency [`@libsql/client@^0.15.8` ↗︎](https://www.npmjs.com/package/@libsql/client/v/0.15.8) (from `^0.15.4`, in `dependencies`)
|
|
938
|
+
- 14a2566: Add pagination to libsql storage APIs
|
|
939
|
+
- Updated dependencies [d1ed912]
|
|
940
|
+
- Updated dependencies [f1f1f1b]
|
|
941
|
+
- Updated dependencies [f9816ae]
|
|
942
|
+
- Updated dependencies [82090c1]
|
|
943
|
+
- Updated dependencies [1b443fd]
|
|
944
|
+
- Updated dependencies [ce97900]
|
|
945
|
+
- Updated dependencies [14a2566]
|
|
946
|
+
- @mastra/core@0.10.4-alpha.0
|
|
947
|
+
|
|
948
|
+
## 0.10.1
|
|
949
|
+
|
|
950
|
+
### Patch Changes
|
|
951
|
+
|
|
952
|
+
- e5dc18d: Added a backwards compatible layer to begin storing/retrieving UIMessages in storage instead of CoreMessages
|
|
953
|
+
- a3f1b39: feat(libsql): update thread timestamp when saving messages
|
|
954
|
+
- 9e37877: Fixes SQLITE_BUSY error often seen when working locally on the playground
|
|
955
|
+
- c5bf1ce: Add backwards compat code for new MessageList in storage
|
|
956
|
+
- f0d559f: Fix peerdeps for alpha channel
|
|
957
|
+
- Updated dependencies [ee77e78]
|
|
958
|
+
- Updated dependencies [592a2db]
|
|
959
|
+
- Updated dependencies [e5dc18d]
|
|
960
|
+
- Updated dependencies [ab5adbe]
|
|
961
|
+
- Updated dependencies [1e8bb40]
|
|
962
|
+
- Updated dependencies [1b5fc55]
|
|
963
|
+
- Updated dependencies [195c428]
|
|
964
|
+
- Updated dependencies [f73e11b]
|
|
965
|
+
- Updated dependencies [37643b8]
|
|
966
|
+
- Updated dependencies [99fd6cf]
|
|
967
|
+
- Updated dependencies [c5bf1ce]
|
|
968
|
+
- Updated dependencies [add596e]
|
|
969
|
+
- Updated dependencies [8dc94d8]
|
|
970
|
+
- Updated dependencies [ecebbeb]
|
|
971
|
+
- Updated dependencies [79d5145]
|
|
972
|
+
- Updated dependencies [12b7002]
|
|
973
|
+
- Updated dependencies [2901125]
|
|
974
|
+
- @mastra/core@0.10.2
|
|
975
|
+
|
|
976
|
+
## 0.10.1-alpha.3
|
|
977
|
+
|
|
978
|
+
### Patch Changes
|
|
979
|
+
|
|
980
|
+
- a3f1b39: feat(libsql): update thread timestamp when saving messages
|
|
981
|
+
|
|
982
|
+
## 0.10.1-alpha.2
|
|
983
|
+
|
|
984
|
+
### Patch Changes
|
|
985
|
+
|
|
986
|
+
- c5bf1ce: Add backwards compat code for new MessageList in storage
|
|
987
|
+
- Updated dependencies [c5bf1ce]
|
|
988
|
+
- Updated dependencies [12b7002]
|
|
989
|
+
- @mastra/core@0.10.2-alpha.4
|
|
990
|
+
|
|
991
|
+
## 0.10.1-alpha.1
|
|
992
|
+
|
|
993
|
+
### Patch Changes
|
|
994
|
+
|
|
995
|
+
- f0d559f: Fix peerdeps for alpha channel
|
|
996
|
+
- Updated dependencies [1e8bb40]
|
|
997
|
+
- @mastra/core@0.10.2-alpha.2
|
|
998
|
+
|
|
999
|
+
## 0.10.1-alpha.0
|
|
1000
|
+
|
|
1001
|
+
### Patch Changes
|
|
1002
|
+
|
|
1003
|
+
- e5dc18d: Added a backwards compatible layer to begin storing/retrieving UIMessages in storage instead of CoreMessages
|
|
1004
|
+
- 9e37877: Fixes SQLITE_BUSY error often seen when working locally on the playground
|
|
1005
|
+
- Updated dependencies [592a2db]
|
|
1006
|
+
- Updated dependencies [e5dc18d]
|
|
1007
|
+
- @mastra/core@0.10.2-alpha.0
|
|
1008
|
+
|
|
1009
|
+
## 0.10.0
|
|
1010
|
+
|
|
1011
|
+
### Minor Changes
|
|
1012
|
+
|
|
1013
|
+
- 83da932: Move @mastra/core to peerdeps
|
|
1014
|
+
|
|
1015
|
+
### Patch Changes
|
|
1016
|
+
|
|
1017
|
+
- eabdcd9: [MASTRA-3451] SQL Injection Protection
|
|
1018
|
+
- d0ee3c6: Change all public functions and constructors in vector stores to use named args and prepare to phase out positional args
|
|
1019
|
+
- a7292b0: BREAKING(@mastra/core, all vector stores): Vector store breaking changes (remove deprecated functions and positional arguments)
|
|
1020
|
+
- Updated dependencies [b3a3d63]
|
|
1021
|
+
- Updated dependencies [344f453]
|
|
1022
|
+
- Updated dependencies [0a3ae6d]
|
|
1023
|
+
- Updated dependencies [95911be]
|
|
1024
|
+
- Updated dependencies [f53a6ac]
|
|
1025
|
+
- Updated dependencies [5eb5a99]
|
|
1026
|
+
- Updated dependencies [7e632c5]
|
|
1027
|
+
- Updated dependencies [1e9fbfa]
|
|
1028
|
+
- Updated dependencies [eabdcd9]
|
|
1029
|
+
- Updated dependencies [90be034]
|
|
1030
|
+
- Updated dependencies [99f050a]
|
|
1031
|
+
- Updated dependencies [d0ee3c6]
|
|
1032
|
+
- Updated dependencies [b2ae5aa]
|
|
1033
|
+
- Updated dependencies [23f258c]
|
|
1034
|
+
- Updated dependencies [a7292b0]
|
|
1035
|
+
- Updated dependencies [0dcb9f0]
|
|
1036
|
+
- Updated dependencies [2672a05]
|
|
1037
|
+
- @mastra/core@0.10.0
|
|
1038
|
+
|
|
1039
|
+
## 0.1.0-alpha.1
|
|
1040
|
+
|
|
1041
|
+
### Minor Changes
|
|
1042
|
+
|
|
1043
|
+
- 83da932: Move @mastra/core to peerdeps
|
|
1044
|
+
|
|
1045
|
+
### Patch Changes
|
|
1046
|
+
|
|
1047
|
+
- a7292b0: BREAKING(@mastra/core, all vector stores): Vector store breaking changes (remove deprecated functions and positional arguments)
|
|
1048
|
+
- Updated dependencies [b3a3d63]
|
|
1049
|
+
- Updated dependencies [344f453]
|
|
1050
|
+
- Updated dependencies [0a3ae6d]
|
|
1051
|
+
- Updated dependencies [95911be]
|
|
1052
|
+
- Updated dependencies [5eb5a99]
|
|
1053
|
+
- Updated dependencies [7e632c5]
|
|
1054
|
+
- Updated dependencies [1e9fbfa]
|
|
1055
|
+
- Updated dependencies [b2ae5aa]
|
|
1056
|
+
- Updated dependencies [a7292b0]
|
|
1057
|
+
- Updated dependencies [0dcb9f0]
|
|
1058
|
+
- @mastra/core@0.10.0-alpha.1
|
|
1059
|
+
|
|
1060
|
+
## 0.0.5-alpha.0
|
|
1061
|
+
|
|
1062
|
+
### Patch Changes
|
|
1063
|
+
|
|
1064
|
+
- eabdcd9: [MASTRA-3451] SQL Injection Protection
|
|
1065
|
+
- d0ee3c6: Change all public functions and constructors in vector stores to use named args and prepare to phase out positional args
|
|
1066
|
+
- Updated dependencies [f53a6ac]
|
|
1067
|
+
- Updated dependencies [eabdcd9]
|
|
1068
|
+
- Updated dependencies [90be034]
|
|
1069
|
+
- Updated dependencies [99f050a]
|
|
1070
|
+
- Updated dependencies [d0ee3c6]
|
|
1071
|
+
- Updated dependencies [23f258c]
|
|
1072
|
+
- Updated dependencies [2672a05]
|
|
1073
|
+
- @mastra/core@0.9.5-alpha.0
|
|
1074
|
+
|
|
1075
|
+
## 0.0.4
|
|
1076
|
+
|
|
1077
|
+
### Patch Changes
|
|
1078
|
+
|
|
1079
|
+
- c3bd795: [MASTRA-3358] Deprecate updateIndexById and deleteIndexById
|
|
1080
|
+
- Updated dependencies [396be50]
|
|
1081
|
+
- Updated dependencies [ab80e7e]
|
|
1082
|
+
- Updated dependencies [c3bd795]
|
|
1083
|
+
- Updated dependencies [da082f8]
|
|
1084
|
+
- Updated dependencies [a5810ce]
|
|
1085
|
+
- Updated dependencies [3e9c131]
|
|
1086
|
+
- Updated dependencies [3171b5b]
|
|
1087
|
+
- Updated dependencies [973e5ac]
|
|
1088
|
+
- Updated dependencies [daf942f]
|
|
1089
|
+
- Updated dependencies [0b8b868]
|
|
1090
|
+
- Updated dependencies [9e1eff5]
|
|
1091
|
+
- Updated dependencies [6fa1ad1]
|
|
1092
|
+
- Updated dependencies [c28d7a0]
|
|
1093
|
+
- Updated dependencies [edf1e88]
|
|
1094
|
+
- @mastra/core@0.9.4
|
|
1095
|
+
|
|
1096
|
+
## 0.0.4-alpha.4
|
|
1097
|
+
|
|
1098
|
+
### Patch Changes
|
|
1099
|
+
|
|
1100
|
+
- Updated dependencies [3e9c131]
|
|
1101
|
+
- @mastra/core@0.9.4-alpha.4
|
|
1102
|
+
|
|
1103
|
+
## 0.0.4-alpha.3
|
|
1104
|
+
|
|
1105
|
+
### Patch Changes
|
|
1106
|
+
|
|
1107
|
+
- c3bd795: [MASTRA-3358] Deprecate updateIndexById and deleteIndexById
|
|
1108
|
+
- Updated dependencies [396be50]
|
|
1109
|
+
- Updated dependencies [c3bd795]
|
|
1110
|
+
- Updated dependencies [da082f8]
|
|
1111
|
+
- Updated dependencies [a5810ce]
|
|
1112
|
+
- @mastra/core@0.9.4-alpha.3
|
|
1113
|
+
|
|
1114
|
+
## 0.0.4-alpha.2
|
|
1115
|
+
|
|
1116
|
+
### Patch Changes
|
|
1117
|
+
|
|
1118
|
+
- Updated dependencies [3171b5b]
|
|
1119
|
+
- Updated dependencies [973e5ac]
|
|
1120
|
+
- Updated dependencies [9e1eff5]
|
|
1121
|
+
- @mastra/core@0.9.4-alpha.2
|
|
1122
|
+
|
|
1123
|
+
## 0.0.4-alpha.1
|
|
1124
|
+
|
|
1125
|
+
### Patch Changes
|
|
1126
|
+
|
|
1127
|
+
- Updated dependencies [ab80e7e]
|
|
1128
|
+
- Updated dependencies [6fa1ad1]
|
|
1129
|
+
- Updated dependencies [c28d7a0]
|
|
1130
|
+
- Updated dependencies [edf1e88]
|
|
1131
|
+
- @mastra/core@0.9.4-alpha.1
|
|
1132
|
+
|
|
1133
|
+
## 0.0.4-alpha.0
|
|
1134
|
+
|
|
1135
|
+
### Patch Changes
|
|
1136
|
+
|
|
1137
|
+
- Updated dependencies [daf942f]
|
|
1138
|
+
- Updated dependencies [0b8b868]
|
|
1139
|
+
- @mastra/core@0.9.4-alpha.0
|
|
1140
|
+
|
|
1141
|
+
## 0.0.3
|
|
1142
|
+
|
|
1143
|
+
### Patch Changes
|
|
1144
|
+
|
|
1145
|
+
- Updated dependencies [e450778]
|
|
1146
|
+
- Updated dependencies [8902157]
|
|
1147
|
+
- Updated dependencies [ca0dc88]
|
|
1148
|
+
- Updated dependencies [526c570]
|
|
1149
|
+
- Updated dependencies [d7a6a33]
|
|
1150
|
+
- Updated dependencies [9cd1a46]
|
|
1151
|
+
- Updated dependencies [b5d2de0]
|
|
1152
|
+
- Updated dependencies [644f8ad]
|
|
1153
|
+
- Updated dependencies [70dbf51]
|
|
1154
|
+
- @mastra/core@0.9.3
|
|
1155
|
+
|
|
1156
|
+
## 0.0.3-alpha.1
|
|
1157
|
+
|
|
1158
|
+
### Patch Changes
|
|
1159
|
+
|
|
1160
|
+
- Updated dependencies [e450778]
|
|
1161
|
+
- Updated dependencies [8902157]
|
|
1162
|
+
- Updated dependencies [ca0dc88]
|
|
1163
|
+
- Updated dependencies [9cd1a46]
|
|
1164
|
+
- Updated dependencies [70dbf51]
|
|
1165
|
+
- @mastra/core@0.9.3-alpha.1
|
|
1166
|
+
|
|
1167
|
+
## 0.0.3-alpha.0
|
|
1168
|
+
|
|
1169
|
+
### Patch Changes
|
|
1170
|
+
|
|
1171
|
+
- Updated dependencies [526c570]
|
|
1172
|
+
- Updated dependencies [b5d2de0]
|
|
1173
|
+
- Updated dependencies [644f8ad]
|
|
1174
|
+
- @mastra/core@0.9.3-alpha.0
|
|
1175
|
+
|
|
1176
|
+
## 0.0.2
|
|
1177
|
+
|
|
1178
|
+
### Patch Changes
|
|
1179
|
+
|
|
1180
|
+
- 4155f47: Add parameters to filter workflow runs
|
|
1181
|
+
Add fromDate and toDate to telemetry parameters
|
|
1182
|
+
- Updated dependencies [6052aa6]
|
|
1183
|
+
- Updated dependencies [967b41c]
|
|
1184
|
+
- Updated dependencies [3d2fb5c]
|
|
1185
|
+
- Updated dependencies [26738f4]
|
|
1186
|
+
- Updated dependencies [4155f47]
|
|
1187
|
+
- Updated dependencies [7eeb2bc]
|
|
1188
|
+
- Updated dependencies [b804723]
|
|
1189
|
+
- Updated dependencies [8607972]
|
|
1190
|
+
- Updated dependencies [ccef9f9]
|
|
1191
|
+
- Updated dependencies [0097d50]
|
|
1192
|
+
- Updated dependencies [7eeb2bc]
|
|
1193
|
+
- Updated dependencies [17826a9]
|
|
1194
|
+
- Updated dependencies [7d8b7c7]
|
|
1195
|
+
- Updated dependencies [fba031f]
|
|
1196
|
+
- Updated dependencies [3a5f1e1]
|
|
1197
|
+
- Updated dependencies [51e6923]
|
|
1198
|
+
- Updated dependencies [8398d89]
|
|
1199
|
+
- @mastra/core@0.9.2
|
|
1200
|
+
|
|
1201
|
+
## 0.0.2-alpha.6
|
|
1202
|
+
|
|
1203
|
+
### Patch Changes
|
|
1204
|
+
|
|
1205
|
+
- Updated dependencies [6052aa6]
|
|
1206
|
+
- Updated dependencies [7d8b7c7]
|
|
1207
|
+
- Updated dependencies [3a5f1e1]
|
|
1208
|
+
- Updated dependencies [8398d89]
|
|
1209
|
+
- @mastra/core@0.9.2-alpha.6
|
|
1210
|
+
|
|
1211
|
+
## 0.0.2-alpha.5
|
|
1212
|
+
|
|
1213
|
+
### Patch Changes
|
|
1214
|
+
|
|
1215
|
+
- Updated dependencies [3d2fb5c]
|
|
1216
|
+
- Updated dependencies [7eeb2bc]
|
|
1217
|
+
- Updated dependencies [8607972]
|
|
1218
|
+
- Updated dependencies [7eeb2bc]
|
|
1219
|
+
- Updated dependencies [fba031f]
|
|
1220
|
+
- @mastra/core@0.9.2-alpha.5
|
|
1221
|
+
|
|
1222
|
+
## 0.0.2-alpha.4
|
|
1223
|
+
|
|
1224
|
+
### Patch Changes
|
|
1225
|
+
|
|
1226
|
+
- Updated dependencies [ccef9f9]
|
|
1227
|
+
- Updated dependencies [51e6923]
|
|
1228
|
+
- @mastra/core@0.9.2-alpha.4
|
|
1229
|
+
|
|
1230
|
+
## 0.0.2-alpha.3
|
|
1231
|
+
|
|
1232
|
+
### Patch Changes
|
|
1233
|
+
|
|
1234
|
+
- 4155f47: Add parameters to filter workflow runs
|
|
1235
|
+
Add fromDate and toDate to telemetry parameters
|
|
1236
|
+
- Updated dependencies [967b41c]
|
|
1237
|
+
- Updated dependencies [4155f47]
|
|
1238
|
+
- Updated dependencies [17826a9]
|
|
1239
|
+
- @mastra/core@0.9.2-alpha.3
|
|
1240
|
+
|
|
1241
|
+
## 0.0.2-alpha.2
|
|
1242
|
+
|
|
1243
|
+
### Patch Changes
|
|
1244
|
+
|
|
1245
|
+
- Updated dependencies [26738f4]
|
|
1246
|
+
- @mastra/core@0.9.2-alpha.2
|
|
1247
|
+
|
|
1248
|
+
## 0.0.2-alpha.1
|
|
1249
|
+
|
|
1250
|
+
### Patch Changes
|
|
1251
|
+
|
|
1252
|
+
- Updated dependencies [b804723]
|
|
1253
|
+
- @mastra/core@0.9.2-alpha.1
|
|
1254
|
+
|
|
1255
|
+
## 0.0.2-alpha.0
|
|
1256
|
+
|
|
1257
|
+
### Patch Changes
|
|
1258
|
+
|
|
1259
|
+
- Updated dependencies [0097d50]
|
|
1260
|
+
- @mastra/core@0.9.2-alpha.0
|
|
1261
|
+
|
|
1262
|
+
## 0.0.1
|
|
1263
|
+
|
|
1264
|
+
### Patch Changes
|
|
1265
|
+
|
|
1266
|
+
- 479f490: [MASTRA-3131] Add getWorkflowRunByID and add resourceId as filter for getWorkflowRuns
|
|
1267
|
+
- 5f826d9: Moved vector store specific prompts from @mastra/rag to be exported from the store that the prompt belongs to, ie @mastra/pg
|
|
7
1268
|
- 2d4001d: Add new @msstra/libsql package and use it in create-mastra
|
|
1269
|
+
- Updated dependencies [405b63d]
|
|
8
1270
|
- Updated dependencies [81fb7f6]
|
|
9
1271
|
- Updated dependencies [20275d4]
|
|
10
1272
|
- Updated dependencies [7d1892c]
|
|
11
1273
|
- Updated dependencies [a90a082]
|
|
1274
|
+
- Updated dependencies [2d17c73]
|
|
1275
|
+
- Updated dependencies [61e92f5]
|
|
12
1276
|
- Updated dependencies [35955b0]
|
|
1277
|
+
- Updated dependencies [6262bd5]
|
|
13
1278
|
- Updated dependencies [c1409ef]
|
|
1279
|
+
- Updated dependencies [3e7b69d]
|
|
1280
|
+
- Updated dependencies [e4943b8]
|
|
14
1281
|
- Updated dependencies [11d4485]
|
|
1282
|
+
- Updated dependencies [479f490]
|
|
1283
|
+
- Updated dependencies [c23a81c]
|
|
15
1284
|
- Updated dependencies [2d4001d]
|
|
16
|
-
|
|
1285
|
+
- Updated dependencies [c71013a]
|
|
1286
|
+
- Updated dependencies [1d3b1cd]
|
|
1287
|
+
- @mastra/core@0.9.1
|
|
1288
|
+
|
|
1289
|
+
## 0.0.1-alpha.8
|
|
1290
|
+
|
|
1291
|
+
### Patch Changes
|
|
1292
|
+
|
|
1293
|
+
- Updated dependencies [2d17c73]
|
|
1294
|
+
- @mastra/core@0.9.1-alpha.8
|
|
1295
|
+
|
|
1296
|
+
## 0.0.1-alpha.7
|
|
1297
|
+
|
|
1298
|
+
### Patch Changes
|
|
1299
|
+
|
|
1300
|
+
- Updated dependencies [1d3b1cd]
|
|
1301
|
+
- @mastra/core@0.9.1-alpha.7
|
|
1302
|
+
|
|
1303
|
+
## 0.0.1-alpha.6
|
|
1304
|
+
|
|
1305
|
+
### Patch Changes
|
|
1306
|
+
|
|
1307
|
+
- Updated dependencies [c23a81c]
|
|
1308
|
+
- @mastra/core@0.9.1-alpha.6
|
|
1309
|
+
|
|
1310
|
+
## 0.0.1-alpha.5
|
|
1311
|
+
|
|
1312
|
+
### Patch Changes
|
|
1313
|
+
|
|
1314
|
+
- 5f826d9: Moved vector store specific prompts from @mastra/rag to be exported from the store that the prompt belongs to, ie @mastra/pg
|
|
1315
|
+
- Updated dependencies [3e7b69d]
|
|
1316
|
+
- @mastra/core@0.9.1-alpha.5
|
|
1317
|
+
|
|
1318
|
+
## 0.0.1-alpha.4
|
|
1319
|
+
|
|
1320
|
+
### Patch Changes
|
|
1321
|
+
|
|
1322
|
+
- 479f490: [MASTRA-3131] Add getWorkflowRunByID and add resourceId as filter for getWorkflowRuns
|
|
1323
|
+
- Updated dependencies [e4943b8]
|
|
1324
|
+
- Updated dependencies [479f490]
|
|
1325
|
+
- @mastra/core@0.9.1-alpha.4
|
|
1326
|
+
|
|
1327
|
+
## 0.0.1-alpha.3
|
|
1328
|
+
|
|
1329
|
+
### Patch Changes
|
|
1330
|
+
|
|
1331
|
+
- Updated dependencies [6262bd5]
|
|
1332
|
+
- @mastra/core@0.9.1-alpha.3
|
|
1333
|
+
|
|
1334
|
+
## 0.0.1-alpha.2
|
|
1335
|
+
|
|
1336
|
+
### Patch Changes
|
|
1337
|
+
|
|
1338
|
+
- Updated dependencies [405b63d]
|
|
1339
|
+
- Updated dependencies [61e92f5]
|
|
1340
|
+
- Updated dependencies [c71013a]
|
|
1341
|
+
- @mastra/core@0.9.1-alpha.2
|
|
17
1342
|
|
|
18
1343
|
## 0.0.1-alpha.1
|
|
19
1344
|
|