Loading aws/rust-runtime/aws-config/Cargo.toml +1 −1 Original line number Diff line number Diff line [package] name = "aws-config" version = "1.6.2" version = "1.6.3" authors = [ "AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Russell Cohen <rcoh@amazon.com>", Loading aws/rust-runtime/aws-config/src/meta/credentials/chain.rs +2 −3 Original line number Diff line number Diff line Loading @@ -123,9 +123,8 @@ impl ProvideCredentials for CredentialsProviderChain { fn fallback_on_interrupt(&self) -> Option<Credentials> { for (_, provider) in &self.providers { match provider.fallback_on_interrupt() { creds @ Some(_) => return creds, None => {} if let creds @ Some(_) = provider.fallback_on_interrupt() { return creds; } } None Loading aws/rust-runtime/aws-sigv4/Cargo.toml +1 −1 Original line number Diff line number Diff line [package] name = "aws-sigv4" version = "1.3.1" version = "1.3.2" authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "David Barsky <me@davidbarsky.com>"] description = "SigV4 signer for HTTP requests and Event Stream messages." edition = "2021" Loading aws/rust-runtime/aws-sigv4/src/http_request/canonical_request.rs +7 −0 Original line number Diff line number Diff line Loading @@ -101,6 +101,13 @@ impl<'a> SignatureValues<'a> { } } #[allow(clippy::result_large_err)] /* QueryParams(QueryParamValues<'a>), --------------------------------- the largest variant contains at least 192 bytes Suppressing the Clippy warning, as the variant above is always returned wrapped in `Ok`. */ pub(crate) fn into_query_params(self) -> Result<QueryParamValues<'a>, Self> { match self { SignatureValues::QueryParams(values) => Ok(values), Loading codegen-core/src/main/kotlin/software/amazon/smithy/rust/codegen/core/smithy/customizations/AllowLintsCustomization.kt +4 −0 Original line number Diff line number Diff line Loading @@ -57,6 +57,10 @@ private val allowedRustdocLints = // Rustdoc warns about redundant explicit links in doc comments. This is fine for handwritten // crates, but is impractical to manage for code generated crates. Thus, allow it. "redundant_explicit_links", // The documentation directly from the model may contain invalid HTML tags. For instance, // <p><code><bucketloggingstatus xmlns="http://doc.s3.amazonaws.com/2006-03-01" /></code></p> // is considered an invalid self-closing HTML tag `bucketloggingstatus` "invalid_html_tags", ) class AllowLintsCustomization( Loading Loading
aws/rust-runtime/aws-config/Cargo.toml +1 −1 Original line number Diff line number Diff line [package] name = "aws-config" version = "1.6.2" version = "1.6.3" authors = [ "AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Russell Cohen <rcoh@amazon.com>", Loading
aws/rust-runtime/aws-config/src/meta/credentials/chain.rs +2 −3 Original line number Diff line number Diff line Loading @@ -123,9 +123,8 @@ impl ProvideCredentials for CredentialsProviderChain { fn fallback_on_interrupt(&self) -> Option<Credentials> { for (_, provider) in &self.providers { match provider.fallback_on_interrupt() { creds @ Some(_) => return creds, None => {} if let creds @ Some(_) = provider.fallback_on_interrupt() { return creds; } } None Loading
aws/rust-runtime/aws-sigv4/Cargo.toml +1 −1 Original line number Diff line number Diff line [package] name = "aws-sigv4" version = "1.3.1" version = "1.3.2" authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "David Barsky <me@davidbarsky.com>"] description = "SigV4 signer for HTTP requests and Event Stream messages." edition = "2021" Loading
aws/rust-runtime/aws-sigv4/src/http_request/canonical_request.rs +7 −0 Original line number Diff line number Diff line Loading @@ -101,6 +101,13 @@ impl<'a> SignatureValues<'a> { } } #[allow(clippy::result_large_err)] /* QueryParams(QueryParamValues<'a>), --------------------------------- the largest variant contains at least 192 bytes Suppressing the Clippy warning, as the variant above is always returned wrapped in `Ok`. */ pub(crate) fn into_query_params(self) -> Result<QueryParamValues<'a>, Self> { match self { SignatureValues::QueryParams(values) => Ok(values), Loading
codegen-core/src/main/kotlin/software/amazon/smithy/rust/codegen/core/smithy/customizations/AllowLintsCustomization.kt +4 −0 Original line number Diff line number Diff line Loading @@ -57,6 +57,10 @@ private val allowedRustdocLints = // Rustdoc warns about redundant explicit links in doc comments. This is fine for handwritten // crates, but is impractical to manage for code generated crates. Thus, allow it. "redundant_explicit_links", // The documentation directly from the model may contain invalid HTML tags. For instance, // <p><code><bucketloggingstatus xmlns="http://doc.s3.amazonaws.com/2006-03-01" /></code></p> // is considered an invalid self-closing HTML tag `bucketloggingstatus` "invalid_html_tags", ) class AllowLintsCustomization( Loading