Skip to content

Commit ab8d7ed

Browse files
author
AWS SDK for Go v2 automation user
committed
Release 2022-05-09
1 parent c6c6446 commit ab8d7ed

File tree

26 files changed

+55
-48
lines changed

26 files changed

+55
-48
lines changed

.changelog/15a689ad224142b9a687e6dcabad55ff.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changelog/4cb8965feb3b48b6afcfa099607e4bb0.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changelog/9a7a360f1eb541a191227515348c1723.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changelog/af71198fa5574392a91a4b2f142a4015.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Release (2022-05-09)
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/config`: [v1.15.5](config/CHANGELOG.md#v1155-2022-05-09)
8+
* **Bug Fix**: Fixes a bug in LoadDefaultConfig to correctly assign ConfigSources so all config resolvers have access to the config sources. This fixes the feature/ec2/imds client not having configuration applied via config.LoadOptions such as EC2IMDSClientEnableState. PR [#1682](https://github.com/aws/aws-sdk-go-v2/pull/1682)
9+
* `github.com/aws/aws-sdk-go-v2/service/cloudcontrol`: [v1.10.0](service/cloudcontrol/CHANGELOG.md#v1100-2022-05-09)
10+
* **Feature**: SDK release for Cloud Control API to include paginators for Python SDK.
11+
* `github.com/aws/aws-sdk-go-v2/service/evidently`: [v1.7.0](service/evidently/CHANGELOG.md#v170-2022-05-09)
12+
* **Feature**: Add detail message inside GetExperimentResults API response to indicate experiment result availability
13+
* `github.com/aws/aws-sdk-go-v2/service/ssmcontacts`: [v1.13.5](service/ssmcontacts/CHANGELOG.md#v1135-2022-05-09)
14+
* **Documentation**: Fixed an error in the DescribeEngagement example for AWS Incident Manager.
15+
116
# Release (2022-05-06)
217

318
## General Highlights

config/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.15.5 (2022-05-09)
2+
3+
* **Bug Fix**: Fixes a bug in LoadDefaultConfig to correctly assign ConfigSources so all config resolvers have access to the config sources. This fixes the feature/ec2/imds client not having configuration applied via config.LoadOptions such as EC2IMDSClientEnableState. PR [#1682](https://github.com/aws/aws-sdk-go-v2/pull/1682)
4+
15
# v1.15.4 (2022-04-25)
26

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

config/go_module_metadata.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/service/dynamodb/createTable/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.15
44

55
require (
66
github.com/aws/aws-sdk-go-v2 v1.16.3
7-
github.com/aws/aws-sdk-go-v2/config v1.15.4
7+
github.com/aws/aws-sdk-go-v2/config v1.15.5
88
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.4
99
)
1010

example/service/dynamodb/scanItems/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.15
44

55
require (
66
github.com/aws/aws-sdk-go-v2 v1.16.3
7-
github.com/aws/aws-sdk-go-v2/config v1.15.4
7+
github.com/aws/aws-sdk-go-v2/config v1.15.5
88
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.9.1
99
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.4
1010
)

example/service/s3/listObjects/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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.4
6+
github.com/aws/aws-sdk-go-v2/config v1.15.5
77
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.9
88
)
99

example/service/s3/usingPrivateLink/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.15
44

55
require (
66
github.com/aws/aws-sdk-go-v2 v1.16.3
7-
github.com/aws/aws-sdk-go-v2/config v1.15.4
7+
github.com/aws/aws-sdk-go-v2/config v1.15.5
88
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.9
99
github.com/aws/aws-sdk-go-v2/service/s3control v1.21.5
1010
)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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.4
6+
github.com/aws/aws-sdk-go-v2/config v1.15.5
77
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.4
88
)
99

feature/s3/manager/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.11.10 (2022-05-09)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.11.9 (2022-05-06)
26

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

feature/s3/manager/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.15
44

55
require (
66
github.com/aws/aws-sdk-go-v2 v1.16.3
7-
github.com/aws/aws-sdk-go-v2/config v1.15.4
7+
github.com/aws/aws-sdk-go-v2/config v1.15.5
88
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.9
99
github.com/aws/smithy-go v1.11.2
1010
github.com/google/go-cmp v0.5.7

feature/s3/manager/go_module_metadata.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/configsources/configtesting/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/internal/configsources/configtesting
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go-v2/config v1.15.4
6+
github.com/aws/aws-sdk-go-v2/config v1.15.5
77
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.10
88
)
99

service/cloudcontrol/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.10.0 (2022-05-09)
2+
3+
* **Feature**: SDK release for Cloud Control API to include paginators for Python SDK.
4+
15
# v1.9.1 (2022-04-25)
26

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

service/cloudcontrol/go_module_metadata.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

service/evidently/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.7.0 (2022-05-09)
2+
3+
* **Feature**: Add detail message inside GetExperimentResults API response to indicate experiment result availability
4+
15
# v1.6.4 (2022-04-25)
26

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

service/evidently/go_module_metadata.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

service/firehose/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.14.5 (2022-05-09)
2+
3+
* No change notes available for this release.
4+
15
# v1.14.4 (2022-04-25)
26

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

service/firehose/go_module_metadata.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

service/internal/integrationtest/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/aws/aws-sdk-go-v2/service/internal/integrationtest
22

33
require (
44
github.com/aws/aws-sdk-go-v2 v1.16.3
5-
github.com/aws/aws-sdk-go-v2/config v1.15.4
5+
github.com/aws/aws-sdk-go-v2/config v1.15.5
66
github.com/aws/aws-sdk-go-v2/service/acm v1.14.4
77
github.com/aws/aws-sdk-go-v2/service/apigateway v1.15.4
88
github.com/aws/aws-sdk-go-v2/service/applicationautoscaling v1.15.4
@@ -43,7 +43,7 @@ require (
4343
github.com/aws/aws-sdk-go-v2/service/elastictranscoder v1.13.4
4444
github.com/aws/aws-sdk-go-v2/service/emr v1.17.4
4545
github.com/aws/aws-sdk-go-v2/service/eventbridge v1.16.1
46-
github.com/aws/aws-sdk-go-v2/service/firehose v1.14.4
46+
github.com/aws/aws-sdk-go-v2/service/firehose v1.14.5
4747
github.com/aws/aws-sdk-go-v2/service/gamelift v1.14.4
4848
github.com/aws/aws-sdk-go-v2/service/glacier v1.13.4
4949
github.com/aws/aws-sdk-go-v2/service/glue v1.24.2

service/s3/internal/configtesting/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/s3/internal/configtesting
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go-v2/config v1.15.4
6+
github.com/aws/aws-sdk-go-v2/config v1.15.5
77
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.13.4
88
)
99

service/ssmcontacts/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.13.5 (2022-05-09)
2+
3+
* **Documentation**: Fixed an error in the DescribeEngagement example for AWS Incident Manager.
4+
15
# v1.13.4 (2022-04-25)
26

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

service/ssmcontacts/go_module_metadata.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)