From 64a7973345bd123b31eb4192ac0ee34a28c54abd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 May 2022 08:32:47 +0000 Subject: [PATCH] Update arrow requirement from 13 to 14 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/13.0.0...14.0.0) --- updated-dependencies: - dependency-name: arrow dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ballista/rust/executor/Cargo.toml | 2 +- datafusion/common/Cargo.toml | 2 +- datafusion/core/Cargo.toml | 2 +- datafusion/expr/Cargo.toml | 2 +- datafusion/jit/Cargo.toml | 2 +- datafusion/physical-expr/Cargo.toml | 2 +- datafusion/row/Cargo.toml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index 3a2b45c5c20f..dbb00098a1fd 100644 --- a/ballista/rust/executor/Cargo.toml +++ b/ballista/rust/executor/Cargo.toml @@ -34,7 +34,7 @@ snmalloc = ["snmalloc-rs"] [dependencies] anyhow = "1" -arrow = { version = "13" } +arrow = { version = "14" } arrow-flight = { version = "13" } async-trait = "0.1.41" ballista-core = { path = "../core", version = "0.7.0" } diff --git a/datafusion/common/Cargo.toml b/datafusion/common/Cargo.toml index 652dde5fbd5e..078479bdcea7 100644 --- a/datafusion/common/Cargo.toml +++ b/datafusion/common/Cargo.toml @@ -38,7 +38,7 @@ jit = ["cranelift-module"] pyarrow = ["pyo3"] [dependencies] -arrow = { version = "13", features = ["prettyprint"] } +arrow = { version = "14", features = ["prettyprint"] } avro-rs = { version = "0.13", features = ["snappy"], optional = true } cranelift-module = { version = "0.83.0", optional = true } ordered-float = "3.0" diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml index 54fac119b519..c7cf4296377d 100644 --- a/datafusion/core/Cargo.toml +++ b/datafusion/core/Cargo.toml @@ -55,7 +55,7 @@ unicode_expressions = ["datafusion-physical-expr/regex_expressions"] [dependencies] ahash = { version = "0.7", default-features = false } -arrow = { version = "13", features = ["prettyprint"] } +arrow = { version = "14", features = ["prettyprint"] } async-trait = "0.1.41" avro-rs = { version = "0.13", features = ["snappy"], optional = true } chrono = { version = "0.4", default-features = false } diff --git a/datafusion/expr/Cargo.toml b/datafusion/expr/Cargo.toml index 25786e670987..29f673731e3d 100644 --- a/datafusion/expr/Cargo.toml +++ b/datafusion/expr/Cargo.toml @@ -36,6 +36,6 @@ path = "src/lib.rs" [dependencies] ahash = { version = "0.7", default-features = false } -arrow = { version = "13", features = ["prettyprint"] } +arrow = { version = "14", features = ["prettyprint"] } datafusion-common = { path = "../common", version = "8.0.0" } sqlparser = "0.17" diff --git a/datafusion/jit/Cargo.toml b/datafusion/jit/Cargo.toml index e3278be6d296..766722154789 100644 --- a/datafusion/jit/Cargo.toml +++ b/datafusion/jit/Cargo.toml @@ -36,7 +36,7 @@ path = "src/lib.rs" jit = [] [dependencies] -arrow = { version = "13" } +arrow = { version = "14" } cranelift = "0.83.0" cranelift-jit = "0.83.0" cranelift-module = "0.83.0" diff --git a/datafusion/physical-expr/Cargo.toml b/datafusion/physical-expr/Cargo.toml index f9a472555060..717162b0761c 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.7", default-features = false } -arrow = { version = "13", features = ["prettyprint"] } +arrow = { version = "14", features = ["prettyprint"] } blake2 = { version = "^0.10.2", optional = true } blake3 = { version = "1.0", optional = true } chrono = { version = "0.4", default-features = false } diff --git a/datafusion/row/Cargo.toml b/datafusion/row/Cargo.toml index 13b485fb7cd5..66b6db904d9d 100644 --- a/datafusion/row/Cargo.toml +++ b/datafusion/row/Cargo.toml @@ -37,7 +37,7 @@ path = "src/lib.rs" jit = ["datafusion-jit"] [dependencies] -arrow = { version = "13" } +arrow = { version = "14" } datafusion-common = { path = "../common", version = "8.0.0" } datafusion-jit = { path = "../jit", version = "8.0.0", optional = true } paste = "^1.0"