From f11d21994433d470a0fc75638f323bd156cfcabf Mon Sep 17 00:00:00 2001 From: Thomas Farr Date: Tue, 21 Nov 2023 09:49:13 +1300 Subject: [PATCH 1/2] Correctly bound `aws-*` dependency versions Signed-off-by: Thomas Farr --- opensearch/Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/opensearch/Cargo.toml b/opensearch/Cargo.toml index 3fdf8a3b..a70dbd99 100644 --- a/opensearch/Cargo.toml +++ b/opensearch/Cargo.toml @@ -40,15 +40,15 @@ serde = { version = "1", features = ["derive"] } serde_json = "1" serde_with = "3" void = "1.0.2" -aws-credential-types = { version = ">= 0.57", optional = true } -aws-sigv4 = { version = ">= 0.57", optional = true } -aws-smithy-runtime-api = { version = ">= 0.57", optional = true, features = ["client"]} -aws-types = { version = ">= 0.57", optional = true } +aws-credential-types = { version = ">= 0.57, <1.0", optional = true } +aws-sigv4 = { version = ">= 0.57, <1.0", optional = true } +aws-smithy-runtime-api = { version = ">= 0.57, <1.0", optional = true, features = ["client"]} +aws-types = { version = ">= 0.57, <1.0", optional = true } [dev-dependencies] anyhow = "1.0" -aws-config = ">= 0.57" -aws-smithy-async = ">= 0.57" +aws-config = ">= 0.57, <1.0" +aws-smithy-async = ">= 0.57, <1.0" chrono = { version = "0.4", features = ["serde"] } clap = "2" futures = "0.3.1" From b1e21e3240f74bb1010169fca9351c8a7185e738 Mon Sep 17 00:00:00 2001 From: Thomas Farr Date: Tue, 21 Nov 2023 09:53:04 +1300 Subject: [PATCH 2/2] Changelog entry Signed-off-by: Thomas Farr --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d48b4e97..7449a57c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### Added ### Dependencies +- Bound `aws-*` dependencies to `<1.0` ([#215](https://github.com/opensearch-project/opensearch-rs/pull/215)) ### Changed