Skip to content

Commit 5399c50

Browse files
author
AWS SDK for Go v2 automation user
committed
Release 2022-03-23
1 parent 57ed414 commit 5399c50

File tree

984 files changed

+2712
-1485
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

984 files changed

+2712
-1485
lines changed

.changelog/08d93344ca9c4036aefcf73146edaf55.json

-8
This file was deleted.

.changelog/14f5d1e07e584c8e9987d43e60dbcafd.json

-8
This file was deleted.

.changelog/34d9f0ec9f0d4a1491181a2f4789dbb3.json

-8
This file was deleted.

.changelog/41575353444b40ffbf474f4155544f00.json

-8
This file was deleted.

.changelog/539f6be72aff4327aa123e5e5a2abe67.json

-8
This file was deleted.

.changelog/53bb56852ee14685830a00fa2f207c79.json

-8
This file was deleted.

.changelog/653a15ff9fdb4ba3b844511b649b2d3c.json

-8
This file was deleted.

.changelog/910ec24cf30d4df48a401e40db7b1591.json

-8
This file was deleted.

.changelog/9913162361ed41fe867f56fb4ee75e8e.json

-9
This file was deleted.

.changelog/9ea2d3bfb80944cf9058e72f08c2c6f3.json

-8
This file was deleted.

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
# Release (2022-03-23)
2+
3+
## General Highlights
4+
* **Dependency Update**: Updated to the latest SDK module versions
5+
6+
## Module Highlights
7+
* `github.com/aws/aws-sdk-go-v2`: v1.16.0
8+
* **Feature**: Update CredentialsCache to make use of two new optional CredentialsProvider interfaces to give the cache, per provider, behavior how the cache handles credentials that fail to refresh, and adjusting expires time. See [aws.CredentialsCache](https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/aws#CredentialsCache) for more details.
9+
* **Feature**: Update `ec2rolecreds` package's `Provider` to implememnt support for CredentialsCache new optional caching strategy interfaces, HandleFailRefreshCredentialsCacheStrategy and AdjustExpiresByCredentialsCacheStrategy.
10+
* `github.com/aws/aws-sdk-go-v2/credentials`: [v1.11.0](credentials/CHANGELOG.md#v1110-2022-03-23)
11+
* **Feature**: Update `ec2rolecreds` package's `Provider` to implememnt support for CredentialsCache new optional caching strategy interfaces, HandleFailRefreshCredentialsCacheStrategy and AdjustExpiresByCredentialsCacheStrategy.
12+
* `github.com/aws/aws-sdk-go-v2/service/auditmanager`: [v1.18.0](service/auditmanager/CHANGELOG.md#v1180-2022-03-23)
13+
* **Feature**: This release updates 1 API parameter, the SnsArn attribute. The character length and regex pattern for the SnsArn attribute have been updated, which enables you to deselect an SNS topic when using the UpdateSettings operation.
14+
* `github.com/aws/aws-sdk-go-v2/service/ebs`: [v1.15.0](service/ebs/CHANGELOG.md#v1150-2022-03-23)
15+
* **Feature**: Increased the maximum supported value for the Timeout parameter of the StartSnapshot API from 60 minutes to 4320 minutes. Changed the HTTP error code for ConflictException from 503 to 409.
16+
* `github.com/aws/aws-sdk-go-v2/service/elasticache`: [v1.20.2](service/elasticache/CHANGELOG.md#v1202-2022-03-23)
17+
* **Documentation**: Doc only update for ElastiCache
18+
* `github.com/aws/aws-sdk-go-v2/service/gamesparks`: [v1.0.0](service/gamesparks/CHANGELOG.md#v100-2022-03-23)
19+
* **Release**: New AWS service client module
20+
* **Feature**: Released the preview of Amazon GameSparks, a fully managed AWS service that provides a multi-service backend for game developers.
21+
* `github.com/aws/aws-sdk-go-v2/service/redshift`: [v1.22.0](service/redshift/CHANGELOG.md#v1220-2022-03-23)
22+
* **Feature**: This release adds a new [--encrypted | --no-encrypted] field in restore-from-cluster-snapshot API. Customers can now restore an unencrypted snapshot to a cluster encrypted with AWS Managed Key or their own KMS key.
23+
* `github.com/aws/aws-sdk-go-v2/service/ssm`: [v1.23.0](service/ssm/CHANGELOG.md#v1230-2022-03-23)
24+
* **Feature**: Update AddTagsToResource, ListTagsForResource, and RemoveTagsFromResource APIs to reflect the support for tagging Automation resources. Includes other minor documentation updates.
25+
* `github.com/aws/aws-sdk-go-v2/service/transfer`: [v1.18.1](service/transfer/CHANGELOG.md#v1181-2022-03-23)
26+
* **Documentation**: Documentation updates for AWS Transfer Family to describe how to remove an associated workflow from a server.
27+
128
# Release (2022-03-22)
229

330
## Module Highlights

aws/go_module_metadata.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.15.1 (2022-03-23)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.15.0 (2022-03-08)
26

37
* **Feature**: Updated `github.com/aws/smithy-go` to latest version

config/go.mod

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ module github.com/aws/aws-sdk-go-v2/config
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go-v2 v1.15.0
7-
github.com/aws/aws-sdk-go-v2/credentials v1.10.0
8-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.0
9-
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.7
10-
github.com/aws/aws-sdk-go-v2/service/sso v1.11.0
11-
github.com/aws/aws-sdk-go-v2/service/sts v1.16.0
6+
github.com/aws/aws-sdk-go-v2 v1.16.0
7+
github.com/aws/aws-sdk-go-v2/credentials v1.11.0
8+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.1
9+
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.8
10+
github.com/aws/aws-sdk-go-v2/service/sso v1.11.1
11+
github.com/aws/aws-sdk-go-v2/service/sts v1.16.1
1212
github.com/aws/smithy-go v1.11.1
1313
github.com/google/go-cmp v0.5.7
1414
)

config/go_module_metadata.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

credentials/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# v1.11.0 (2022-03-23)
2+
3+
* **Feature**: Update `ec2rolecreds` package's `Provider` to implememnt support for CredentialsCache new optional caching strategy interfaces, HandleFailRefreshCredentialsCacheStrategy and AdjustExpiresByCredentialsCacheStrategy.
4+
* **Dependency Update**: Updated to the latest SDK module versions
5+
16
# v1.10.0 (2022-03-08)
27

38
* **Feature**: Updated `github.com/aws/smithy-go` to latest version

credentials/go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ module github.com/aws/aws-sdk-go-v2/credentials
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go-v2 v1.15.0
7-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.0
8-
github.com/aws/aws-sdk-go-v2/service/sso v1.11.0
9-
github.com/aws/aws-sdk-go-v2/service/sts v1.16.0
6+
github.com/aws/aws-sdk-go-v2 v1.16.0
7+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.1
8+
github.com/aws/aws-sdk-go-v2/service/sso v1.11.1
9+
github.com/aws/aws-sdk-go-v2/service/sts v1.16.1
1010
github.com/aws/smithy-go v1.11.1
1111
github.com/google/go-cmp v0.5.7
1212
)

credentials/go_module_metadata.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/service/dynamodb/createTable/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ module aws-sdk-go-v2/example/service/dynamodb/createTable
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go-v2 v1.15.0
7-
github.com/aws/aws-sdk-go-v2/config v1.15.0
8-
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.0
6+
github.com/aws/aws-sdk-go-v2 v1.16.0
7+
github.com/aws/aws-sdk-go-v2/config v1.15.1
8+
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.1
99
)
1010

1111
replace github.com/aws/aws-sdk-go-v2 => ../../../../

example/service/dynamodb/scanItems/go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ module github.com/aws/aws-sdk-go-v2/example/service/dynamodb/listItems
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go-v2 v1.15.0
7-
github.com/aws/aws-sdk-go-v2/config v1.15.0
8-
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.8.0
9-
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.0
6+
github.com/aws/aws-sdk-go-v2 v1.16.0
7+
github.com/aws/aws-sdk-go-v2/config v1.15.1
8+
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.8.1
9+
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.1
1010
)
1111

1212
replace github.com/aws/aws-sdk-go-v2 => ../../../../

example/service/s3/listObjects/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/aws/aws-sdk-go-v2/example/service/s3/listObjects
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go-v2/config v1.15.0
7-
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.0
6+
github.com/aws/aws-sdk-go-v2/config v1.15.1
7+
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.1
88
)
99

1010
replace github.com/aws/aws-sdk-go-v2 => ../../../../

example/service/s3/usingPrivateLink/go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ module github.com/aws/aws-sdk-go-v2/example/service/s3/usingPrivateLink
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go-v2 v1.15.0
7-
github.com/aws/aws-sdk-go-v2/config v1.15.0
8-
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.0
9-
github.com/aws/aws-sdk-go-v2/service/s3control v1.21.0
6+
github.com/aws/aws-sdk-go-v2 v1.16.0
7+
github.com/aws/aws-sdk-go-v2/config v1.15.1
8+
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.1
9+
github.com/aws/aws-sdk-go-v2/service/s3control v1.21.1
1010
)
1111

1212
replace github.com/aws/aws-sdk-go-v2 => ../../../../

feature/cloudfront/sign/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.3.14 (2022-03-23)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.3.13 (2022-03-08)
26

37
* **Dependency Update**: Updated to the latest SDK module versions

feature/cloudfront/sign/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module github.com/aws/aws-sdk-go-v2/feature/cloudfront/sign
22

33
go 1.15
44

5-
require github.com/aws/aws-sdk-go-v2 v1.15.0
5+
require github.com/aws/aws-sdk-go-v2 v1.16.0
66

77
replace github.com/aws/aws-sdk-go-v2 => ../../../

feature/cloudfront/sign/go_module_metadata.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

feature/dynamodb/attributevalue/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.8.1 (2022-03-23)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.8.0 (2022-03-08)
26

37
* **Feature**: Updated `github.com/aws/smithy-go` to latest version

feature/dynamodb/attributevalue/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ module github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go-v2 v1.15.0
7-
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.0
8-
github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v1.13.0
6+
github.com/aws/aws-sdk-go-v2 v1.16.0
7+
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.1
8+
github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v1.13.1
99
github.com/aws/smithy-go v1.11.1
1010
github.com/google/go-cmp v0.5.7
1111
)

feature/dynamodb/attributevalue/go_module_metadata.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

feature/dynamodb/expression/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.4.2 (2022-03-23)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.4.1 (2022-03-08)
26

37
* **Dependency Update**: Updated to the latest SDK module versions

feature/dynamodb/expression/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ module github.com/aws/aws-sdk-go-v2/feature/dynamodb/expression
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go-v2 v1.15.0
7-
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.8.0
8-
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.0
6+
github.com/aws/aws-sdk-go-v2 v1.16.0
7+
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.8.1
8+
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.1
99
github.com/google/go-cmp v0.5.7
1010
)
1111

feature/dynamodb/expression/go_module_metadata.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

feature/dynamodbstreams/attributevalue/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.8.1 (2022-03-23)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.8.0 (2022-03-08)
26

37
* **Feature**: Updated `github.com/aws/smithy-go` to latest version

feature/dynamodbstreams/attributevalue/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ module github.com/aws/aws-sdk-go-v2/feature/dynamodbstreams/attributevalue
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go-v2 v1.15.0
7-
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.0
8-
github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v1.13.0
6+
github.com/aws/aws-sdk-go-v2 v1.16.0
7+
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.1
8+
github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v1.13.1
99
github.com/aws/smithy-go v1.11.1
1010
github.com/google/go-cmp v0.5.7
1111
)

feature/dynamodbstreams/attributevalue/go_module_metadata.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

feature/ec2/imds/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.12.1 (2022-03-23)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.12.0 (2022-03-08)
26

37
* **Feature**: Updated `github.com/aws/smithy-go` to latest version

feature/ec2/imds/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/feature/ec2/imds
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go-v2 v1.15.0
6+
github.com/aws/aws-sdk-go-v2 v1.16.0
77
github.com/aws/smithy-go v1.11.1
88
github.com/google/go-cmp v0.5.7
99
)

feature/ec2/imds/go_module_metadata.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

feature/ec2/imds/internal/configtesting/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/aws/aws-sdk-go-v2/feature/ec2/imds/internal/configtesting
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go-v2/config v1.15.0
7-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.0
6+
github.com/aws/aws-sdk-go-v2/config v1.15.1
7+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.1
88
)
99

1010
replace github.com/aws/aws-sdk-go-v2 => ../../../../../

feature/rds/auth/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.1.17 (2022-03-23)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.1.16 (2022-03-08)
26

37
* **Dependency Update**: Updated to the latest SDK module versions

0 commit comments

Comments
 (0)