diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index d432c454b2c66..f21c2451061a1 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -33,7 +33,7 @@ simd = ["datafusion/simd"] snmalloc = ["snmalloc-rs"] [dependencies] -arrow = "26.0.0" +arrow = "27.0.0" datafusion = { path = "../datafusion/core", version = "14.0.0" } env_logger = "0.9" futures = "0.3" diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml index 33cf9dd959288..c464d76b95b74 100644 --- a/datafusion-examples/Cargo.toml +++ b/datafusion-examples/Cargo.toml @@ -34,7 +34,7 @@ path = "examples/avro_sql.rs" required-features = ["datafusion/avro"] [dev-dependencies] -arrow = "26.0.0" +arrow = "27.0.0" arrow-flight = "26.0.0" async-trait = "0.1.41" datafusion = { path = "../datafusion/core" } diff --git a/datafusion/common/Cargo.toml b/datafusion/common/Cargo.toml index cbbaf4337cd9c..76237ee37584b 100644 --- a/datafusion/common/Cargo.toml +++ b/datafusion/common/Cargo.toml @@ -40,7 +40,7 @@ pyarrow = ["pyo3", "arrow/pyarrow"] [dependencies] apache-avro = { version = "0.14", default-features = false, features = ["snappy"], optional = true } -arrow = { version = "26.0.0", default-features = false } +arrow = { version = "27.0.0", default-features = false } chrono = { version = "0.4", default-features = false } cranelift-module = { version = "0.89.0", optional = true } object_store = { version = "0.5.0", default-features = false, optional = true } diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml index 493d8a3c364ea..f955366598b10 100644 --- a/datafusion/core/Cargo.toml +++ b/datafusion/core/Cargo.toml @@ -56,7 +56,7 @@ unicode_expressions = ["datafusion-physical-expr/regex_expressions", "datafusion [dependencies] ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] } apache-avro = { version = "0.14", optional = true } -arrow = { version = "26.0.0", features = ["prettyprint"] } +arrow = { version = "27.0.0", features = ["prettyprint"] } async-compression = { version = "0.3.14", features = ["bzip2", "gzip", "futures-io", "tokio"] } async-trait = "0.1.41" bytes = "1.1" @@ -98,7 +98,7 @@ url = "2.2" uuid = { version = "1.0", features = ["v4"] } [dev-dependencies] -arrow = { version = "26.0.0", features = ["prettyprint", "dyn_cmp_dict"] } +arrow = { version = "27.0.0", features = ["prettyprint", "dyn_cmp_dict"] } async-trait = "0.1.53" criterion = "0.4" csv = "1.1.6" diff --git a/datafusion/expr/Cargo.toml b/datafusion/expr/Cargo.toml index db4afdc2cfd12..6e6fd13d56052 100644 --- a/datafusion/expr/Cargo.toml +++ b/datafusion/expr/Cargo.toml @@ -36,7 +36,7 @@ path = "src/lib.rs" [dependencies] ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] } -arrow = { version = "26.0.0", default-features = false } +arrow = { version = "27.0.0", default-features = false } datafusion-common = { path = "../common", version = "14.0.0" } log = "^0.4" sqlparser = "0.26" diff --git a/datafusion/jit/Cargo.toml b/datafusion/jit/Cargo.toml index 31aff38ae8a03..e4bd5fc2e4723 100644 --- a/datafusion/jit/Cargo.toml +++ b/datafusion/jit/Cargo.toml @@ -36,7 +36,7 @@ path = "src/lib.rs" jit = [] [dependencies] -arrow = { version = "26.0.0", default-features = false } +arrow = { version = "27.0.0", default-features = false } cranelift = "0.89.0" cranelift-jit = "0.89.0" cranelift-module = "0.89.0" diff --git a/datafusion/optimizer/Cargo.toml b/datafusion/optimizer/Cargo.toml index 7238d4359088a..9cde4d1dded0f 100644 --- a/datafusion/optimizer/Cargo.toml +++ b/datafusion/optimizer/Cargo.toml @@ -37,7 +37,7 @@ default = ["unicode_expressions"] unicode_expressions = [] [dependencies] -arrow = { version = "26.0.0", features = ["prettyprint"] } +arrow = { version = "27.0.0", features = ["prettyprint"] } async-trait = "0.1.41" chrono = { version = "0.4.23", default-features = false } datafusion-common = { path = "../common", version = "14.0.0" } diff --git a/datafusion/physical-expr/Cargo.toml b/datafusion/physical-expr/Cargo.toml index 388c52df434d5..efd98ff3cebd1 100644 --- a/datafusion/physical-expr/Cargo.toml +++ b/datafusion/physical-expr/Cargo.toml @@ -40,7 +40,7 @@ unicode_expressions = ["unicode-segmentation"] [dependencies] ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] } -arrow = { version = "26.0.0", features = ["prettyprint", "dyn_cmp_dict"] } +arrow = { version = "27.0.0", features = ["prettyprint", "dyn_cmp_dict"] } arrow-buffer = "26.0.0" arrow-schema = "26.0.0" blake2 = { version = "^0.10.2", optional = true } @@ -63,7 +63,7 @@ unicode-segmentation = { version = "^1.7.1", optional = true } uuid = { version = "^1.2", features = ["v4"] } [dev-dependencies] -arrow = { version = "26.0.0", features = ["prettyprint", "dyn_cmp_dict"] } +arrow = { version = "27.0.0", features = ["prettyprint", "dyn_cmp_dict"] } criterion = "0.4" rand = "0.8" diff --git a/datafusion/proto/Cargo.toml b/datafusion/proto/Cargo.toml index f1d0007100647..2e3c357e39b7d 100644 --- a/datafusion/proto/Cargo.toml +++ b/datafusion/proto/Cargo.toml @@ -40,7 +40,7 @@ default = [] json = ["pbjson", "serde", "serde_json"] [dependencies] -arrow = "26.0.0" +arrow = "27.0.0" datafusion = { path = "../core", version = "14.0.0" } datafusion-common = { path = "../common", version = "14.0.0" } datafusion-expr = { path = "../expr", version = "14.0.0" } diff --git a/datafusion/row/Cargo.toml b/datafusion/row/Cargo.toml index 1e3e7b757ff8d..a6934cb6f5d3e 100644 --- a/datafusion/row/Cargo.toml +++ b/datafusion/row/Cargo.toml @@ -37,7 +37,7 @@ path = "src/lib.rs" jit = ["datafusion-jit"] [dependencies] -arrow = "26.0.0" +arrow = "27.0.0" datafusion-common = { path = "../common", version = "14.0.0" } datafusion-jit = { path = "../jit", version = "14.0.0", optional = true } paste = "^1.0" diff --git a/datafusion/sql/Cargo.toml b/datafusion/sql/Cargo.toml index 8939dc8e8ad53..2c712ba86abc6 100644 --- a/datafusion/sql/Cargo.toml +++ b/datafusion/sql/Cargo.toml @@ -37,7 +37,7 @@ default = ["unicode_expressions"] unicode_expressions = [] [dependencies] -arrow = { version = "26.0.0", default-features = false } +arrow = { version = "27.0.0", default-features = false } datafusion-common = { path = "../common", version = "14.0.0" } datafusion-expr = { path = "../expr", version = "14.0.0" } sqlparser = "0.26" diff --git a/test-utils/Cargo.toml b/test-utils/Cargo.toml index ab168961e0567..13cdaf03c51ed 100644 --- a/test-utils/Cargo.toml +++ b/test-utils/Cargo.toml @@ -23,7 +23,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -arrow = { version = "26.0.0", features = ["prettyprint"] } +arrow = { version = "27.0.0", features = ["prettyprint"] } datafusion-common = { path = "../datafusion/common", version = "14.0.0" } env_logger = "0.9.0" rand = "0.8"