Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"dependencies": {
"@lancedb/lancedb": "^0.26.2",
"@sinclair/typebox": "0.34.48",
"apache-arrow": "18.1.0",
"openai": "^6.21.0"
},
"openclaw": {
Expand Down
5 changes: 5 additions & 0 deletions test/plugin-manifest-regression.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ assert.equal(
pkg.version,
"openclaw.plugin.json version should stay aligned with package.json",
);
assert.equal(
pkg.dependencies["apache-arrow"],
"18.1.0",
"package.json should declare apache-arrow directly so OpenClaw plugin installs do not miss the LanceDB runtime dependency",
);

const workDir = mkdtempSync(path.join(tmpdir(), "memory-plugin-regression-"));
const services = [];
Expand Down
Loading