Skip to content

chore(deps): bump the aws group across 1 directory with 14 updates (#6941)#6944

Open
ti-chi-bot wants to merge 1 commit into
pingcap:release-2.1from
ti-chi-bot:cherry-pick-6941-to-release-2.1
Open

chore(deps): bump the aws group across 1 directory with 14 updates (#6941)#6944
ti-chi-bot wants to merge 1 commit into
pingcap:release-2.1from
ti-chi-bot:cherry-pick-6941-to-release-2.1

Conversation

@ti-chi-bot

Copy link
Copy Markdown
Member

This is an automated cherry-pick of #6941

Bumps the aws group with 2 updates in the / directory: github.com/aws/aws-sdk-go-v2/config and github.com/aws/aws-sdk-go-v2/service/ec2.

Updates github.com/aws/aws-sdk-go-v2/config from 1.32.17 to 1.32.25

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ec2 from 1.301.0 to 1.307.0

Commits

Updates github.com/aws/smithy-go from 1.25.1 to 1.27.1

Changelog

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

Release (2026-06-05)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.2
    • Bug Fix: Fix incorrect serialization of unions in CBOR-based protocols.

Release (2026-06-04)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.1
    • Bug Fix: Fixed a deserialization failure in all protocols when encountering a union with explicit null members.
    • Bug Fix: Fixed a panic when deserializing nested unions in JSON- and CBOR-based protocols.

Release (2026-06-02)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.0
    • Feature: Add APIs for schema-based serialization.
    • Feature: Add support for all current AWS and Smithy protocols.
    • Bug Fix: Enforce max nesting depth of 128 on CBOR payloads.
  • github.com/aws/smithy-go/aws-http-auth: v1.2.0
    • Feature: Add event stream signer.

Release (2026-05-27)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.26.0
    • Feature: Add StringSlice to endpoint rulesfn.

Release (2026-04-23)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.25.1
    • Bug Fix: Fixed a memory leak in the LRU cache implementation used by some AWS services.

... (truncated)

Commits

Updates github.com/aws/aws-sdk-go-v2/internal/v4a from 1.4.24 to 1.4.30

Commits

Updates github.com/aws/aws-sdk-go-v2/service/signin from 1.0.11 to 1.2.0

Changelog

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

Release 2021-02-09

Service Client Highlights

  • service/s3 - v1.2.0
    • Feature: adds support for s3 vpc endpoint interface #1113
  • service/s3control - v1.2.0
    • Feature: adds support for s3 vpc endpoint interface #1113

Core SDK Highlights

  • Dependency Update: Updated SDK dependencies to their latest versions.
  • aws - v1.2.0
    • Feature: support to add endpoint source on context. Adds getter/setter for the endpoint source #1113
  • config - v1.1.1
    • Bug Fix: Only Validate SSO profile configuration when attempting to use SSO credentials #1103
    • Bug Fix: Environment credentials were not taking precedence over AWS_PROFILE #1103

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)

... (truncated)

Commits
  • be1c899 Release 2021-02-09
  • c122065 regenerate with version update for smithy-go
  • f0315d8 permissive time parsing using smithy-go http. (#1117)
  • a8afaad Adds support for s3 and s3control vpc interface endpoints (#1113)
  • 1e3555c Adds Makefile target for caching module dependencies (#1119)
  • 60ec63e middleware: fix date header parse error log (#1099)
  • db0cc11 Fix SSO Validation of Incomplete Profiles (#1103)
  • e5e313f Update SDK's CI to ensure Go packages all compile (#1102)
  • af489c3 Release 2021-01-29
  • 6979bb1 Regenerated Clients from Models (#1093)
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.19.16 to 1.19.24

Commits

Updates github.com/aws/aws-sdk-go-v2/feature/ec2/imds from 1.18.23 to 1.18.29

Commits

Updates github.com/aws/aws-sdk-go-v2/internal/configsources from 1.4.23 to 1.4.29

Commits

Updates github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 from 2.7.23 to 2.7.29

Commits

Updates github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding from 1.13.9 to 1.13.12

Commits

Updates github.com/aws/aws-sdk-go-v2/service/internal/presigned-url from 1.13.23 to 1.13.29

Commits

Updates github.com/aws/aws-sdk-go-v2/service/sso from 1.30.17 to 1.31.3

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ssooidc from 1.35.21 to 1.36.6

Commits

Updates github.com/aws/aws-sdk-go-v2/service/sts from 1.42.1 to 1.43.3

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
@ti-chi-bot

Copy link
Copy Markdown
Member Author

@liubog2008 This PR has conflicts, I have hold it.
Please resolve them or ask others to resolve them, then comment /unhold to remove the hold label.

@ti-chi-bot ti-chi-bot Bot requested a review from shonge June 12, 2026 02:56
@ti-chi-bot

ti-chi-bot Bot commented Jun 12, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign liubog2008 for approval. For more information see the Code Review Process.
Please ensure that each of them provides their approval before proceeding.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@ti-chi-bot ti-chi-bot Bot added size/M and removed size/L labels Jun 12, 2026
@ti-chi-bot

ti-chi-bot Bot commented Jun 12, 2026

Copy link
Copy Markdown
Contributor

@ti-chi-bot: The following test failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
pull-e2e 1bf98b3 link true /test pull-e2e

Full PR test history. Your PR dashboard.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

contribution dependencies Pull requests that update a dependency file do-not-merge/hold go Pull requests that update go code ok-to-test size/M type/cherry-pick-for-release-2.1 v2 for operator v2

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants