@mastra/memory 0.12.2-alpha.1 → 0.12.2
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 +35 -0
- package/package.json +5 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
|
-
> @mastra/memory@0.12.2-alpha.
|
|
2
|
+
> @mastra/memory@0.12.2-alpha.2 build /home/runner/work/mastra/mastra/packages/memory
|
|
3
3
|
> pnpm run check && tsup --silent --config tsup.config.ts
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @mastra/memory@0.12.2-alpha.
|
|
6
|
+
> @mastra/memory@0.12.2-alpha.2 check /home/runner/work/mastra/mastra/packages/memory
|
|
7
7
|
> tsc --noEmit
|
|
8
8
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @mastra/memory
|
|
2
2
|
|
|
3
|
+
## 0.12.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- da62f49: When using a schema for working memory, make that the tools schema so the agent better understands the schema.
|
|
8
|
+
- 2fff911: Fix vnext working memory tool schema when model is incompatible with schema
|
|
9
|
+
- Updated dependencies [d5330bf]
|
|
10
|
+
- Updated dependencies [2e74797]
|
|
11
|
+
- Updated dependencies [8388649]
|
|
12
|
+
- Updated dependencies [a239d41]
|
|
13
|
+
- Updated dependencies [dd94a26]
|
|
14
|
+
- Updated dependencies [3ba6772]
|
|
15
|
+
- Updated dependencies [b5cf2a3]
|
|
16
|
+
- Updated dependencies [2fff911]
|
|
17
|
+
- Updated dependencies [b32c50d]
|
|
18
|
+
- Updated dependencies [63449d0]
|
|
19
|
+
- Updated dependencies [121a3f8]
|
|
20
|
+
- Updated dependencies [ec510e7]
|
|
21
|
+
- Updated dependencies [ae2eb63]
|
|
22
|
+
- @mastra/core@0.13.2
|
|
23
|
+
- @mastra/schema-compat@0.10.7
|
|
24
|
+
|
|
25
|
+
## 0.12.2-alpha.2
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [d5330bf]
|
|
30
|
+
- Updated dependencies [a239d41]
|
|
31
|
+
- Updated dependencies [b32c50d]
|
|
32
|
+
- Updated dependencies [121a3f8]
|
|
33
|
+
- Updated dependencies [ec510e7]
|
|
34
|
+
- Updated dependencies [ae2eb63]
|
|
35
|
+
- @mastra/core@0.13.2-alpha.2
|
|
36
|
+
- @mastra/schema-compat@0.10.7-alpha.1
|
|
37
|
+
|
|
3
38
|
## 0.12.2-alpha.1
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/memory",
|
|
3
|
-
"version": "0.12.2
|
|
3
|
+
"version": "0.12.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"xxhash-wasm": "^1.1.0",
|
|
45
45
|
"zod": "^3.25.67",
|
|
46
46
|
"zod-to-json-schema": "^3.24.5",
|
|
47
|
-
"@mastra/schema-compat": "0.10.7
|
|
47
|
+
"@mastra/schema-compat": "0.10.7"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@ai-sdk/openai": "^1.3.22",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"typescript": "^5.8.3",
|
|
58
58
|
"typescript-eslint": "^8.38.0",
|
|
59
59
|
"vitest": "^3.2.4",
|
|
60
|
-
"@
|
|
61
|
-
"@
|
|
62
|
-
"@internal/types-builder": "0.0.
|
|
60
|
+
"@mastra/core": "0.13.2",
|
|
61
|
+
"@internal/lint": "0.0.29",
|
|
62
|
+
"@internal/types-builder": "0.0.4"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"@mastra/core": ">=0.13.0-0 <0.14.0-0"
|