Skip to content

Commit 065c465

Browse files
authored
Merge pull request #194 from sd1114820/fix/add-apache-arrow-direct-dependency
fix: declare apache-arrow as a direct runtime dependency
2 parents 6e9fa4a + 1a3e0a4 commit 065c465

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"dependencies": {
2828
"@lancedb/lancedb": "^0.26.2",
2929
"@sinclair/typebox": "0.34.48",
30+
"apache-arrow": "18.1.0",
3031
"openai": "^6.21.0"
3132
},
3233
"openclaw": {

test/plugin-manifest-regression.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@ assert.equal(
8484
pkg.version,
8585
"openclaw.plugin.json version should stay aligned with package.json",
8686
);
87+
assert.equal(
88+
pkg.dependencies["apache-arrow"],
89+
"18.1.0",
90+
"package.json should declare apache-arrow directly so OpenClaw plugin installs do not miss the LanceDB runtime dependency",
91+
);
8792

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

0 commit comments

Comments
 (0)