From 0ecde75af504c57ac3ee94b8a201aed1f823add8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Feb 2023 09:40:11 +0000 Subject: [PATCH] chore(deps): Bump object_store from 0.5.3 to 0.5.4 (#6900) Bumps [object_store](https://github.com/apache/arrow-rs) from 0.5.3 to 0.5.4. - [Release notes](https://github.com/apache/arrow-rs/releases) - [Changelog](https://github.com/apache/arrow-rs/blob/master/CHANGELOG-old.md) - [Commits](https://github.com/apache/arrow-rs/compare/object_store_0.5.3...object_store_0.5.4) --- updated-dependencies: - dependency-name: object_store dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- Cargo.lock | 12 +++--------- clap_blocks/Cargo.toml | 2 +- compactor/Cargo.toml | 2 +- compactor2/Cargo.toml | 2 +- garbage_collector/Cargo.toml | 2 +- import/Cargo.toml | 2 +- influxdb_iox/Cargo.toml | 2 +- ingester/Cargo.toml | 2 +- ingester2/Cargo.toml | 2 +- iox_query/Cargo.toml | 2 +- iox_tests/Cargo.toml | 2 +- ioxd_compactor/Cargo.toml | 2 +- ioxd_ingester/Cargo.toml | 2 +- ioxd_querier/Cargo.toml | 2 +- ioxd_router/Cargo.toml | 2 +- object_store_metrics/Cargo.toml | 2 +- parquet_file/Cargo.toml | 2 +- parquet_to_line_protocol/Cargo.toml | 2 +- querier/Cargo.toml | 2 +- router/Cargo.toml | 2 +- service_grpc_object_store/Cargo.toml | 2 +- 21 files changed, 23 insertions(+), 29 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 85e1c8b0d9..112dfd8c23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -549,12 +549,6 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" -[[package]] -name = "base64" -version = "0.20.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5" - [[package]] name = "base64" version = "0.21.0" @@ -3794,12 +3788,12 @@ dependencies = [ [[package]] name = "object_store" -version = "0.5.3" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4201837dc4c27a8670f0363b1255cd3845a4f0c521211cced1ed14c1d0cc6d2" +checksum = "1f344e51ec9584d2f51199c0c29c6f73dddd04ade986497875bf8fa2f178caf0" dependencies = [ "async-trait", - "base64 0.20.0", + "base64 0.21.0", "bytes", "chrono", "futures", diff --git a/clap_blocks/Cargo.toml b/clap_blocks/Cargo.toml index 38995bf1bd..748c7a8a6e 100644 --- a/clap_blocks/Cargo.toml +++ b/clap_blocks/Cargo.toml @@ -14,7 +14,7 @@ humantime = "2.1.0" iox_catalog = { path = "../iox_catalog" } iox_time = { path = "../iox_time" } metric = { path = "../metric" } -object_store = "0.5.2" +object_store = "0.5.4" observability_deps = { path = "../observability_deps" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.92" diff --git a/compactor/Cargo.toml b/compactor/Cargo.toml index 9e18a3a9dc..83bf325632 100644 --- a/compactor/Cargo.toml +++ b/compactor/Cargo.toml @@ -18,7 +18,7 @@ iox_catalog = { path = "../iox_catalog" } iox_query = { path = "../iox_query" } iox_time = { path = "../iox_time" } metric = { path = "../metric" } -object_store = "0.5.2" +object_store = "0.5.4" observability_deps = { path = "../observability_deps" } parquet_file = { path = "../parquet_file" } predicate = { path = "../predicate" } diff --git a/compactor2/Cargo.toml b/compactor2/Cargo.toml index 2b378dc54c..d45fd761e0 100644 --- a/compactor2/Cargo.toml +++ b/compactor2/Cargo.toml @@ -16,7 +16,7 @@ iox_catalog = { path = "../iox_catalog" } iox_query = { path = "../iox_query" } iox_time = { path = "../iox_time" } metric = { path = "../metric" } -object_store = "0.5.2" +object_store = "0.5.4" observability_deps = { path = "../observability_deps" } parquet_file = { path = "../parquet_file" } predicate = { path = "../predicate" } diff --git a/garbage_collector/Cargo.toml b/garbage_collector/Cargo.toml index f116bf1d46..6f554daa1e 100644 --- a/garbage_collector/Cargo.toml +++ b/garbage_collector/Cargo.toml @@ -14,7 +14,7 @@ data_types = { path = "../data_types" } futures = "0.3" humantime = "2.1.0" iox_catalog = { path = "../iox_catalog" } -object_store = { version = "0.5.2" } +object_store = { version = "0.5.4" } observability_deps = { path = "../observability_deps" } snafu = "0.7" tokio = { version = "1", features = ["macros", "rt", "sync"] } diff --git a/import/Cargo.toml b/import/Cargo.toml index 78923a9184..5123dcb739 100644 --- a/import/Cargo.toml +++ b/import/Cargo.toml @@ -13,7 +13,7 @@ futures = "0.3" generated_types = { path = "../generated_types" } influxdb_iox_client = { path = "../influxdb_iox_client" } iox_catalog = { path = "../iox_catalog" } -object_store = { version = "0.5.2", features = ["aws"] } +object_store = { version = "0.5.4", features = ["aws"] } observability_deps = { path = "../observability_deps" } schema = { path = "../schema" } serde = { version = "1.0", features = ["derive"] } diff --git a/influxdb_iox/Cargo.toml b/influxdb_iox/Cargo.toml index 21dfffe079..2d5bd64d05 100644 --- a/influxdb_iox/Cargo.toml +++ b/influxdb_iox/Cargo.toml @@ -30,7 +30,7 @@ ioxd_querier = { path = "../ioxd_querier"} ioxd_router = { path = "../ioxd_router"} ioxd_test = { path = "../ioxd_test"} metric = { path = "../metric" } -object_store = "0.5.2" +object_store = "0.5.4" object_store_metrics = { path = "../object_store_metrics" } observability_deps = { path = "../observability_deps" } panic_logging = { path = "../panic_logging" } diff --git a/ingester/Cargo.toml b/ingester/Cargo.toml index f5782fcec4..4eab82f27b 100644 --- a/ingester/Cargo.toml +++ b/ingester/Cargo.toml @@ -28,7 +28,7 @@ iox_time = { path = "../iox_time" } metric = { path = "../metric" } mutable_batch = { path = "../mutable_batch"} mutable_batch_lp = { path = "../mutable_batch_lp" } -object_store = "0.5.2" +object_store = "0.5.4" observability_deps = { path = "../observability_deps" } once_cell = "1" parking_lot = "0.12" diff --git a/ingester2/Cargo.toml b/ingester2/Cargo.toml index 49d0bd19ce..69daa9b8d6 100644 --- a/ingester2/Cargo.toml +++ b/ingester2/Cargo.toml @@ -28,7 +28,7 @@ iox_time = { path = "../iox_time" } metric = { version = "0.1.0", path = "../metric" } mutable_batch = { version = "0.1.0", path = "../mutable_batch" } mutable_batch_pb = { version = "0.1.0", path = "../mutable_batch_pb" } -object_store = "0.5.2" +object_store = "0.5.4" observability_deps = { version = "0.1.0", path = "../observability_deps" } once_cell = "1.17" parking_lot = "0.12.1" diff --git a/iox_query/Cargo.toml b/iox_query/Cargo.toml index 3189bebc71..25063faa5a 100644 --- a/iox_query/Cargo.toml +++ b/iox_query/Cargo.toml @@ -29,7 +29,7 @@ hashbrown = { workspace = true } influxdb_influxql_parser = { path = "../influxdb_influxql_parser" } itertools = "0.10.5" once_cell = "1" -object_store = "0.5.2" +object_store = "0.5.4" observability_deps = { path = "../observability_deps" } parking_lot = "0.12" parquet_file = { path = "../parquet_file" } diff --git a/iox_tests/Cargo.toml b/iox_tests/Cargo.toml index 0cad50a89e..2f38b30eb7 100644 --- a/iox_tests/Cargo.toml +++ b/iox_tests/Cargo.toml @@ -16,7 +16,7 @@ iox_catalog = { path = "../iox_catalog" } iox_time = { path = "../iox_time" } metric = { path = "../metric" } mutable_batch_lp = { path = "../mutable_batch_lp" } -object_store = "0.5.2" +object_store = "0.5.4" observability_deps = { path = "../observability_deps" } once_cell = { version = "1.17", features = ["parking_lot"] } parquet_file = { path = "../parquet_file" } diff --git a/ioxd_compactor/Cargo.toml b/ioxd_compactor/Cargo.toml index 75d60a4728..15b64d0bd2 100644 --- a/ioxd_compactor/Cargo.toml +++ b/ioxd_compactor/Cargo.toml @@ -15,7 +15,7 @@ iox_catalog = { path = "../iox_catalog" } ioxd_common = { path = "../ioxd_common" } metric = { path = "../metric" } iox_query = { path = "../iox_query" } -object_store = "0.5.2" +object_store = "0.5.4" iox_time = { path = "../iox_time" } trace = { path = "../trace" } diff --git a/ioxd_ingester/Cargo.toml b/ioxd_ingester/Cargo.toml index c7fbfcf216..0d9777890d 100644 --- a/ioxd_ingester/Cargo.toml +++ b/ioxd_ingester/Cargo.toml @@ -13,7 +13,7 @@ ingester = { path = "../ingester" } iox_catalog = { path = "../iox_catalog" } ioxd_common = { path = "../ioxd_common" } metric = { path = "../metric" } -object_store = "0.5.2" +object_store = "0.5.4" iox_query = { path = "../iox_query" } trace = { path = "../trace" } write_buffer = { path = "../write_buffer" } diff --git a/ioxd_querier/Cargo.toml b/ioxd_querier/Cargo.toml index e4e61680ff..76ddc11c14 100644 --- a/ioxd_querier/Cargo.toml +++ b/ioxd_querier/Cargo.toml @@ -13,7 +13,7 @@ generated_types = { path = "../generated_types" } iox_catalog = { path = "../iox_catalog" } ioxd_common = { path = "../ioxd_common" } metric = { path = "../metric" } -object_store = "0.5.2" +object_store = "0.5.4" querier = { path = "../querier" } iox_query = { path = "../iox_query" } router = { path = "../router" } diff --git a/ioxd_router/Cargo.toml b/ioxd_router/Cargo.toml index a150091712..0778e36127 100644 --- a/ioxd_router/Cargo.toml +++ b/ioxd_router/Cargo.toml @@ -13,7 +13,7 @@ iox_catalog = { path = "../iox_catalog" } ioxd_common = { path = "../ioxd_common" } metric = { path = "../metric" } mutable_batch = { path = "../mutable_batch" } -object_store = "0.5.2" +object_store = "0.5.4" observability_deps = { path = "../observability_deps" } router = { path = "../router" } sharder = { path = "../sharder" } diff --git a/object_store_metrics/Cargo.toml b/object_store_metrics/Cargo.toml index a250b090da..7c1083bb85 100644 --- a/object_store_metrics/Cargo.toml +++ b/object_store_metrics/Cargo.toml @@ -11,7 +11,7 @@ bytes = "1.4" futures = "0.3" iox_time = { version = "0.1.0", path = "../iox_time" } metric = { version = "0.1.0", path = "../metric" } -object_store = "0.5.2" +object_store = "0.5.4" pin-project = "1.0.12" tokio = { version = "1.25", features = ["io-util"] } workspace-hack = { path = "../workspace-hack" } diff --git a/parquet_file/Cargo.toml b/parquet_file/Cargo.toml index f882ea41f6..c4ef9e513e 100644 --- a/parquet_file/Cargo.toml +++ b/parquet_file/Cargo.toml @@ -15,7 +15,7 @@ datafusion_util = { path = "../datafusion_util" } futures = "0.3" generated_types = { path = "../generated_types" } iox_time = { path = "../iox_time" } -object_store = "0.5.2" +object_store = "0.5.4" observability_deps = { path = "../observability_deps" } parking_lot = "0.12" parquet = { workspace = true, features = ["experimental"]} diff --git a/parquet_to_line_protocol/Cargo.toml b/parquet_to_line_protocol/Cargo.toml index 56d4e62aa2..3938c740b7 100644 --- a/parquet_to_line_protocol/Cargo.toml +++ b/parquet_to_line_protocol/Cargo.toml @@ -11,7 +11,7 @@ datafusion_util = { path = "../datafusion_util" } influxdb_line_protocol = { path = "../influxdb_line_protocol" } futures = {version = "0.3"} num_cpus = "1.15.0" -object_store = { version = "0.5.2" } +object_store = { version = "0.5.4" } parquet_file = { path = "../parquet_file" } schema = { path = "../schema" } tokio = "1.25" diff --git a/querier/Cargo.toml b/querier/Cargo.toml index cb9787764b..010f82831a 100644 --- a/querier/Cargo.toml +++ b/querier/Cargo.toml @@ -23,7 +23,7 @@ iox_catalog = { path = "../iox_catalog" } iox_query = { path = "../iox_query" } iox_time = { path = "../iox_time" } metric = { path = "../metric" } -object_store = "0.5.2" +object_store = "0.5.4" observability_deps = { path = "../observability_deps" } parking_lot = "0.12" parquet_file = { path = "../parquet_file" } diff --git a/router/Cargo.toml b/router/Cargo.toml index e14ec2b8d6..46726afe18 100644 --- a/router/Cargo.toml +++ b/router/Cargo.toml @@ -22,7 +22,7 @@ metric = { path = "../metric" } mutable_batch = { path = "../mutable_batch" } mutable_batch_lp = { path = "../mutable_batch_lp" } mutable_batch_pb = { version = "0.1.0", path = "../mutable_batch_pb" } -object_store = "0.5.2" +object_store = "0.5.4" observability_deps = { path = "../observability_deps" } parking_lot = "0.12" predicate = { path = "../predicate" } diff --git a/service_grpc_object_store/Cargo.toml b/service_grpc_object_store/Cargo.toml index e067a0609a..b130acef69 100644 --- a/service_grpc_object_store/Cargo.toml +++ b/service_grpc_object_store/Cargo.toml @@ -10,7 +10,7 @@ data_types = { path = "../data_types" } futures = "0.3" generated_types = { path = "../generated_types" } iox_catalog = { path = "../iox_catalog" } -object_store = "0.5.2" +object_store = "0.5.4" observability_deps = { path = "../observability_deps" } parquet_file = { path = "../parquet_file" } tokio = { version = "1", features = ["rt-multi-thread", "macros"] }