From 059a273ce554306cfd34c4d8059847128cb69cf2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 10 Apr 2022 00:39:25 +0000 Subject: [PATCH] Update arrow requirement from 8.0.0 to 11.1.0 Updates the requirements on [arrow](https://github.com/apache/arrow-rs) to permit the latest version. - [Release notes](https://github.com/apache/arrow-rs/releases) - [Changelog](https://github.com/apache/arrow-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/compare/8.0.0...9.1.0) --- updated-dependencies: - dependency-name: arrow dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ballista/rust/executor/Cargo.toml | 2 +- datafusion-cli/Cargo.toml | 2 +- datafusion/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index 4eba2a152328..9a24bbf2903e 100644 --- a/ballista/rust/executor/Cargo.toml +++ b/ballista/rust/executor/Cargo.toml @@ -29,7 +29,7 @@ edition = "2018" snmalloc = ["snmalloc-rs"] [dependencies] -arrow = { version = "8.0.0" } +arrow = { version = "11.1.0" } arrow-flight = { version = "8.0.0" } anyhow = "1" async-trait = "0.1.36" diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml index 57afa2fd13e5..15c6ff24af02 100644 --- a/datafusion-cli/Cargo.toml +++ b/datafusion-cli/Cargo.toml @@ -31,5 +31,5 @@ clap = { version = "3", features = ["derive", "cargo"] } rustyline = "9.0" tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync"] } datafusion = { path = "../datafusion", version = "6.0.0" } -arrow = { version = "8.0.0" } +arrow = { version = "11.1.0" } ballista = { path = "../ballista/rust/client", version = "0.6.0" } diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 422a776448d9..fe28dd4c1ce6 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -52,7 +52,7 @@ avro = ["avro-rs", "num-traits"] [dependencies] ahash = { version = "0.7", default-features = false } hashbrown = { version = "0.12", features = ["raw"] } -arrow = { version = "8.0.0", features = ["prettyprint"] } +arrow = { version = "11.1.0", features = ["prettyprint"] } parquet = { version = "8.0.0", features = ["arrow"] } sqlparser = "0.13" paste = "^1.0"