Skip to content

Commit 18c4150

Browse files
aws-sdk-rust-cidrganjooysaito1001
committed
[smithy-rs] Rollup of 4 commits
Includes commits: 7f102063 Bump server crate versions (#4071) 2c963d0f Log actual recorded events on panic in `match_events!` (#4069) d9176809 Update changelog df9b06f6 Synchronize the SDK lockfile Co-authored-by: AWS SDK Rust Bot <[email protected]> Co-authored-by: Fahad Zubair <[email protected]> Co-authored-by: ysaito1001 <[email protected]>
1 parent 395a72d commit 18c4150

File tree

23 files changed

+50
-44
lines changed

23 files changed

+50
-44
lines changed

sdk/aws-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ version = "1.8.1"
133133
[dev-dependencies.aws-smithy-http-client]
134134
path = "../aws-smithy-http-client"
135135
features = ["default-client", "test-util"]
136-
version = "1.0.0"
136+
version = "1.0.1"
137137

138138
[dev-dependencies.aws-smithy-runtime-api]
139139
path = "../aws-smithy-runtime-api"

sdk/aws-smithy-http-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ doc-scrape-examples = true
2323
name = "aws-smithy-http-client"
2424
authors = ["AWS Rust SDK Team <[email protected]>"]
2525
description = "HTTP client abstractions for generated smithy clients"
26-
version = "1.0.0"
26+
version = "1.0.1"
2727
license = "Apache-2.0"
2828
edition = "2021"
2929
repository = "https://github.com/smithy-lang/smithy-rs"

sdk/aws-smithy-http-client/src/test_util/wire.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,12 @@ pub fn check_matches(events: &[RecordedEvent], matchers: &[Matcher]) {
8080
let mut idx = -1;
8181
loop {
8282
idx += 1;
83-
let bail = |err: Box<dyn Error>| panic!("failed on event {}:\n {}", idx, err);
83+
let bail = |err: Box<dyn Error>| {
84+
panic!(
85+
"failed on event {}:\n {}\n actual recorded events: {:?}",
86+
idx, err, events
87+
)
88+
};
8489
match (events_iter.next(), matcher_iter.next()) {
8590
(Some(event), Some((matcher, _msg))) => matcher(event).unwrap_or_else(bail),
8691
(None, None) => return,

sdk/aws-smithy-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ version = "1.3.0"
6161
[dependencies.aws-smithy-http-client]
6262
path = "../aws-smithy-http-client"
6363
optional = true
64-
version = "1.0.0"
64+
version = "1.0.1"
6565

6666
[dependencies.http-02x]
6767
package = "http"

sdk/cloudwatchlogs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ version = "0.60.8"
102102
[dev-dependencies.aws-smithy-http-client]
103103
path = "../aws-smithy-http-client"
104104
features = ["test-util", "wire-mock"]
105-
version = "1.0.0"
105+
version = "1.0.1"
106106

107107
[dev-dependencies.aws-smithy-protocol-test]
108108
path = "../aws-smithy-protocol-test"

sdk/codecatalyst/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ version = "1.2.5"
9191
[dev-dependencies.aws-smithy-http-client]
9292
path = "../aws-smithy-http-client"
9393
features = ["test-util", "wire-mock"]
94-
version = "1.0.0"
94+
version = "1.0.1"
9595

9696
[dev-dependencies.aws-smithy-protocol-test]
9797
path = "../aws-smithy-protocol-test"

sdk/dynamodb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ version = "1.2.5"
9494
[dev-dependencies.aws-smithy-http-client]
9595
path = "../aws-smithy-http-client"
9696
features = ["test-util", "wire-mock"]
97-
version = "1.0.0"
97+
version = "1.0.1"
9898

9999
[dev-dependencies.aws-smithy-protocol-test]
100100
path = "../aws-smithy-protocol-test"

sdk/ec2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ version = "1.2.5"
9696
[dev-dependencies.aws-smithy-http-client]
9797
path = "../aws-smithy-http-client"
9898
features = ["test-util", "wire-mock"]
99-
version = "1.0.0"
99+
version = "1.0.1"
100100

101101
[dev-dependencies.aws-smithy-protocol-test]
102102
path = "../aws-smithy-protocol-test"

sdk/eventbridge/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ version = "1.2.2"
8181
[dev-dependencies.aws-smithy-http-client]
8282
path = "../aws-smithy-http-client"
8383
features = ["test-util"]
84-
version = "1.0.0"
84+
version = "1.0.1"
8585

8686
[dev-dependencies.proptest]
8787
version = "1"

sdk/glacier/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ version = "1.2.5"
105105
[dev-dependencies.aws-smithy-http-client]
106106
path = "../aws-smithy-http-client"
107107
features = ["test-util", "wire-mock"]
108-
version = "1.0.0"
108+
version = "1.0.1"
109109

110110
[dev-dependencies.aws-smithy-protocol-test]
111111
path = "../aws-smithy-protocol-test"

0 commit comments

Comments
 (0)