Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update datafusion to 42.0 and arrow to 53.2 #3176

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
751 changes: 466 additions & 285 deletions Cargo.lock

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,17 @@ lance-test-macros = { version = "=0.20.0", path = "./rust/lance-test-macros" }
lance-testing = { version = "=0.20.0", path = "./rust/lance-testing" }
approx = "0.5.1"
# Note that this one does not include pyarrow
arrow = { version = "52.2", optional = false, features = ["prettyprint"] }
arrow-arith = "52.2"
arrow-array = "52.2"
arrow-buffer = "52.2"
arrow-cast = "52.2"
arrow-data = "52.2"
arrow-ipc = { version = "52.2", features = ["zstd"] }
arrow-ord = "52.2"
arrow-row = "52.2"
arrow-schema = "52.2"
arrow-select = "52.2"
arrow = { version = "53.2", optional = false, features = ["prettyprint"] }
arrow-arith = "53.2"
arrow-array = "53.2"
arrow-buffer = "53.2"
arrow-cast = "53.2"
arrow-data = "53.2"
arrow-ipc = { version = "53.2", features = ["zstd"] }
arrow-ord = "53.2"
arrow-row = "53.2"
arrow-schema = "53.2"
arrow-select = "53.2"
async-recursion = "1.0"
async-trait = "0.1"
aws-config = "1.2.0"
Expand All @@ -95,18 +95,18 @@ criterion = { version = "0.5", features = [
"html_reports",
] }
crossbeam-queue = "0.3"
datafusion = { version = "41.0", default-features = false, features = [
datafusion = { version = "42.0", default-features = false, features = [
"nested_expressions",
"regex_expressions",
"unicode_expressions",
] }
datafusion-common = "41.0"
datafusion-functions = { version = "41.0", features = ["regex_expressions"] }
datafusion-sql = "41.0"
datafusion-expr = "41.0"
datafusion-execution = "41.0"
datafusion-optimizer = "41.0"
datafusion-physical-expr = { version = "41.0", features = [
datafusion-common = "42.0"
datafusion-functions = { version = "42.0", features = ["regex_expressions"] }
datafusion-sql = "42.0"
datafusion-expr = "42.0"
datafusion-execution = "42.0"
datafusion-optimizer = "42.0"
datafusion-physical-expr = { version = "42.0", features = [
"regex_expressions",
] }
deepsize = "0.2.0"
Expand All @@ -124,14 +124,14 @@ moka = { version = "0.12", features = ["future", "sync"] }
num-traits = "0.2"
# Set min to prevent use of versions with CVE-2024-41178
object_store = { version = "0.10.2" }
parquet = "52.0"
parquet = "53.0"
pin-project = "1.0"
path_abs = "0.5"
pprof = { version = "0.14.0", features = ["flamegraph", "criterion"] }
proptest = "1.3.1"
prost = "0.12.2"
prost-build = "0.12.2"
prost-types = "0.12.2"
prost = "0.13.2"
prost-build = "0.13.2"
prost-types = "0.13.2"
rand = { version = "0.8.3", features = ["small_rng"] }
rangemap = { version = "1.0" }
rayon = "1.10"
Expand Down
Loading
Loading