Unverified Commit e25ed87f authored by Falk Woldmann's avatar Falk Woldmann Committed by GitHub
Browse files

Merge branch 'main' into no_once_cell

parents a3109034 a9aeece2
Loading
Loading
Loading
Loading
+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>",
+2 −3
Original line number Diff line number Diff line
@@ -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
+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"
+7 −0
Original line number Diff line number Diff line
@@ -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),
+4 −0
Original line number Diff line number Diff line
@@ -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(