From 57cf3d14205f0c11446d567838beccfd664b44ae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Sep 2026 11:24:36 +0000 Subject: [PATCH] deps(core): bump the all group across 1 directory with 5 updates Updates the requirements on [datafusion](https://github.com/apache/datafusion), [datafusion-session](https://github.com/apache/datafusion), [itertools](https://github.com/rust-itertools/itertools), [sqllogictest](https://github.com/risinglightdb/sqllogictest-rs) and [object_store](https://github.com/apache/arrow-rs-object-store) to permit the latest version. Updates `datafusion` to 55.0.0 - [Changelog](https://github.com/apache/datafusion/blob/main/CHANGELOG.md) - [Commits](https://github.com/apache/datafusion/compare/53.0.0...55.0.0) Updates `datafusion-session` to 55.0.0 - [Changelog](https://github.com/apache/datafusion/blob/main/CHANGELOG.md) - [Commits](https://github.com/apache/datafusion/compare/53.0.0...55.0.0) Updates `itertools` to 0.15.0 - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.14.0...v0.15.0) Updates `sqllogictest` to 0.29.1 - [Release notes](https://github.com/risinglightdb/sqllogictest-rs/releases) - [Changelog](https://github.com/risinglightdb/sqllogictest-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/risinglightdb/sqllogictest-rs/compare/v0.28.4...v0.29.1) Updates `object_store` to 0.14.1 - [Release notes](https://github.com/apache/arrow-rs-object-store/releases) - [Changelog](https://github.com/apache/arrow-rs-object-store/blob/main/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs-object-store/compare/v0.12.3...v0.14.1) --- updated-dependencies: - dependency-name: datafusion dependency-version: 54.0.0 dependency-type: direct:production dependency-group: all - dependency-name: datafusion-session dependency-version: 54.0.0 dependency-type: direct:production dependency-group: all - dependency-name: itertools dependency-version: 0.15.0 dependency-type: direct:production dependency-group: all - dependency-name: object_store dependency-version: 0.13.2 dependency-type: direct:production dependency-group: all - dependency-name: sqllogictest dependency-version: 0.29.1 dependency-type: direct:production dependency-group: all ... Signed-off-by: dependabot[bot] --- core/wren-core/Cargo.toml | 4 ++-- core/wren-core/core/Cargo.toml | 2 +- core/wren-core/sqllogictest/Cargo.toml | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/wren-core/Cargo.toml b/core/wren-core/Cargo.toml index 5bb6eb8bf6..0476ed6a79 100644 --- a/core/wren-core/Cargo.toml +++ b/core/wren-core/Cargo.toml @@ -14,7 +14,7 @@ version = "0.3.2" [workspace.dependencies] async-trait = "0.1.89" -datafusion = { version = "53", default-features = false, features = [ +datafusion = { version = "55", default-features = false, features = [ "nested_expressions", "crypto_expressions", "datetime_expressions", @@ -24,7 +24,7 @@ datafusion = { version = "53", default-features = false, features = [ "parquet", "sql", ] } -datafusion-session = { version = "53", default-features = false } +datafusion-session = { version = "55", default-features = false } env_logger = "0.11.10" hashbrown = "0.17.0" insta = { version = "1.41.1" } diff --git a/core/wren-core/core/Cargo.toml b/core/wren-core/core/Cargo.toml index 06fd4ab11f..9a6481173d 100644 --- a/core/wren-core/core/Cargo.toml +++ b/core/wren-core/core/Cargo.toml @@ -35,7 +35,7 @@ datafusion = { workspace = true, features = [ ] } datafusion-session = { workspace = true } -itertools = "0.14.0" +itertools = "0.15.0" log = { workspace = true } parking_lot = "0.12.3" petgraph = "0.8.2" diff --git a/core/wren-core/sqllogictest/Cargo.toml b/core/wren-core/sqllogictest/Cargo.toml index 5cfa4b9d86..8f0ce2963f 100644 --- a/core/wren-core/sqllogictest/Cargo.toml +++ b/core/wren-core/sqllogictest/Cargo.toml @@ -20,13 +20,13 @@ datafusion = { workspace = true, default-features = true } half = { version = "2.4.1", default-features = true } log = { workspace = true } rust_decimal = { version = "1.27.0" } -sqllogictest = "0.28.4" +sqllogictest = "0.29.1" thiserror = "2.0.3" tokio = { workspace = true } wren-core = { path = "../core", package = "wren-semantic-core" } -itertools = "0.14.0" -object_store = { version = "0.12.3", default-features = false } +itertools = "0.15.0" +object_store = { version = "0.14.1", default-features = false } clap = { version = "4.4.8", features = ["derive", "env"] } futures = "0.3.17"