@openclaw/memory-lancedb 2026.9.3 → 2026.9.4
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/README.md +5 -2
- package/dist/lancedb-store.js +4 -1
- package/openclaw.plugin.json +1 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -23,10 +23,13 @@ Restart the Gateway after installing or updating the plugin.
|
|
|
23
23
|
|
|
24
24
|
Use the memory plugin docs for embedding provider setup, storage paths, indexing, and recall behavior:
|
|
25
25
|
|
|
26
|
-
- https://docs.openclaw.ai/plugins/memory-lancedb
|
|
26
|
+
- <https://docs.openclaw.ai/plugins/memory-lancedb>
|
|
27
27
|
|
|
28
28
|
## Package
|
|
29
29
|
|
|
30
30
|
- Plugin id: `memory-lancedb`
|
|
31
31
|
- Package: `@openclaw/memory-lancedb`
|
|
32
|
-
-
|
|
32
|
+
- Enforced minimum OpenClaw host (`openclaw.install.minHostVersion`): `>=2026.5.31`
|
|
33
|
+
- Enforced plugin API compatibility (`openclaw.compat.pluginApi`): `>=2026.9.3`
|
|
34
|
+
|
|
35
|
+
The installer checks these ranges independently. Both must be satisfied.
|
package/dist/lancedb-store.js
CHANGED
|
@@ -60,7 +60,10 @@ var MemoryDB = class {
|
|
|
60
60
|
this.initPromise = null;
|
|
61
61
|
}
|
|
62
62
|
async ensureInitialized() {
|
|
63
|
-
if (this.table)
|
|
63
|
+
if (this.table) {
|
|
64
|
+
await this.table.checkoutLatest();
|
|
65
|
+
return;
|
|
66
|
+
}
|
|
64
67
|
if (this.initPromise) return await this.initPromise;
|
|
65
68
|
this.initPromise = this.doInitialize().catch((error) => {
|
|
66
69
|
this.initPromise = null;
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/memory-lancedb",
|
|
3
|
-
"version": "2026.9.
|
|
3
|
+
"version": "2026.9.4",
|
|
4
4
|
"description": "OpenClaw LanceDB-backed long-term memory plugin with auto-recall, auto-capture, and vector search.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"minHostVersion": ">=2026.5.31"
|
|
36
36
|
},
|
|
37
37
|
"compat": {
|
|
38
|
-
"pluginApi": ">=2026.9.
|
|
38
|
+
"pluginApi": ">=2026.9.4"
|
|
39
39
|
},
|
|
40
40
|
"build": {
|
|
41
|
-
"openclawVersion": "2026.9.
|
|
41
|
+
"openclawVersion": "2026.9.4"
|
|
42
42
|
},
|
|
43
43
|
"release": {
|
|
44
44
|
"bundleRuntimeDependencies": false,
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"README.md"
|
|
56
56
|
],
|
|
57
57
|
"peerDependencies": {
|
|
58
|
-
"openclaw": ">=2026.9.
|
|
58
|
+
"openclaw": ">=2026.9.4"
|
|
59
59
|
},
|
|
60
60
|
"peerDependenciesMeta": {
|
|
61
61
|
"openclaw": {
|