@mastra/memory 1.14.0 → 1.15.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/dist/{chunk-ZVRO2GUN.cjs → chunk-ANKEPFC6.cjs} +545 -391
- package/dist/chunk-ANKEPFC6.cjs.map +1 -0
- package/dist/{chunk-GXDPND6K.js → chunk-ZEKCVX4E.js} +546 -392
- package/dist/chunk-ZEKCVX4E.js.map +1 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +35 -35
- package/dist/index.cjs +142 -50
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +136 -44
- package/dist/index.js.map +1 -1
- package/dist/{observational-memory-IRCDSDUB.cjs → observational-memory-NKF66CFX.cjs} +26 -26
- package/dist/{observational-memory-IRCDSDUB.cjs.map → observational-memory-NKF66CFX.cjs.map} +1 -1
- package/dist/{observational-memory-OVRHDQRG.js → observational-memory-S6YN56D3.js} +3 -3
- package/dist/{observational-memory-OVRHDQRG.js.map → observational-memory-S6YN56D3.js.map} +1 -1
- package/dist/processors/index.cjs +24 -24
- package/dist/processors/index.js +1 -1
- package/dist/processors/observational-memory/observational-memory.d.ts.map +1 -1
- package/dist/processors/observational-memory/observer-agent.d.ts.map +1 -1
- package/dist/processors/observational-memory/processor.d.ts.map +1 -1
- package/dist/processors/observational-memory/repro-capture.d.ts +8 -0
- package/dist/processors/observational-memory/repro-capture.d.ts.map +1 -1
- package/dist/tools/om-tools.d.ts +14 -2
- package/dist/tools/om-tools.d.ts.map +1 -1
- package/package.json +3 -3
- package/dist/chunk-GXDPND6K.js.map +0 -1
- package/dist/chunk-ZVRO2GUN.cjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @mastra/memory
|
|
2
2
|
|
|
3
|
+
## 1.15.0-alpha.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Improved observational memory formatting to use part timestamps when rendering dates and times. ([#15121](https://github.com/mastra-ai/mastra/pull/15121))
|
|
8
|
+
|
|
9
|
+
Observer history now follows part-level timing more closely, so the rendered memory context is more accurate when messages contain parts created at different times.
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`8db7663`](https://github.com/mastra-ai/mastra/commit/8db7663c9a9c735828094c359d2e327fd4f8fba3), [`715710d`](https://github.com/mastra-ai/mastra/commit/715710d12fa47cf88e09d41f13843eddc29327b0), [`378c6c4`](https://github.com/mastra-ai/mastra/commit/378c6c4755726e8d8cf83a14809b350b90d46c62), [`9f91fd5`](https://github.com/mastra-ai/mastra/commit/9f91fd538ab2a44f8cc740bcad8e51205f74fbea), [`ba6fa9c`](https://github.com/mastra-ai/mastra/commit/ba6fa9cc0f3e1912c49fd70d4c3bb8c44903ddaa)]:
|
|
12
|
+
- @mastra/core@1.24.0-alpha.1
|
|
13
|
+
|
|
14
|
+
## 1.15.0-alpha.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- Updated the recall tool to support more precise message browsing for agents. ([#15116](https://github.com/mastra-ai/mastra/pull/15116))
|
|
19
|
+
|
|
20
|
+
Agents using `recall` can now pass `partType` and `toolName` to narrow message results to specific parts, such as tool calls or tool results for one tool. This change also adds `threadId: "current"` support across recall modes and `anchor: "start" | "end"` for no-cursor message paging, making it easier to inspect recent thread activity and past tool usage.
|
|
21
|
+
|
|
3
22
|
## 1.14.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|