@mastra/memory 0.10.3-alpha.2 → 0.10.4-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +45 -0
- package/package.json +17 -17
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
|
-
> @mastra/memory@0.10.
|
|
2
|
+
> @mastra/memory@0.10.4-alpha.0 build /home/runner/work/mastra/mastra/packages/memory
|
|
3
3
|
> pnpm run check && tsup --silent src/index.ts src/processors/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @mastra/memory@0.10.
|
|
6
|
+
> @mastra/memory@0.10.4-alpha.0 check /home/runner/work/mastra/mastra/packages/memory
|
|
7
7
|
> tsc --noEmit
|
|
8
8
|
|
|
9
9
|
Analysis will use the bundled TypeScript version 5.8.3
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# @mastra/memory
|
|
2
2
|
|
|
3
|
+
## 0.10.4-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 63f6b7d: dependencies updates:
|
|
8
|
+
- Updated dependency [`@upstash/redis@^1.35.0` ↗︎](https://www.npmjs.com/package/@upstash/redis/v/1.35.0) (from `^1.34.5`, in `dependencies`)
|
|
9
|
+
- Updated dependency [`ai@^4.3.16` ↗︎](https://www.npmjs.com/package/ai/v/4.3.16) (from `^4.2.2`, in `dependencies`)
|
|
10
|
+
- Updated dependency [`js-tiktoken@^1.0.20` ↗︎](https://www.npmjs.com/package/js-tiktoken/v/1.0.20) (from `^1.0.19`, in `dependencies`)
|
|
11
|
+
- Updated dependency [`pg@^8.16.0` ↗︎](https://www.npmjs.com/package/pg/v/8.16.0) (from `^8.13.3`, in `dependencies`)
|
|
12
|
+
- Updated dependency [`pg-pool@^3.10.0` ↗︎](https://www.npmjs.com/package/pg-pool/v/3.10.0) (from `^3.7.1`, in `dependencies`)
|
|
13
|
+
- Updated dependency [`postgres@^3.4.7` ↗︎](https://www.npmjs.com/package/postgres/v/3.4.7) (from `^3.4.5`, in `dependencies`)
|
|
14
|
+
- Updated dependency [`redis@^4.7.1` ↗︎](https://www.npmjs.com/package/redis/v/4.7.1) (from `^4.7.0`, in `dependencies`)
|
|
15
|
+
- Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
|
|
16
|
+
- Updated dependencies [63f6b7d]
|
|
17
|
+
- Updated dependencies [36f1c36]
|
|
18
|
+
- Updated dependencies [10d352e]
|
|
19
|
+
- Updated dependencies [53d3c37]
|
|
20
|
+
- @mastra/core@0.10.6-alpha.0
|
|
21
|
+
|
|
22
|
+
## 0.10.3
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- 1ccccff: dependencies updates:
|
|
27
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
28
|
+
- 1ccccff: dependencies updates:
|
|
29
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
30
|
+
- a382d3b: Fix token limiter estimations after recent MessageList work changed message structure
|
|
31
|
+
- 48eddb9: update filter logic in Memory class to support semantic recall search scope
|
|
32
|
+
- 66f4424: Update peerdeps
|
|
33
|
+
- Updated dependencies [d1ed912]
|
|
34
|
+
- Updated dependencies [f6fd25f]
|
|
35
|
+
- Updated dependencies [dffb67b]
|
|
36
|
+
- Updated dependencies [f1f1f1b]
|
|
37
|
+
- Updated dependencies [925ab94]
|
|
38
|
+
- Updated dependencies [f9816ae]
|
|
39
|
+
- Updated dependencies [82090c1]
|
|
40
|
+
- Updated dependencies [1b443fd]
|
|
41
|
+
- Updated dependencies [ce97900]
|
|
42
|
+
- Updated dependencies [f1309d3]
|
|
43
|
+
- Updated dependencies [14a2566]
|
|
44
|
+
- Updated dependencies [f7f8293]
|
|
45
|
+
- Updated dependencies [48eddb9]
|
|
46
|
+
- @mastra/core@0.10.4
|
|
47
|
+
|
|
3
48
|
## 0.10.3-alpha.2
|
|
4
49
|
|
|
5
50
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/memory",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.4-alpha.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -32,28 +32,28 @@
|
|
|
32
32
|
"author": "",
|
|
33
33
|
"license": "Elastic-2.0",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@upstash/redis": "^1.
|
|
36
|
-
"ai": "^4.
|
|
37
|
-
"js-tiktoken": "^1.0.
|
|
38
|
-
"pg": "^8.
|
|
39
|
-
"pg-pool": "^3.
|
|
40
|
-
"postgres": "^3.4.
|
|
41
|
-
"redis": "^4.7.
|
|
35
|
+
"@upstash/redis": "^1.35.0",
|
|
36
|
+
"ai": "^4.3.16",
|
|
37
|
+
"js-tiktoken": "^1.0.20",
|
|
38
|
+
"pg": "^8.16.0",
|
|
39
|
+
"pg-pool": "^3.10.0",
|
|
40
|
+
"postgres": "^3.4.7",
|
|
41
|
+
"redis": "^4.7.1",
|
|
42
42
|
"xxhash-wasm": "^1.1.0",
|
|
43
|
-
"zod": "^3.25.
|
|
43
|
+
"zod": "^3.25.57"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@ai-sdk/openai": "^1.3.
|
|
46
|
+
"@ai-sdk/openai": "^1.3.22",
|
|
47
47
|
"@microsoft/api-extractor": "^7.52.8",
|
|
48
|
-
"@types/node": "^20.
|
|
49
|
-
"@types/pg": "^8.
|
|
48
|
+
"@types/node": "^20.19.0",
|
|
49
|
+
"@types/pg": "^8.15.4",
|
|
50
50
|
"eslint": "^9.28.0",
|
|
51
51
|
"tsup": "^8.5.0",
|
|
52
|
-
"typescript": "^5.8.
|
|
53
|
-
"typescript-eslint": "^8.
|
|
54
|
-
"vitest": "^3.2.
|
|
55
|
-
"@internal/lint": "0.0.
|
|
56
|
-
"@mastra/core": "0.10.
|
|
52
|
+
"typescript": "^5.8.3",
|
|
53
|
+
"typescript-eslint": "^8.34.0",
|
|
54
|
+
"vitest": "^3.2.3",
|
|
55
|
+
"@internal/lint": "0.0.12",
|
|
56
|
+
"@mastra/core": "0.10.6-alpha.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"@mastra/core": ">=0.10.4-0 <0.11.0"
|