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

⬆️ Bump the aws-sdk group with 4 updates #899

Merged
merged 1 commit into from
Nov 6, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 6, 2023

Bumps the aws-sdk group with 4 updates: github.com/aws/aws-sdk-go, github.com/aws/aws-sdk-go-v2, github.com/aws/aws-sdk-go-v2/config and github.com/aws/aws-sdk-go-v2/service/dynamodb.

Updates github.com/aws/aws-sdk-go from 1.46.6 to 1.47.3

Release notes

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

Release v1.47.3 (2023-11-03)

Service Client Updates

  • service/config: Updates service API
  • service/connect: Updates service API and documentation
  • service/iotwireless: Updates service API and documentation
  • service/launch-wizard: Adds new service

Release v1.47.2 (2023-11-02)

Service Client Updates

  • service/apprunner: Updates service API and documentation
  • service/connect: Updates service documentation
  • service/gamelift: Updates service API and documentation
    • Amazon GameLift adds support for shared credentials, which allows applications that are deployed on managed EC2 fleets to interact with other AWS resources.
  • service/glue: Updates service API and documentation
    • This release introduces Google BigQuery Source and Target in AWS Glue CodeGenConfigurationNode.
  • service/network-firewall: Updates service API and documentation
  • service/quicksight: Updates service API and documentation
    • This release introduces Float Decimal Type as SubType in QuickSight SPICE datasets and Custom week start and Custom timezone options in Analysis and Dashboard

SDK Enhancements

  • aws/ec2metadata: Added environment and shared config support for disabling IMDSv1 fallback.
    • Use env AWS_EC2_METADATA_V1_DISABLED or shared config ec2_metadata_v1_disabled accordingly.

Release v1.47.1 (2023-11-01)

Service Client Updates

  • service/connect: Updates service API, documentation, and paginators
  • service/globalaccelerator: Updates service API, documentation, and paginators
  • service/rds: Updates service API, documentation, waiters, paginators, and examples
    • This release adds support for customized networking resources to Amazon RDS Custom.
  • service/redshift: Updates service API and documentation
    • Added support for Multi-AZ deployments for Provisioned RA3 clusters that provide 99.99% SLA availability.
  • service/sagemaker: Updates service API and documentation
    • Support for batch transform input in Model dashboard

Release v1.47.0 (2023-10-31)

Service Client Updates

  • service/amplify: Updates service API, documentation, and paginators
  • service/application-insights: Updates service API and documentation
  • service/ec2: Updates service API, documentation, and paginators
    • Capacity Blocks for ML are a new EC2 purchasing option for reserving GPU instances on a future date to support short duration machine learning (ML) workloads. Capacity Blocks automatically place instances close together inside Amazon EC2 UltraClusters for low-latency, high-throughput networking.
  • service/m2: Updates service API and documentation

... (truncated)

