Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump github.com/aws/aws-sdk-go-v2 from 1.0.0 to 1.1.0 #14881

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 8, 2021

Bumps github.com/aws/aws-sdk-go-v2 from 1.0.0 to 1.1.0.

Release notes

Sourced from github.com/aws/aws-sdk-go-v2's releases.

Release v1.1.0 (2021-01-29)

Service Client Highlights

  • Bug Fix: A serialization bug has been fixed that caused some service operations with empty inputs to not be serialized correctly (#1071)
  • Bug Fix: Fixes a bug that could cause a waiter to fail when comparing types (#1083)

Core SDK Highlights

  • Feature: EndpointResolverFromURL helpers have been added for constructing a service EndpointResolver type (#1066)
  • Dependency Update: Updated SDK dependencies to their latest versions.
  • aws - v1.1.0
    • Feature: Add support for specifying the EndpointSource on aws.Endpoint types (#1070)
  • config - v1.1.0
    • Feature: Add Support for AWS Single Sign-On (SSO) credential provider (#1072)
  • credentials - v1.1.0
    • Feature: Add AWS Single Sign-On (SSO) credential provider (#1072)
Changelog

Sourced from github.com/aws/aws-sdk-go-v2's changelog.

Release 2021-01-29

Service Client Highlights

  • Bug Fix: A serialization bug has been fixed that caused some service operations with empty inputs to not be serialized correctly (#1071)
  • Bug Fix: Fixes a bug that could cause a waiter to fail when comparing types (#1083)

Core SDK Highlights

  • Feature: EndpointResolverFromURL helpers have been added for constructing a service EndpointResolver type (#1066)
  • Dependency Update: Updated SDK dependencies to their latest versions.
  • aws - v1.1.0
    • Feature: Add support for specifying the EndpointSource on aws.Endpoint types (#1070)
  • config - v1.1.0
    • Feature: Add Support for AWS Single Sign-On (SSO) credential provider (#1072)
  • credentials - v1.1.0
    • Feature: Add AWS Single Sign-On (SSO) credential provider (#1072)

Release 2021-01-19

We are excited to announce the General Availability (GA) release of the AWS SDK for Go version 2 (v2). This release follows the Release candidate of the AWS SDK for Go v2. Version 2 incorporates customer feedback from version 1 and takes advantage of modern Go language features.

Breaking Changes

  • aws: Updated Config.Retryer member to be a func that returns aws.Retryer (#1033)
    • Updates the SDK's references to Config.Retryer to be a function that returns aws.Retryer value. This ensures that custom retry options specified in the aws.Config are scoped to individual client instances.
    • All API clients created with the config will call the Config.Retryer function to get an aws.Retryer.
    • Removes duplicate Retryer interface from retry package. Single definition is aws.Retryer now.
  • aws/middleware: Updates AddAttemptClockSkewMiddleware to use appropriate AddRecordResponseTiming naming (#1031)
    • Removes ResponseMetadata struct type, and adds its members to middleware metadata directly, to improve discoverability.
  • config: Updated the WithRetryer helper to take a function that returns an aws.Retryer (#1033)
    • All API clients created with the config will call the Config.Retryer function to get an aws.Retryer.
  • API Clients: Fix SDK's API client enum constant name generation to have expected casing (#1020)
    • This updates of the generated enum const value names in API client's types package to have the expected casing. Prior to this, enum names were being generated with lowercase names instead of camel case.
  • API Clients: Updates SDK's API client request middleware stack values to be scoped to individual operation call (#1019)
    • The API client request middleware stack values were mistakenly allowed to escape to nested API operation calls. This broke the SDK's presigners.
    • Stack values that should not escape are not scoped to the individual operation call.
  • Multiple API Clients: Unexported the API client's WithEndpointResolver this type wasn't intended to be exported (#1051)
    • Using the aws.Config.EndpointResolver member for setting custom endpoint resolver instead.

New Features

  • service/sts: Add support for presigning GetCallerIdentity operation (#1030)
    • Adds a PresignClient to the sts API client module. Use PresignGetCallerIdentity to obtain presigned URLs for the create presigned URLs for the GetCallerIdentity operation.
    • Fixes #1021
  • aws/retry: Add package documentation for retry package (#1033)
    • Adds documentation for the retry package

Bug Fixes

  • Multiple API Clients: Fix SDK's generated serde for unmodeled operation input/output (#1050)
    • Fixes #1047 by fixing the how the SDKs generated serialization and deserialization of API operations that did not have modeled input or output types. This caused the SDK to incorrectly attempt to deserialize response documents that were either empty, or contained unexpected data.
  • service/s3: Fix Tagging parameter not serialized correctly for presigned PutObject requests (#1017)
    • Fixes the Tagging parameter incorrectly being serialized to the URL's query string instead of being signed as a HTTP request header.

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR 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

Bumps [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) from 1.0.0 to 1.1.0.
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/CHANGELOG.md)
- [Commits](aws/aws-sdk-go-v2@v1.0.0...v1.1.0)

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner February 8, 2021 07:12
@dependabot dependabot bot requested a review from rolinh February 8, 2021 07:12
@dependabot dependabot bot added kind/enhancement This would improve or streamline existing functionality. release-note/misc This PR makes changes that have no direct user impact. labels Feb 8, 2021
@maintainer-s-little-helper maintainer-s-little-helper bot added the dont-merge/needs-release-note-label The author needs to describe the release impact of these changes. label Feb 8, 2021
@maintainer-s-little-helper maintainer-s-little-helper bot removed dont-merge/needs-release-note-label The author needs to describe the release impact of these changes. labels Feb 8, 2021
@maintainer-s-little-helper maintainer-s-little-helper bot added this to In progress in 1.10.0 Feb 8, 2021
@rolinh
Copy link
Member

rolinh commented Feb 8, 2021

test-me-please

@rolinh
Copy link
Member

rolinh commented Feb 8, 2021

retest-netnext

@maintainer-s-little-helper maintainer-s-little-helper bot added the ready-to-merge This PR has passed all tests and received consensus from code owners to merge. label Feb 8, 2021
@aanm aanm merged commit 55fb848 into master Feb 9, 2021
@aanm aanm deleted the dependabot/go_modules/github.com/aws/aws-sdk-go-v2-1.1.0 branch February 9, 2021 09:41
@sayboras
Copy link
Member

sayboras commented Feb 9, 2021

Just a note, aws-sdk-go-v2 packages are kind of modularized similarly to what we have with kubernetes packages. Using mix and match version in different module might cause some unintended error.

I am not sure if dependabot can support this use case (i.e. upgrade all github.com/aws/aws-sdk-go-v2/* packages to the same version in the same PR)

@joestringer joestringer moved this from In progress to Done in 1.10.0 Feb 12, 2021
@joestringer joestringer moved this from In progress to Done in 1.10.0 Feb 12, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/enhancement This would improve or streamline existing functionality. ready-to-merge This PR has passed all tests and received consensus from code owners to merge. release-note/misc This PR makes changes that have no direct user impact.
Projects
No open projects
Development

Successfully merging this pull request may close these issues.

None yet

3 participants