This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new f657c7a72 build(javascript): use consistent arrow version bound (#4372)
f657c7a72 is described below
commit f657c7a7295d648c4d9607f41fd6c2b9332f43c6
Author: David Li <[email protected]>
AuthorDate: Tue Jun 9 16:24:29 2026 -0700
build(javascript): use consistent arrow version bound (#4372)
CI is broken after the recent arrow 59 release
---
javascript/Cargo.toml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/javascript/Cargo.toml b/javascript/Cargo.toml
index 9900e0a3d..508b84aa8 100644
--- a/javascript/Cargo.toml
+++ b/javascript/Cargo.toml
@@ -29,9 +29,9 @@ napi = "3.0.0"
napi-derive = "3.0.0"
adbc_core = { path = "../rust/core" }
adbc_driver_manager = { path = "../rust/driver_manager" }
-arrow-array = { version = ">=53.1.0", default-features = false, features =
["ffi"] }
-arrow-ipc = { version = ">=53.1.0" }
-arrow-schema = { version = ">=53.1.0" }
+arrow-array = { version = ">=53.1.0, <59", default-features = false, features
= ["ffi"] }
+arrow-ipc = { version = ">=53.1.0, <59" }
+arrow-schema = { version = ">=53.1.0, <59" }
thiserror = "1.0"
[build-dependencies]