This is an automated email from the ASF dual-hosted git repository. alamb pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/datafusion.git
The following commit(s) were added to refs/heads/main by this push: new d4d5bfd8ff chore(deps): bump object_store from 0.12.2 to 0.12.3 (#16807) d4d5bfd8ff is described below commit d4d5bfd8ffdf2fc1b810bc0de8a9b60bbb43d8dc Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> AuthorDate: Thu Jul 17 17:35:57 2025 -0400 chore(deps): bump object_store from 0.12.2 to 0.12.3 (#16807) * chore(deps): bump object_store from 0.12.2 to 0.12.3 Bumps [object_store](https://github.com/apache/arrow-rs-object-store) from 0.12.2 to 0.12.3. - [Changelog](https://github.com/apache/arrow-rs-object-store/blob/main/CHANGELOG-old.md) - [Commits](https://github.com/apache/arrow-rs-object-store/compare/v0.12.2...v0.12.3) --- updated-dependencies: - dependency-name: object_store dependency-version: 0.12.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <supp...@github.com> * fix: deprecation warning --------- Signed-off-by: dependabot[bot] <supp...@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marco Neumann <ma...@crepererum.net> --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- datafusion/core/src/datasource/file_format/csv.rs | 4 ++-- datafusion/core/src/datasource/file_format/parquet.rs | 4 ++-- datafusion/core/src/test/object_store.rs | 6 +++--- datafusion/core/tests/sql/path_partition.rs | 4 ++-- datafusion/core/tests/tracing/traceable_object_store.rs | 4 ++-- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 15997ef3d8..2c98c5ce20 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4360,9 +4360,9 @@ dependencies = [ [[package]] name = "object_store" -version = "0.12.2" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7781f96d79ed0f961a7021424ab01840efbda64ae7a505aaea195efc91eaaec4" +checksum = "efc4f07659e11cd45a341cd24d71e683e3be65d9ff1f8150061678fe60437496" dependencies = [ "async-trait", "base64 0.22.1", @@ -5029,9 +5029,9 @@ checksum = "5a651516ddc9168ebd67b24afd085a718be02f8858fe406591b013d101ce2f40" [[package]] name = "quick-xml" -version = "0.37.5" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" +checksum = "8927b0664f5c5a98265138b7e3f90aa19a6b21353182469ace36d4ac527b7b1b" dependencies = [ "memchr", "serde", diff --git a/Cargo.toml b/Cargo.toml index 29534cbdb3..7f5c79ae3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -154,7 +154,7 @@ hex = { version = "0.4.3" } indexmap = "2.10.0" itertools = "0.14" log = "^0.4" -object_store = { version = "0.12.2", default-features = false } +object_store = { version = "0.12.3", default-features = false } parking_lot = "0.12" parquet = { version = "55.2.0", default-features = false, features = [ "arrow", diff --git a/datafusion/core/src/datasource/file_format/csv.rs b/datafusion/core/src/datasource/file_format/csv.rs index 777895ca61..23ba9e6ec8 100644 --- a/datafusion/core/src/datasource/file_format/csv.rs +++ b/datafusion/core/src/datasource/file_format/csv.rs @@ -64,7 +64,7 @@ mod tests { use object_store::path::Path; use object_store::{ Attributes, GetOptions, GetResult, GetResultPayload, ListResult, MultipartUpload, - ObjectMeta, ObjectStore, PutMultipartOpts, PutOptions, PutPayload, PutResult, + ObjectMeta, ObjectStore, PutMultipartOptions, PutOptions, PutPayload, PutResult, }; use regex::Regex; use rstest::*; @@ -98,7 +98,7 @@ mod tests { async fn put_multipart_opts( &self, _location: &Path, - _opts: PutMultipartOpts, + _opts: PutMultipartOptions, ) -> object_store::Result<Box<dyn MultipartUpload>> { unimplemented!() } diff --git a/datafusion/core/src/datasource/file_format/parquet.rs b/datafusion/core/src/datasource/file_format/parquet.rs index 385e0f7b9d..9b343923f0 100644 --- a/datafusion/core/src/datasource/file_format/parquet.rs +++ b/datafusion/core/src/datasource/file_format/parquet.rs @@ -158,7 +158,7 @@ mod tests { use object_store::ObjectMeta; use object_store::{ path::Path, GetOptions, GetResult, ListResult, MultipartUpload, ObjectStore, - PutMultipartOpts, PutOptions, PutPayload, PutResult, + PutMultipartOptions, PutOptions, PutPayload, PutResult, }; use parquet::arrow::arrow_reader::ArrowReaderOptions; use parquet::arrow::ParquetRecordBatchStreamBuilder; @@ -311,7 +311,7 @@ mod tests { async fn put_multipart_opts( &self, _location: &Path, - _opts: PutMultipartOpts, + _opts: PutMultipartOptions, ) -> object_store::Result<Box<dyn MultipartUpload>> { Err(object_store::Error::NotImplemented) } diff --git a/datafusion/core/src/test/object_store.rs b/datafusion/core/src/test/object_store.rs index ed8474bbfc..761f60d645 100644 --- a/datafusion/core/src/test/object_store.rs +++ b/datafusion/core/src/test/object_store.rs @@ -24,8 +24,8 @@ use futures::stream::BoxStream; use futures::FutureExt; use object_store::{ memory::InMemory, path::Path, Error, GetOptions, GetResult, ListResult, - MultipartUpload, ObjectMeta, ObjectStore, PutMultipartOpts, PutOptions, PutPayload, - PutResult, + MultipartUpload, ObjectMeta, ObjectStore, PutMultipartOptions, PutOptions, + PutPayload, PutResult, }; use std::fmt::{Debug, Display, Formatter}; use std::sync::Arc; @@ -118,7 +118,7 @@ impl ObjectStore for BlockingObjectStore { async fn put_multipart_opts( &self, location: &Path, - opts: PutMultipartOpts, + opts: PutMultipartOptions, ) -> object_store::Result<Box<dyn MultipartUpload>> { self.inner.put_multipart_opts(location, opts).await } diff --git a/datafusion/core/tests/sql/path_partition.rs b/datafusion/core/tests/sql/path_partition.rs index 5e9748d23d..05cc723ef0 100644 --- a/datafusion/core/tests/sql/path_partition.rs +++ b/datafusion/core/tests/sql/path_partition.rs @@ -50,7 +50,7 @@ use object_store::{ path::Path, GetOptions, GetResult, GetResultPayload, ListResult, ObjectMeta, ObjectStore, PutOptions, PutResult, }; -use object_store::{Attributes, MultipartUpload, PutMultipartOpts, PutPayload}; +use object_store::{Attributes, MultipartUpload, PutMultipartOptions, PutPayload}; use url::Url; #[tokio::test] @@ -645,7 +645,7 @@ impl ObjectStore for MirroringObjectStore { async fn put_multipart_opts( &self, _location: &Path, - _opts: PutMultipartOpts, + _opts: PutMultipartOptions, ) -> object_store::Result<Box<dyn MultipartUpload>> { unimplemented!() } diff --git a/datafusion/core/tests/tracing/traceable_object_store.rs b/datafusion/core/tests/tracing/traceable_object_store.rs index dfcafc3a63..60ef1cc5d6 100644 --- a/datafusion/core/tests/tracing/traceable_object_store.rs +++ b/datafusion/core/tests/tracing/traceable_object_store.rs @@ -21,7 +21,7 @@ use crate::tracing::asserting_tracer::assert_traceability; use futures::stream::BoxStream; use object_store::{ path::Path, GetOptions, GetResult, ListResult, MultipartUpload, ObjectMeta, - ObjectStore, PutMultipartOpts, PutOptions, PutPayload, PutResult, + ObjectStore, PutMultipartOptions, PutOptions, PutPayload, PutResult, }; use std::fmt::{Debug, Display, Formatter}; use std::sync::Arc; @@ -68,7 +68,7 @@ impl ObjectStore for TraceableObjectStore { async fn put_multipart_opts( &self, location: &Path, - opts: PutMultipartOpts, + opts: PutMultipartOptions, ) -> object_store::Result<Box<dyn MultipartUpload>> { assert_traceability().await; self.inner.put_multipart_opts(location, opts).await --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org For additional commands, e-mail: commits-h...@datafusion.apache.org