@mastra/memory 0.2.0-alpha.9 → 0.2.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 +9 -9
- package/CHANGELOG.md +77 -0
- package/package.json +17 -17
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
|
|
2
|
-
> @mastra/memory@0.2.0-alpha.
|
|
3
|
-
> pnpm run check && tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake
|
|
2
|
+
> @mastra/memory@0.2.0-alpha.12 build /home/runner/work/mastra/mastra/packages/memory
|
|
3
|
+
> pnpm run check && tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @mastra/memory@0.2.0-alpha.
|
|
6
|
+
> @mastra/memory@0.2.0-alpha.12 check /home/runner/work/mastra/mastra/packages/memory
|
|
7
7
|
> tsc --noEmit
|
|
8
8
|
|
|
9
9
|
[34mCLI[39m Building entry: src/index.ts
|
|
10
10
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
11
|
-
[34mCLI[39m tsup v8.
|
|
11
|
+
[34mCLI[39m tsup v8.4.0
|
|
12
12
|
[34mTSC[39m Build start
|
|
13
|
-
[32mTSC[39m ⚡️ Build success in
|
|
13
|
+
[32mTSC[39m ⚡️ Build success in 8090ms
|
|
14
14
|
[34mDTS[39m Build start
|
|
15
15
|
[34mCLI[39m Target: es2022
|
|
16
16
|
Analysis will use the bundled TypeScript version 5.7.3
|
|
17
17
|
[36mWriting package typings: /home/runner/work/mastra/mastra/packages/memory/dist/_tsup-dts-rollup.d.ts[39m
|
|
18
18
|
Analysis will use the bundled TypeScript version 5.7.3
|
|
19
19
|
[36mWriting package typings: /home/runner/work/mastra/mastra/packages/memory/dist/_tsup-dts-rollup.d.cts[39m
|
|
20
|
-
[32mDTS[39m ⚡️ Build success in
|
|
20
|
+
[32mDTS[39m ⚡️ Build success in 10326ms
|
|
21
21
|
[34mCLI[39m Cleaning output folder
|
|
22
22
|
[34mESM[39m Build start
|
|
23
23
|
[34mCJS[39m Build start
|
|
24
|
-
[32mESM[39m [1mdist/index.js [22m[32m12.79 KB[39m
|
|
25
|
-
[32mESM[39m ⚡️ Build success in 607ms
|
|
26
24
|
[32mCJS[39m [1mdist/index.cjs [22m[32m12.83 KB[39m
|
|
27
|
-
[32mCJS[39m ⚡️ Build success in
|
|
25
|
+
[32mCJS[39m ⚡️ Build success in 500ms
|
|
26
|
+
[32mESM[39m [1mdist/index.js [22m[32m12.79 KB[39m
|
|
27
|
+
[32mESM[39m ⚡️ Build success in 507ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,82 @@
|
|
|
1
1
|
# @mastra/memory
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 59df7b6: Added a new option to use tool-calls for saving working memory: new Memory({ workingMemory: { enabled: true, use: "tool-call" } }). This is to support response methods like toDataStream where masking working memory chunks would be more resource intensive and complex.
|
|
8
|
+
To support this `memory` is now passed into tool execute args.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- c151ae6: Fixed an issue where models that don't support structured output would error when generating a thread title. Added an option to disable thread title llm generation `new Memory({ threads: { generateTitle: false }})`
|
|
13
|
+
- f2301de: Added the ability to ensure the accessed thread in memory.query() is for the right resource id. ex memory.query({ threadId, resourceId }). If the resourceId doesn't own the thread it will throw an error.
|
|
14
|
+
- fd4a1d7: Update cjs bundling to make sure files are split
|
|
15
|
+
- Updated dependencies [a910463]
|
|
16
|
+
- Updated dependencies [59df7b6]
|
|
17
|
+
- Updated dependencies [22643eb]
|
|
18
|
+
- Updated dependencies [6feb23f]
|
|
19
|
+
- Updated dependencies [f2d6727]
|
|
20
|
+
- Updated dependencies [7a7a547]
|
|
21
|
+
- Updated dependencies [29f3a82]
|
|
22
|
+
- Updated dependencies [3d0e290]
|
|
23
|
+
- Updated dependencies [e9fbac5]
|
|
24
|
+
- Updated dependencies [301e4ee]
|
|
25
|
+
- Updated dependencies [ee667a2]
|
|
26
|
+
- Updated dependencies [dfbe4e9]
|
|
27
|
+
- Updated dependencies [dab255b]
|
|
28
|
+
- Updated dependencies [1e8bcbc]
|
|
29
|
+
- Updated dependencies [f6678e4]
|
|
30
|
+
- Updated dependencies [9e81f35]
|
|
31
|
+
- Updated dependencies [c93798b]
|
|
32
|
+
- Updated dependencies [a85ab24]
|
|
33
|
+
- Updated dependencies [dbd9f2d]
|
|
34
|
+
- Updated dependencies [59df7b6]
|
|
35
|
+
- Updated dependencies [caefaa2]
|
|
36
|
+
- Updated dependencies [c151ae6]
|
|
37
|
+
- Updated dependencies [52e0418]
|
|
38
|
+
- Updated dependencies [d79aedf]
|
|
39
|
+
- Updated dependencies [03236ec]
|
|
40
|
+
- Updated dependencies [3764e71]
|
|
41
|
+
- Updated dependencies [df982db]
|
|
42
|
+
- Updated dependencies [a171b37]
|
|
43
|
+
- Updated dependencies [506f1d5]
|
|
44
|
+
- Updated dependencies [02ffb7b]
|
|
45
|
+
- Updated dependencies [0461849]
|
|
46
|
+
- Updated dependencies [2259379]
|
|
47
|
+
- Updated dependencies [aeb5e36]
|
|
48
|
+
- Updated dependencies [f2301de]
|
|
49
|
+
- Updated dependencies [358f069]
|
|
50
|
+
- Updated dependencies [fd4a1d7]
|
|
51
|
+
- Updated dependencies [c139344]
|
|
52
|
+
- @mastra/core@0.5.0
|
|
53
|
+
|
|
54
|
+
## 0.2.0-alpha.12
|
|
55
|
+
|
|
56
|
+
### Patch Changes
|
|
57
|
+
|
|
58
|
+
- Updated dependencies [a85ab24]
|
|
59
|
+
- @mastra/core@0.5.0-alpha.12
|
|
60
|
+
|
|
61
|
+
## 0.2.0-alpha.11
|
|
62
|
+
|
|
63
|
+
### Patch Changes
|
|
64
|
+
|
|
65
|
+
- fd4a1d7: Update cjs bundling to make sure files are split
|
|
66
|
+
- Updated dependencies [7a7a547]
|
|
67
|
+
- Updated dependencies [c93798b]
|
|
68
|
+
- Updated dependencies [dbd9f2d]
|
|
69
|
+
- Updated dependencies [a171b37]
|
|
70
|
+
- Updated dependencies [fd4a1d7]
|
|
71
|
+
- @mastra/core@0.5.0-alpha.11
|
|
72
|
+
|
|
73
|
+
## 0.2.0-alpha.10
|
|
74
|
+
|
|
75
|
+
### Patch Changes
|
|
76
|
+
|
|
77
|
+
- Updated dependencies [a910463]
|
|
78
|
+
- @mastra/core@0.5.0-alpha.10
|
|
79
|
+
|
|
3
80
|
## 0.2.0-alpha.9
|
|
4
81
|
|
|
5
82
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/memory",
|
|
3
|
-
"version": "0.2.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -42,29 +42,29 @@
|
|
|
42
42
|
"author": "",
|
|
43
43
|
"license": "ISC",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@upstash/redis": "^1.34.
|
|
46
|
-
"ai": "^4.
|
|
47
|
-
"pg": "^8.13.
|
|
48
|
-
"pg-pool": "^3.7.
|
|
45
|
+
"@upstash/redis": "^1.34.5",
|
|
46
|
+
"ai": "^4.1.54",
|
|
47
|
+
"pg": "^8.13.3",
|
|
48
|
+
"pg-pool": "^3.7.1",
|
|
49
49
|
"postgres": "^3.4.5",
|
|
50
50
|
"redis": "^4.7.0",
|
|
51
|
-
"zod": "^3.24.
|
|
52
|
-
"@mastra/core": "^0.5.0
|
|
51
|
+
"zod": "^3.24.2",
|
|
52
|
+
"@mastra/core": "^0.5.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@microsoft/api-extractor": "^7.
|
|
56
|
-
"@types/node": "^22.13.
|
|
57
|
-
"@types/pg": "^8.11.
|
|
58
|
-
"eslint": "^9.
|
|
59
|
-
"tsup": "^8.0
|
|
60
|
-
"typescript": "^5.
|
|
61
|
-
"typescript-eslint": "^8.
|
|
62
|
-
"vitest": "^3.0.
|
|
63
|
-
"@internal/lint": "0.0.
|
|
55
|
+
"@microsoft/api-extractor": "^7.52.1",
|
|
56
|
+
"@types/node": "^22.13.10",
|
|
57
|
+
"@types/pg": "^8.11.11",
|
|
58
|
+
"eslint": "^9.22.0",
|
|
59
|
+
"tsup": "^8.4.0",
|
|
60
|
+
"typescript": "^5.8.2",
|
|
61
|
+
"typescript-eslint": "^8.26.1",
|
|
62
|
+
"vitest": "^3.0.8",
|
|
63
|
+
"@internal/lint": "0.0.1"
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
66
|
"check": "tsc --noEmit",
|
|
67
|
-
"build": "pnpm run check && tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake",
|
|
67
|
+
"build": "pnpm run check && tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting",
|
|
68
68
|
"build:watch": "pnpm build --watch",
|
|
69
69
|
"test:integration": "cd integration-tests && pnpm run test",
|
|
70
70
|
"test": "pnpm test:integration",
|