controlant-org / ctrl-cidr

A tiny controller that manages CIDR blocks in AWS
MIT License
1 stars 0 forks source link

Bump the aws group with 6 updates #147

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps the aws group with 6 updates:

Package From To
aws-types 0.56.1 0.100.0
aws-config 0.56.1 0.100.0
aws-sdk-ec2 0.33.1 0.37.0
aws-sdk-eks 0.33.0 0.37.0
aws-sdk-organizations 0.33.0 0.37.0
aws-sdk-sts 0.33.0 0.37.0

Updates aws-types from 0.56.1 to 0.100.0

Commits


Updates aws-config from 0.56.1 to 0.100.0

Commits


Updates aws-sdk-ec2 from 0.33.1 to 0.37.0

Changelog

Sourced from aws-sdk-ec2's changelog.

November 16th, 2023

Breaking Changes:

  • :warning: (smithy-rs#3138, smithy-rs#3148) Upgrade guidance for HTTP Request/Response changes. HTTP request types moved, and a new HTTP response type was added.

  • :warning: (smithy-rs#3100, smithy-rs#3114) An operation output that supports receiving events from stream now provides a new-type wrapping aws_smithy_http::event_stream::receiver::Receiver. The new-type supports the .recv() method whose signature is the same as aws_smithy_http::event_stream::receiver::Receiver::recv.

  • :warning: (smithy-rs#3160) The RequestId trait has moved from the aws-http crate into aws-types.

  • :warning: (smithy-rs#3151) Clients now require a BehaviorVersion to be provided. For most customers, latest is the best choice. This will be enabled automatically if you enable the behavior-version-latest cargo feature on aws-config or on an SDK crate. For customers that wish to pin to a specific behavior major version, it can be set in aws-config or when constructing the service client.

    async fn example() {
        // with aws-config
        let conf = aws_config::defaults(aws_config::BehaviorVersion::v2023_11_09());
    
    // when creating a client
    let client = my_service::Client::from_conf(my_service::Config::builder().behavior_version(..).<other params>.build());
    

    }

  • :warning: (smithy-rs#3189) Remove deprecated error kind type aliases.

  • :warning: (smithy-rs#3191) Unhandled errors have been made opaque to ensure code is written in a future-proof manner. Where previously, you might have:

    match service_error.err() {
        GetStorageError::StorageAccessNotAuthorized(_) => { /* ... */ }
        GetStorageError::Unhandled(unhandled) if unhandled.code() == Some("SomeUnmodeledErrorCode") {
            // unhandled error handling
        }
        _ => { /* ... */ }
    }
    

    It should now look as follows:

    match service_error.err() {
        GetStorageError::StorageAccessNotAuthorized(_) => { /* ... */ }
        err if err.code() == Some("SomeUnmodeledErrorCode") {
            // unhandled error handling
        }
        _ => { /* ... */ }
    }
    

    The Unhandled variant should never be referenced directly.

New this release:

Service Features:

  • aws-sdk-codecatalyst (0.15.0): This release includes updates to the Dev Environment APIs to include an optional vpcConnectionName parameter that supports using Dev Environments with Amazon VPC.
  • aws-sdk-dlm (0.37.0): This release adds support for Amazon Data Lifecycle Manager default policies for EBS snapshots and EBS-backed AMIs.

... (truncated)

Commits


Updates aws-sdk-eks from 0.33.0 to 0.37.0

Changelog

Sourced from aws-sdk-eks's changelog.

November 16th, 2023

Breaking Changes:

  • :warning: (smithy-rs#3138, smithy-rs#3148) Upgrade guidance for HTTP Request/Response changes. HTTP request types moved, and a new HTTP response type was added.

  • :warning: (smithy-rs#3100, smithy-rs#3114) An operation output that supports receiving events from stream now provides a new-type wrapping aws_smithy_http::event_stream::receiver::Receiver. The new-type supports the .recv() method whose signature is the same as aws_smithy_http::event_stream::receiver::Receiver::recv.

  • :warning: (smithy-rs#3160) The RequestId trait has moved from the aws-http crate into aws-types.

  • :warning: (smithy-rs#3151) Clients now require a BehaviorVersion to be provided. For most customers, latest is the best choice. This will be enabled automatically if you enable the behavior-version-latest cargo feature on aws-config or on an SDK crate. For customers that wish to pin to a specific behavior major version, it can be set in aws-config or when constructing the service client.

    async fn example() {
        // with aws-config
        let conf = aws_config::defaults(aws_config::BehaviorVersion::v2023_11_09());
    
    // when creating a client
    let client = my_service::Client::from_conf(my_service::Config::builder().behavior_version(..).<other params>.build());
    

    }

  • :warning: (smithy-rs#3189) Remove deprecated error kind type aliases.

  • :warning: (smithy-rs#3191) Unhandled errors have been made opaque to ensure code is written in a future-proof manner. Where previously, you might have:

    match service_error.err() {
        GetStorageError::StorageAccessNotAuthorized(_) => { /* ... */ }
        GetStorageError::Unhandled(unhandled) if unhandled.code() == Some("SomeUnmodeledErrorCode") {
            // unhandled error handling
        }
        _ => { /* ... */ }
    }
    

    It should now look as follows:

    match service_error.err() {
        GetStorageError::StorageAccessNotAuthorized(_) => { /* ... */ }
        err if err.code() == Some("SomeUnmodeledErrorCode") {
            // unhandled error handling
        }
        _ => { /* ... */ }
    }
    

    The Unhandled variant should never be referenced directly.

New this release:

Service Features:

  • aws-sdk-codecatalyst (0.15.0): This release includes updates to the Dev Environment APIs to include an optional vpcConnectionName parameter that supports using Dev Environments with Amazon VPC.
  • aws-sdk-dlm (0.37.0): This release adds support for Amazon Data Lifecycle Manager default policies for EBS snapshots and EBS-backed AMIs.

... (truncated)

Commits


Updates aws-sdk-organizations from 0.33.0 to 0.37.0

Changelog

Sourced from aws-sdk-organizations's changelog.

November 16th, 2023

Breaking Changes:

  • :warning: (smithy-rs#3138, smithy-rs#3148) Upgrade guidance for HTTP Request/Response changes. HTTP request types moved, and a new HTTP response type was added.

  • :warning: (smithy-rs#3100, smithy-rs#3114) An operation output that supports receiving events from stream now provides a new-type wrapping aws_smithy_http::event_stream::receiver::Receiver. The new-type supports the .recv() method whose signature is the same as aws_smithy_http::event_stream::receiver::Receiver::recv.

  • :warning: (smithy-rs#3160) The RequestId trait has moved from the aws-http crate into aws-types.

  • :warning: (smithy-rs#3151) Clients now require a BehaviorVersion to be provided. For most customers, latest is the best choice. This will be enabled automatically if you enable the behavior-version-latest cargo feature on aws-config or on an SDK crate. For customers that wish to pin to a specific behavior major version, it can be set in aws-config or when constructing the service client.

    async fn example() {
        // with aws-config
        let conf = aws_config::defaults(aws_config::BehaviorVersion::v2023_11_09());
    
    // when creating a client
    let client = my_service::Client::from_conf(my_service::Config::builder().behavior_version(..).<other params>.build());
    

    }

  • :warning: (smithy-rs#3189) Remove deprecated error kind type aliases.

  • :warning: (smithy-rs#3191) Unhandled errors have been made opaque to ensure code is written in a future-proof manner. Where previously, you might have:

    match service_error.err() {
        GetStorageError::StorageAccessNotAuthorized(_) => { /* ... */ }
        GetStorageError::Unhandled(unhandled) if unhandled.code() == Some("SomeUnmodeledErrorCode") {
            // unhandled error handling
        }
        _ => { /* ... */ }
    }
    

    It should now look as follows:

    match service_error.err() {
        GetStorageError::StorageAccessNotAuthorized(_) => { /* ... */ }
        err if err.code() == Some("SomeUnmodeledErrorCode") {
            // unhandled error handling
        }
        _ => { /* ... */ }
    }
    

    The Unhandled variant should never be referenced directly.

New this release:

Service Features:

  • aws-sdk-codecatalyst (0.15.0): This release includes updates to the Dev Environment APIs to include an optional vpcConnectionName parameter that supports using Dev Environments with Amazon VPC.
  • aws-sdk-dlm (0.37.0): This release adds support for Amazon Data Lifecycle Manager default policies for EBS snapshots and EBS-backed AMIs.

... (truncated)

Commits


Updates aws-sdk-sts from 0.33.0 to 0.37.0

Changelog

Sourced from aws-sdk-sts's changelog.

November 16th, 2023

Breaking Changes:

  • :warning: (smithy-rs#3138, smithy-rs#3148) Upgrade guidance for HTTP Request/Response changes. HTTP request types moved, and a new HTTP response type was added.

  • :warning: (smithy-rs#3100, smithy-rs#3114) An operation output that supports receiving events from stream now provides a new-type wrapping aws_smithy_http::event_stream::receiver::Receiver. The new-type supports the .recv() method whose signature is the same as aws_smithy_http::event_stream::receiver::Receiver::recv.

  • :warning: (smithy-rs#3160) The RequestId trait has moved from the aws-http crate into aws-types.

  • :warning: (smithy-rs#3151) Clients now require a BehaviorVersion to be provided. For most customers, latest is the best choice. This will be enabled automatically if you enable the behavior-version-latest cargo feature on aws-config or on an SDK crate. For customers that wish to pin to a specific behavior major version, it can be set in aws-config or when constructing the service client.

    async fn example() {
        // with aws-config
        let conf = aws_config::defaults(aws_config::BehaviorVersion::v2023_11_09());
    
    // when creating a client
    let client = my_service::Client::from_conf(my_service::Config::builder().behavior_version(..).<other params>.build());
    

    }

  • :warning: (smithy-rs#3189) Remove deprecated error kind type aliases.

  • :warning: (smithy-rs#3191) Unhandled errors have been made opaque to ensure code is written in a future-proof manner. Where previously, you might have:

    match service_error.err() {
        GetStorageError::StorageAccessNotAuthorized(_) => { /* ... */ }
        GetStorageError::Unhandled(unhandled) if unhandled.code() == Some("SomeUnmodeledErrorCode") {
            // unhandled error handling
        }
        _ => { /* ... */ }
    }
    

    It should now look as follows:

    match service_error.err() {
        GetStorageError::StorageAccessNotAuthorized(_) => { /* ... */ }
        err if err.code() == Some("SomeUnmodeledErrorCode") {
            // unhandled error handling
        }
        _ => { /* ... */ }
    }
    

    The Unhandled variant should never be referenced directly.

New this release:

Service Features:

  • aws-sdk-codecatalyst (0.15.0): This release includes updates to the Dev Environment APIs to include an optional vpcConnectionName parameter that supports using Dev Environments with Amazon VPC.
  • aws-sdk-dlm (0.37.0): This release adds support for Amazon Data Lifecycle Manager default policies for EBS snapshots and EBS-backed AMIs.

... (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 major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 11 months ago

Looks like these dependencies are up-to-date now, so this is no longer needed.