@mastra/memory 1.28.1-alpha.1 → 1.28.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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # @mastra/memory
2
2
 
3
+ ## 1.28.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Add an optional bounded description field to knowledge nodes across storage adapters, written through a dedicated curator tool. Part of an unreleased experimental memory feature. ([#21830](https://github.com/mastra-ai/mastra/pull/21830))
8
+
9
+ - Knowledge curation no longer fails on Gemini models: the curator's `knowledge_update_node` tool schema was rejected by Google's API ("required only allowed for OBJECT type"), causing every curation attempt with a Gemini curator to fail before the model ran. The tool now accepts the same inputs with `name`/`kind` as optional properties (at least one required). ([#22337](https://github.com/mastra-ai/mastra/pull/22337))
10
+
11
+ - Improve the reliability and capacity of experimental memory processing. ([#22178](https://github.com/mastra-ai/mastra/pull/22178))
12
+
13
+ - Updated dependencies [[`bae1502`](https://github.com/mastra-ai/mastra/commit/bae150254b06a4da6964d7c137af97f336362359), [`0885364`](https://github.com/mastra-ai/mastra/commit/0885364c2fc7fa31febcfc444fc1ba5231ac1257), [`b8cb683`](https://github.com/mastra-ai/mastra/commit/b8cb683ba66499df254ddd1f7edd8cae3f89d2e7), [`078affd`](https://github.com/mastra-ai/mastra/commit/078affdaea57ac5e95a77e9e7b197d1878190684), [`9e3403e`](https://github.com/mastra-ai/mastra/commit/9e3403e9868240cb18841898e84cf008ebd7a87e), [`791bf5e`](https://github.com/mastra-ai/mastra/commit/791bf5e81cd27e2e1cff66122f1380ab8a3dda41)]:
14
+ - @mastra/core@1.63.1
15
+
3
16
  ## 1.28.1-alpha.1
4
17
 
5
18
  ### Patch Changes
@@ -3,7 +3,7 @@ name: mastra-memory
3
3
  description: Documentation for @mastra/memory. Use when working with @mastra/memory APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/memory"
6
- version: "1.28.1-alpha.1"
6
+ version: "1.28.1"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.28.1-alpha.1",
2
+ "version": "1.28.1",
3
3
  "package": "@mastra/memory",
4
4
  "exports": {},
5
5
  "modules": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/memory",
3
- "version": "1.28.1-alpha.1",
3
+ "version": "1.28.1",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -60,12 +60,12 @@
60
60
  "typescript": "^6.0.3",
61
61
  "typescript-eslint": "^8.57.0",
62
62
  "vitest": "4.1.10",
63
- "@internal/ai-v6": "0.0.74",
64
- "@internal/types-builder": "0.0.102",
65
- "@internal/lint": "0.0.127",
66
- "@internal/ai-sdk-v5": "0.0.74",
67
- "@mastra/core": "1.63.1-alpha.2",
68
- "@internal/ai-sdk-v4": "0.0.74"
63
+ "@internal/ai-sdk-v4": "0.0.75",
64
+ "@internal/ai-sdk-v5": "0.0.75",
65
+ "@internal/ai-v6": "0.0.75",
66
+ "@internal/types-builder": "0.0.103",
67
+ "@internal/lint": "0.0.128",
68
+ "@mastra/core": "1.63.1"
69
69
  },
70
70
  "peerDependencies": {
71
71
  "@mastra/core": ">=1.4.1-0 <2.0.0-0"