Skip to content

Commit 31a4b8e

Browse files
authored
Unpin pinned dependencies (#3712)
## Motivation and Context <!--- Why is this change required? What problem does it solve? --> <!--- If it fixes an open issue, please link to the issue here --> Due to numerous dependency issues over the past few weeks several of our dependencies were pinned to specific minor versions. Now that we have lockfiles for all of our workspaces those pinned versions can be undone. ## Description <!--- Describe your changes in detail --> I unpinned those dependencies and generated new lockfiles after that change. ## Testing <!--- Please describe in detail how you tested your changes --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> I ran the gradle `assemble` and `sdkTest` tasks locally and they both passed. I ran a full set of preview/release e2e tests against this change in my local stack and those all passed. And since we copy the Cargo.lock into the test workspaces the CI run for this PR will also test the changes. ## Checklist <!--- If a checkbox below is not applicable, then please DELETE it rather than leaving it unchecked --> No functional changes, only dependency changes. ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._
1 parent fbde9d8 commit 31a4b8e

File tree

9 files changed

+922
-925
lines changed

9 files changed

+922
-925
lines changed

aws/rust-runtime/Cargo.lock

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

aws/rust-runtime/aws-config/Cargo.lock

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

aws/rust-runtime/aws-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-config"
3-
version = "1.5.3"
3+
version = "1.5.4"
44
authors = [
55
"AWS Rust SDK Team <aws-sdk-rust@amazon.com>",
66
"Russell Cohen <rcoh@amazon.com>",

aws/rust-runtime/aws-sigv4/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-sigv4"
3-
version = "1.2.2"
3+
version = "1.2.3"
44
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "David Barsky <me@davidbarsky.com>"]
55
description = "SigV4 signer for HTTP requests and Event Stream messages."
66
edition = "2021"
@@ -44,7 +44,7 @@ aws-credential-types = { path = "../aws-credential-types", features = ["test-uti
4444
aws-smithy-runtime-api = { path = "../../../rust-runtime/aws-smithy-runtime-api", features = ["client", "test-util"] }
4545
bytes = "1"
4646
hex-literal = "0.4.1"
47-
httparse = "=1.8"
47+
httparse = "1.8"
4848
libfuzzer-sys = "0.4.6"
4949
pretty_assertions = "1.3"
5050
proptest = "1.2"
@@ -65,7 +65,7 @@ harness = false
6565
[[bench]]
6666
name = "sigv4a"
6767
harness = false
68-
required-features = [ "sigv4a" ]
68+
required-features = ["sigv4a"]
6969

7070
[package.metadata.docs.rs]
7171
all-features = true

aws/rust-runtime/aws-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-types"
3-
version = "1.3.2"
3+
version = "1.3.3"
44
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Russell Cohen <rcoh@amazon.com>"]
55
description = "Cross-service types for the AWS SDK."
66
edition = "2021"
@@ -26,7 +26,7 @@ hyper-rustls = { version = "0.24", optional = true, features = ["rustls-native-c
2626
[dev-dependencies]
2727
http = "0.2.4"
2828
tempfile = "3"
29-
tracing-test = "=0.2.5"
29+
tracing-test = "0.2.5"
3030
tokio = { version = "1", features = ["rt", "macros"] }
3131
aws-smithy-runtime-api = { path = "../../../rust-runtime/aws-smithy-runtime-api", features = ["http-02x"] }
3232

0 commit comments

Comments
 (0)