Skip to content

Commit c15bda0

Browse files
aws-sdk-rust-ciZelda Hesslerdavid-perez
committed
[smithy-rs] Rollup of 2 commits
Includes commits: eb482614 `codegen-serde`: traverse operations of resources (#3882) c8c610f1 Add RDS URL signer (#3867) Co-authored-by: Zelda Hessler <[email protected]> Co-authored-by: david-perez <[email protected]>
1 parent c1c70e9 commit c15bda0

File tree

18 files changed

+361
-31
lines changed

18 files changed

+361
-31
lines changed

sdk/aws-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ version = "1.2.1"
3838
[dependencies.aws-sigv4]
3939
path = "../aws-sigv4"
4040
features = ["http0-compat"]
41-
version = "1.2.4"
41+
version = "1.2.5"
4242

4343
[dependencies.aws-smithy-async]
4444
path = "../aws-smithy-async"

sdk/aws-sigv4/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ required-features = ["sigv4a"]
1010

1111
[package]
1212
name = "aws-sigv4"
13-
version = "1.2.4"
13+
version = "1.2.5"
1414
authors = ["AWS Rust SDK Team <[email protected]>", "David Barsky <[email protected]>"]
1515
description = "SigV4 signer for HTTP requests and Event Stream messages."
1616
edition = "2021"

sdk/aws-sigv4/src/http_request/sign.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,13 @@ pub enum SignableBody<'a> {
9393
StreamingUnsignedPayloadTrailer,
9494
}
9595

96+
impl SignableBody<'_> {
97+
/// Create a new empty signable body
98+
pub fn empty() -> SignableBody<'static> {
99+
SignableBody::Bytes(&[])
100+
}
101+
}
102+
96103
/// Instructions for applying a signature to an HTTP request.
97104
#[derive(Debug)]
98105
pub struct SigningInstructions {

sdk/aws-smithy-checksums/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
22
[package]
33
name = "aws-smithy-checksums"
4-
version = "0.60.12"
4+
version = "0.60.13"
55
authors = ["AWS Rust SDK Team <[email protected]>", "Zelda Hessler <[email protected]>"]
66
description = "Checksum calculation and verification callbacks"
77
edition = "2021"

sdk/ebs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ version = "1.4.3"
2424

2525
[dependencies.aws-sigv4]
2626
path = "../aws-sigv4"
27-
version = "1.2.4"
27+
version = "1.2.5"
2828

2929
[dependencies.aws-smithy-async]
3030
path = "../aws-smithy-async"

sdk/glacier/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ version = "1.4.3"
2424

2525
[dependencies.aws-sigv4]
2626
path = "../aws-sigv4"
27-
version = "1.2.4"
27+
version = "1.2.5"
2828

2929
[dependencies.aws-smithy-async]
3030
path = "../aws-smithy-async"

sdk/lexruntime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ version = "1.4.3"
2424

2525
[dependencies.aws-sigv4]
2626
path = "../aws-sigv4"
27-
version = "1.2.4"
27+
version = "1.2.5"
2828

2929
[dependencies.aws-smithy-async]
3030
path = "../aws-smithy-async"

sdk/lexruntimev2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ version = "1.4.3"
2525

2626
[dependencies.aws-sigv4]
2727
path = "../aws-sigv4"
28-
version = "1.2.4"
28+
version = "1.2.5"
2929

3030
[dependencies.aws-smithy-async]
3131
path = "../aws-smithy-async"

sdk/mediastoredata/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ version = "1.4.3"
2424

2525
[dependencies.aws-sigv4]
2626
path = "../aws-sigv4"
27-
version = "1.2.4"
27+
version = "1.2.5"
2828

2929
[dependencies.aws-smithy-async]
3030
path = "../aws-smithy-async"

sdk/omics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ version = "1.4.3"
2424

2525
[dependencies.aws-sigv4]
2626
path = "../aws-sigv4"
27-
version = "1.2.4"
27+
version = "1.2.5"
2828

2929
[dependencies.aws-smithy-async]
3030
path = "../aws-smithy-async"

0 commit comments

Comments
 (0)