Skip to content

Commit 59e437f

Browse files
author
AWS SDK for Go v2 automation user
committed
Release 2022-04-12
1 parent e16bb72 commit 59e437f

33 files changed

+84
-64
lines changed

.changelog/1312fa3e0ba94e8eb54a61db8efe7f23.json

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

.changelog/2a226490e40345a08e2570e3242a8094.json

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

.changelog/7a2940fda4304318ae91a73d3deec4e7.json

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

.changelog/80d92fcc188945739053d51ee600f4f9.json

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

.changelog/98677bd046aa4f3abc26e639c96b0668.json

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

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# Release (2022-04-12)
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/service/devopsguru`: [v1.17.0](service/devopsguru/CHANGELOG.md#v1170-2022-04-12)
8+
* **Feature**: This release adds new APIs DeleteInsight to deletes the insight along with the associated anomalies, events and recommendations.
9+
* `github.com/aws/aws-sdk-go-v2/service/ec2`: [v1.35.0](service/ec2/CHANGELOG.md#v1350-2022-04-12)
10+
* **Feature**: X2idn and X2iedn instances are powered by 3rd generation Intel Xeon Scalable processors with an all-core turbo frequency up to 3.5 GHzAmazon EC2. C6a instances are powered by 3rd generation AMD EPYC processors.
11+
* `github.com/aws/aws-sdk-go-v2/service/efs`: [v1.17.0](service/efs/CHANGELOG.md#v1170-2022-04-12)
12+
* **Feature**: Amazon EFS adds support for a ThrottlingException when using the CreateAccessPoint API if the account is nearing the AccessPoint limit(120).
13+
* `github.com/aws/aws-sdk-go-v2/service/iottwinmaker`: [v1.6.0](service/iottwinmaker/CHANGELOG.md#v160-2022-04-12)
14+
* **Feature**: This release adds the following new features: 1) ListEntities API now supports search using ExternalId. 2) BatchPutPropertyValue and GetPropertyValueHistory API now allows users to represent time in sub-second level precisions.
15+
* `github.com/aws/aws-sdk-go-v2/service/kinesis`: [v1.15.4](service/kinesis/CHANGELOG.md#v1154-2022-04-12)
16+
* **Bug Fix**: Fixes an issue that caused the unexported constructor function names for EventStream types to be swapped for the event reader and writer respectivly.
17+
* `github.com/aws/aws-sdk-go-v2/service/lexruntimev2`: [v1.14.4](service/lexruntimev2/CHANGELOG.md#v1144-2022-04-12)
18+
* **Bug Fix**: Fixes an issue that caused the unexported constructor function names for EventStream types to be swapped for the event reader and writer respectivly.
19+
* `github.com/aws/aws-sdk-go-v2/service/s3`: [v1.26.5](service/s3/CHANGELOG.md#v1265-2022-04-12)
20+
* **Bug Fix**: Fixes an issue that caused the unexported constructor function names for EventStream types to be swapped for the event reader and writer respectivly.
21+
* `github.com/aws/aws-sdk-go-v2/service/transcribestreaming`: [v1.6.4](service/transcribestreaming/CHANGELOG.md#v164-2022-04-12)
22+
* **Bug Fix**: Fixes an issue that caused the unexported constructor function names for EventStream types to be swapped for the event reader and writer respectivly.
23+
124
# Release (2022-04-11)
225

326
## Module Highlights

example/service/s3/listObjects/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/config v1.15.3
7-
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.4
7+
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.5
88
)
99

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

example/service/s3/usingPrivateLink/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.15
55
require (
66
github.com/aws/aws-sdk-go-v2 v1.16.2
77
github.com/aws/aws-sdk-go-v2/config v1.15.3
8-
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.4
8+
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.5
99
github.com/aws/aws-sdk-go-v2/service/s3control v1.21.4
1010
)
1111

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.5 (2022-04-12)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.11.4 (2022-04-07)
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
@@ -5,7 +5,7 @@ go 1.15
55
require (
66
github.com/aws/aws-sdk-go-v2 v1.16.2
77
github.com/aws/aws-sdk-go-v2/config v1.15.3
8-
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.4
8+
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.5
99
github.com/aws/smithy-go v1.11.2
1010
github.com/google/go-cmp v0.5.7
1111
)

0 commit comments

Comments
 (0)