ava-labs / avalanche-ops

operation toolkit for Avalanche nodes
Other
38 stars 18 forks source link

Update aws-sdk-cloudwatch requirement from 0.30.0 to 0.36.0 #504

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Updates the requirements on aws-sdk-cloudwatch to permit the latest version.

Changelog

Sourced from aws-sdk-cloudwatch's changelog.

November 15th, 2023

New this release:

  • :tada: (smithy-rs#3173, smithy-rs#3171) Enable conversion from BuildError into SdkError & <service>::Error. This allows customers to write the following code:

    async fn create_table(dynamo_client: &Client) -> Result<(), SdkError<CreateTableError>> {
        dynamo_client
            .create_table()
            .table_name("test")
            .key_schema(
                KeySchemaElement::builder()
                    .attribute_name("year")
                    .key_type(KeyType::Hash)
                    .build()?, // Previously, `?` could not be used here
            )
            .send()
            .await?;
        Ok(())
    }
    

    Previously, ? could not be used in this position.

  • :bug: (smithy-rs#3126, aws-sdk-rust#930) Fix aws-sdk-rust#930 (PutSnapshotBlock)

  • :bug: (smithy-rs#3156, aws-sdk-rust#901) Fix exclusively setting the credentials provider at operation config-override time. It's now possible to set the credentials when an operation is sent (via .config_override()), rather than at client-creation time.

  • (smithy-rs#3173, smithy-rs#3155) ProvideCredentials and SharedCredentialsProvider are now re-exported.

Crate Versions

Crate Version
aws-config 0.57.2
aws-credential-types 0.57.2
aws-endpoint 0.57.2
aws-http 0.57.2
aws-hyper 0.57.2
aws-runtime 0.57.2
aws-runtime-api 0.57.2
aws-sdk-accessanalyzer 0.36.0
aws-sdk-account 0.36.0
aws-sdk-acm 0.36.0
aws-sdk-acmpca 0.36.0
aws-sdk-alexaforbusiness 0.36.0
aws-sdk-amp 0.36.0
aws-sdk-amplify 0.36.0
aws-sdk-amplifybackend 0.36.0
aws-sdk-amplifyuibuilder 0.36.0
aws-sdk-apigateway 0.36.0

... (truncated)

Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 11 months ago

Superseded by #513.