Commits
  • 4ed8ea3 Release v1.47.3 (2023-11-03) (#5055)
  • 636d158 Merge pull request #5053 from aws/fix-changelog110223
  • d10e38a fix changelogs from today
  • 52a2fe4 Release v1.47.2 (2023-11-02) (#5052)
  • 4886ffc Merge pull request #5015 from aws/feat-disableimdsv1config
  • 2ad137a Merge branch 'main' into feat-disableimdsv1config
  • 78aeb73 Release v1.47.1 (2023-11-01) (#5051)
  • f5b95c8 Merge pull request #5044 from josephbartley/fix-deprecated-documentation
  • 0ace168 Bump golang.org/x/net from 0.1.0 to 0.17.0
  • d90061b Bump golang.org/x/net from 0.1.0 to 0.17.0
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2 from 1.21.2 to 1.22.1

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.19.1 to 1.22.0

Commits

Updates github.com/aws/aws-sdk-go-v2/service/dynamodb from 1.23.0 to 1.25.0

Changelog

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

Release (2022-02-24)

General Highlights

  • Feature: Adds RetryMaxAttempts and RetryMod to API client Options. This allows the API clients' default Retryer to be configured from the shared configuration files or environment variables. Adding a new Retry mode of Adaptive. Adaptive retry mode is an experimental mode, adding client rate limiting when throttles reponses are received from an API. See retry.AdaptiveMode for more details, and configuration options.
  • Feature: Updated github.com/aws/smithy-go to latest version
  • Bug Fix: Fixes the AWS Sigv4 signer to trim header value's whitespace when computing the canonical headers block of the string to sign.
  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2: v1.14.0
    • Feature: Add new AdaptiveMode retryer to aws/retry package. This new retryer uses dynamic token bucketing with client ratelimiting when throttle responses are received.
    • Feature: Adds new interface aws.RetryerV2, replacing aws.Retryer and deprecating the GetInitialToken method in favor of GetAttemptToken so Context can be provided. The SDK will use aws.RetryerV2 internally. Wrapping aws.Retryers as aws.RetryerV2 automatically.
  • github.com/aws/aws-sdk-go-v2/config: v1.14.0
    • Feature: Adds support for loading RetryMaxAttempts and RetryMod from the environment and shared configuration files. These parameters drive how the SDK's API client will initialize its default retryer, if custome retryer has not been specified. See config module and aws.Config for more information about and how to use these new options.
    • Feature: Adds support for the ca_bundle parameter in shared config and credentials files. The usage of the file is the same as environment variable, AWS_CA_BUNDLE, but sourced from shared config. Fixes #1589
  • github.com/aws/aws-sdk-go-v2/credentials: v1.9.0
    • Feature: Adds support for SourceIdentity to stscreds.AssumeRoleProvider #1588. Fixes #1575
  • github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue: v1.7.0
    • Feature: Fixes #645, #411 by adding support for (un)marshaling AttributeValue maps to Go maps key types of string, number, bool, and types implementing encoding.Text(un)Marshaler interface
    • Bug Fix: Fixes #1569 inconsistent serialization of Go struct field names
  • github.com/aws/aws-sdk-go-v2/feature/dynamodb/expression: v1.4.0
    • Feature: Add support for expression names with dots via new NameBuilder function NameNoDotSplit, related to aws/aws-sdk-go#2570
  • github.com/aws/aws-sdk-go-v2/feature/dynamodbstreams/attributevalue: v1.7.0
    • Feature: Fixes #645, #411 by adding support for (un)marshaling AttributeValue maps to Go maps key types of string, number, bool, and types implementing encoding.Text(un)Marshaler interface
    • Bug Fix: Fixes #1569 inconsistent serialization of Go struct field names
  • github.com/aws/aws-sdk-go-v2/service/accessanalyzer: v1.14.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/account: v1.5.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/acm: v1.13.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/acmpca: v1.15.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/alexaforbusiness: v1.13.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/amp: v1.13.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/amplify: v1.10.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/amplifybackend: v1.11.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/amplifyuibuilder: v1.4.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/apigateway: v1.14.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/apigatewaymanagementapi: v1.9.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/apigatewayv2: v1.11.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/appconfig: v1.11.0

... (truncated)

Commits
  • 7653643 Release 2022-02-24
  • 78b771e Update smithy-go dependency version
  • c214cb6 DefaultsMode Documentation Fixes (#1599)
  • 07719a1 Add support for trailing checksum (#1600)
  • 4e87627 Update SDK's API clients from latest models (#1598)
  • 60c5fb5 Fixup make task, removing unused endpoint prefix task (#1597)
  • b7ee4d6 config: Add support for SharedConfig file ca_bundle parameter (#1593)
  • 60feb1d Bump SDK's dependencies (#1596)
  • aa5938d Adds support for SourceIdentity to stscreds.AssumeRoleProvider (#1588)
  • d5c2270 Fix AttributeValue marshaling and names in expressions (#1590)
  • Additional commits viewable in compare view

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 <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

Bumps the aws-sdk group with 4 updates: [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go), [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2), [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) and [github.com/aws/aws-sdk-go-v2/service/dynamodb](https://github.com/aws/aws-sdk-go-v2).


Updates `github.com/aws/aws-sdk-go` from 1.46.6 to 1.47.3
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Commits](aws/aws-sdk-go@v1.46.6...v1.47.3)

Updates `github.com/aws/aws-sdk-go-v2` from 1.21.2 to 1.22.1
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.21.2...v1.22.1)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.19.1 to 1.22.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.19.1...v1.22.0)

Updates `github.com/aws/aws-sdk-go-v2/service/dynamodb` from 1.23.0 to 1.25.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.25.0/CHANGELOG.md)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.23.0...service/s3/v1.25.0)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-sdk
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-sdk
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-sdk
- dependency-name: github.com/aws/aws-sdk-go-v2/service/dynamodb
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-sdk
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Nov 6, 2023
@elgohr elgohr enabled auto-merge November 6, 2023 00:13
@elgohr elgohr merged commit 109c5f6 into main Nov 6, 2023
5 checks passed
@elgohr elgohr deleted the dependabot/go_modules/aws-sdk-74c0703fa8 branch November 6, 2023 00:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant