Skip to content

Commit d4d5bfd

Browse files
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](apache/arrow-rs-object-store@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] <[email protected]> * fix: deprecation warning --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marco Neumann <[email protected]>
1 parent 01234eb commit d4d5bfd

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ hex = { version = "0.4.3" }
154154
indexmap = "2.10.0"
155155
itertools = "0.14"
156156
log = "^0.4"
157-
object_store = { version = "0.12.2", default-features = false }
157+
object_store = { version = "0.12.3", default-features = false }
158158
parking_lot = "0.12"
159159
parquet = { version = "55.2.0", default-features = false, features = [
160160
"arrow",

datafusion/core/src/datasource/file_format/csv.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ mod tests {
6464
use object_store::path::Path;
6565
use object_store::{
6666
Attributes, GetOptions, GetResult, GetResultPayload, ListResult, MultipartUpload,
67-
ObjectMeta, ObjectStore, PutMultipartOpts, PutOptions, PutPayload, PutResult,
67+
ObjectMeta, ObjectStore, PutMultipartOptions, PutOptions, PutPayload, PutResult,
6868
};
6969
use regex::Regex;
7070
use rstest::*;
@@ -98,7 +98,7 @@ mod tests {
9898
async fn put_multipart_opts(
9999
&self,
100100
_location: &Path,
101-
_opts: PutMultipartOpts,
101+
_opts: PutMultipartOptions,
102102
) -> object_store::Result<Box<dyn MultipartUpload>> {
103103
unimplemented!()
104104
}

datafusion/core/src/datasource/file_format/parquet.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ mod tests {
158158
use object_store::ObjectMeta;
159159
use object_store::{
160160
path::Path, GetOptions, GetResult, ListResult, MultipartUpload, ObjectStore,
161-
PutMultipartOpts, PutOptions, PutPayload, PutResult,
161+
PutMultipartOptions, PutOptions, PutPayload, PutResult,
162162
};
163163
use parquet::arrow::arrow_reader::ArrowReaderOptions;
164164
use parquet::arrow::ParquetRecordBatchStreamBuilder;
@@ -311,7 +311,7 @@ mod tests {
311311
async fn put_multipart_opts(
312312
&self,
313313
_location: &Path,
314-
_opts: PutMultipartOpts,
314+
_opts: PutMultipartOptions,
315315
) -> object_store::Result<Box<dyn MultipartUpload>> {
316316
Err(object_store::Error::NotImplemented)
317317
}

datafusion/core/src/test/object_store.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ use futures::stream::BoxStream;
2424
use futures::FutureExt;
2525
use object_store::{
2626
memory::InMemory, path::Path, Error, GetOptions, GetResult, ListResult,
27-
MultipartUpload, ObjectMeta, ObjectStore, PutMultipartOpts, PutOptions, PutPayload,
28-
PutResult,
27+
MultipartUpload, ObjectMeta, ObjectStore, PutMultipartOptions, PutOptions,
28+
PutPayload, PutResult,
2929
};
3030
use std::fmt::{Debug, Display, Formatter};
3131
use std::sync::Arc;
@@ -118,7 +118,7 @@ impl ObjectStore for BlockingObjectStore {
118118
async fn put_multipart_opts(
119119
&self,
120120
location: &Path,
121-
opts: PutMultipartOpts,
121+
opts: PutMultipartOptions,
122122
) -> object_store::Result<Box<dyn MultipartUpload>> {
123123
self.inner.put_multipart_opts(location, opts).await
124124
}

datafusion/core/tests/sql/path_partition.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ use object_store::{
5050
path::Path, GetOptions, GetResult, GetResultPayload, ListResult, ObjectMeta,
5151
ObjectStore, PutOptions, PutResult,
5252
};
53-
use object_store::{Attributes, MultipartUpload, PutMultipartOpts, PutPayload};
53+
use object_store::{Attributes, MultipartUpload, PutMultipartOptions, PutPayload};
5454
use url::Url;
5555

5656
#[tokio::test]
@@ -645,7 +645,7 @@ impl ObjectStore for MirroringObjectStore {
645645
async fn put_multipart_opts(
646646
&self,
647647
_location: &Path,
648-
_opts: PutMultipartOpts,
648+
_opts: PutMultipartOptions,
649649
) -> object_store::Result<Box<dyn MultipartUpload>> {
650650
unimplemented!()
651651
}

datafusion/core/tests/tracing/traceable_object_store.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use crate::tracing::asserting_tracer::assert_traceability;
2121
use futures::stream::BoxStream;
2222
use object_store::{
2323
path::Path, GetOptions, GetResult, ListResult, MultipartUpload, ObjectMeta,
24-
ObjectStore, PutMultipartOpts, PutOptions, PutPayload, PutResult,
24+
ObjectStore, PutMultipartOptions, PutOptions, PutPayload, PutResult,
2525
};
2626
use std::fmt::{Debug, Display, Formatter};
2727
use std::sync::Arc;
@@ -68,7 +68,7 @@ impl ObjectStore for TraceableObjectStore {
6868
async fn put_multipart_opts(
6969
&self,
7070
location: &Path,
71-
opts: PutMultipartOpts,
71+
opts: PutMultipartOptions,
7272
) -> object_store::Result<Box<dyn MultipartUpload>> {
7373
assert_traceability().await;
7474
self.inner.put_multipart_opts(location, opts).await

0 commit comments

Comments
 (0)