@memoryrelay/plugin-memoryrelay-ai 0.8.8 → 0.8.9

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/index.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * OpenClaw Memory Plugin - MemoryRelay
3
- * Version: 0.8.8 (OpenClaw Security Compliance)
3
+ * Version: 0.8.9 (OpenClaw Security Compliance)
4
4
  *
5
5
  * Long-term memory with vector search using MemoryRelay API.
6
6
  * Provides auto-recall and auto-capture via lifecycle hooks.
@@ -9,7 +9,7 @@
9
9
  * API: https://api.memoryrelay.net
10
10
  * Docs: https://memoryrelay.ai
11
11
  *
12
- * ENHANCEMENTS (v0.8.8):
12
+ * ENHANCEMENTS (v0.8.9):
13
13
  * - Removed fs.writeFile from export command (stdout only now)
14
14
  * - No filesystem operations - passes OpenClaw security validation
15
15
  * - Export usage: openclaw memoryrelay export > memories.json
@@ -865,7 +865,7 @@ export default async function plugin(api: OpenClawPluginApi): Promise<void> {
865
865
  const verboseEnabled = cfg?.verbose || false;
866
866
  const maxLogEntries = cfg?.maxLogEntries || 100;
867
867
 
868
- // Note: logFile is deprecated in v0.8.8 (removed for OpenClaw security compliance)
868
+ // Note: logFile is deprecated in v0.8.9 (removed for OpenClaw security compliance)
869
869
  // All debug logs are in-memory only. Use gateway methods to access logs.
870
870
 
871
871
  let debugLogger: DebugLogger | undefined;
@@ -3,7 +3,7 @@
3
3
  "kind": "memory",
4
4
  "name": "MemoryRelay AI",
5
5
  "description": "AI memory service with sessions, decisions, patterns & projects (api.memoryrelay.net)",
6
- "version": "0.8.8",
6
+ "version": "0.8.9",
7
7
  "uiHints": {
8
8
  "apiKey": {
9
9
  "label": "MemoryRelay API Key",
@@ -111,10 +111,6 @@
111
111
  "default": false,
112
112
  "description": "Include request/response bodies in debug logs"
113
113
  },
114
- "logFile": {
115
- "type": "string",
116
- "description": "DEPRECATED (v0.8.8): File logging removed for OpenClaw security compliance. This option is ignored. Use gateway methods to access in-memory logs (coming in v0.9.0)."
117
- },
118
114
  "maxLogEntries": {
119
115
  "type": "number",
120
116
  "default": 100,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memoryrelay/plugin-memoryrelay-ai",
3
- "version": "0.8.8",
3
+ "version": "0.8.9",
4
4
  "description": "OpenClaw memory plugin for MemoryRelay API - sessions, decisions, patterns, projects & semantic search",
5
5
  "type": "module",
6
6
  "main": "index.ts",