@prmichaelsen/remember-mcp 2.6.4 → 2.6.5
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/server-factory.js +3 -1
- package/dist/server.js +3 -1
- package/dist/weaviate/client.d.ts +1 -1
- package/package.json +1 -1
- package/src/weaviate/client.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.6.5] - 2026-02-16
|
|
9
|
+
|
|
10
|
+
### 🐛 Fixed
|
|
11
|
+
|
|
12
|
+
- **CRITICAL: Fixed Schema Property Mismatch in fetchMemoryWithAllProperties**
|
|
13
|
+
- `ALL_MEMORY_PROPERTIES` constant had `trust_level` but schema has `trust`
|
|
14
|
+
- Caused publish operations to fail with schema validation error
|
|
15
|
+
- Fixed property name to match actual schema: `trust_level` → `trust`
|
|
16
|
+
- Added missing `confidence` property to the list
|
|
17
|
+
- Publish functionality now works correctly
|
|
18
|
+
|
|
19
|
+
### 🎯 Impact
|
|
20
|
+
|
|
21
|
+
- **Fixes**: Publishing memories to shared spaces now works
|
|
22
|
+
- **Unblocks**: Core publish/space functionality restored
|
|
23
|
+
- **Note**: This was introduced in v2.6.3 when creating the utility function
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
8
27
|
## [2.6.4] - 2026-02-16
|
|
9
28
|
|
|
10
29
|
### 🔧 Improved
|
package/dist/server-factory.js
CHANGED
package/dist/server.js
CHANGED
|
@@ -37,7 +37,7 @@ export declare function getAuditCollectionName(userId: string): string;
|
|
|
37
37
|
* List of all memory properties to fetch
|
|
38
38
|
* Centralized to ensure consistency across all tools
|
|
39
39
|
*/
|
|
40
|
-
export declare const ALL_MEMORY_PROPERTIES: readonly ["user_id", "doc_type", "type", "title", "content", "tags", "weight", "base_weight", "
|
|
40
|
+
export declare const ALL_MEMORY_PROPERTIES: readonly ["user_id", "doc_type", "type", "title", "content", "tags", "weight", "base_weight", "trust", "confidence", "context", "location", "relationships", "created_at", "updated_at", "version", "attribution", "source_url", "author", "parent_id", "thread_root_id", "moderation_flags"];
|
|
41
41
|
/**
|
|
42
42
|
* Fetch a memory object by ID with all properties
|
|
43
43
|
*
|
package/package.json
CHANGED
package/src/weaviate/client.ts
CHANGED