@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 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
- - Minimum OpenClaw host: `2026.4.10`
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.
@@ -60,7 +60,10 @@ var MemoryDB = class {
60
60
  this.initPromise = null;
61
61
  }
62
62
  async ensureInitialized() {
63
- if (this.table) return;
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;
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "id": "memory-lancedb",
3
+ "categories": ["memory", "tools"],
3
4
  "doctorContract": {
4
5
  "stateMigrations": [
5
6
  { "id": "memory-lancedb-agent-scope" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/memory-lancedb",
3
- "version": "2026.9.3",
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.3"
38
+ "pluginApi": ">=2026.9.4"
39
39
  },
40
40
  "build": {
41
- "openclawVersion": "2026.9.3"
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.3"
58
+ "openclaw": ">=2026.9.4"
59
59
  },
60
60
  "peerDependenciesMeta": {
61
61
  "openclaw": {