Skip to content

Commit 61ed638

Browse files
author
AWS SDK for Go v2 automation user
committed
Release 2024-06-03
1 parent 7aa6c91 commit 61ed638

File tree

1,221 files changed

+3462
-1894
lines changed

Some content is hidden

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

1,221 files changed

+3462
-1894
lines changed

.changelog/01b2fbcc0cd54a0ea0ec4c389d36fd97.json

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

.changelog/10e2652f364e4c159163b4e90b9d56f0.json

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

.changelog/2d83bd8aff93433780d98d610fe0f9f8.json

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

.changelog/3ee78f646b9a41c58f5e5d6f3b9b6793.json

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

.changelog/c97f23ee44fe4305b699c524e2f9fe19.json

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

.changelog/d6a8aa444ebf496e8554e58655c3b281.json

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

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# Release (2024-06-03)
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.27.1
8+
* **Bug Fix**: Re-enable hoisting of `X-Amz-Expected-Bucket-Owner` in presigning, but in lowercase form, such that it is correctly enforced.
9+
* **Documentation**: Add deprecation docs to global endpoint resolution interfaces. These APIs were previously deprecated with the introduction of service-specific endpoint resolution (EndpointResolverV2 and BaseEndpoint on service client options).
10+
* `github.com/aws/aws-sdk-go-v2/config`: [v1.27.17](config/CHANGELOG.md#v12717-2024-06-03)
11+
* **Documentation**: Add deprecation docs to global endpoint resolution interfaces. These APIs were previously deprecated with the introduction of service-specific endpoint resolution (EndpointResolverV2 and BaseEndpoint on service client options).
12+
* `github.com/aws/aws-sdk-go-v2/service/amplify`: [v1.21.10](service/amplify/CHANGELOG.md#v12110-2024-06-03)
13+
* **Documentation**: This doc-only update identifies fields that are specific to Gen 1 and Gen 2 applications.
14+
* `github.com/aws/aws-sdk-go-v2/service/batch`: [v1.38.0](service/batch/CHANGELOG.md#v1380-2024-06-03)
15+
* **Feature**: This release adds support for the AWS Batch GetJobQueueSnapshot API operation.
16+
* `github.com/aws/aws-sdk-go-v2/service/eks`: [v1.43.0](service/eks/CHANGELOG.md#v1430-2024-06-03)
17+
* **Feature**: Adds support for EKS add-ons pod identity associations integration
18+
* `github.com/aws/aws-sdk-go-v2/service/iottwinmaker`: [v1.20.0](service/iottwinmaker/CHANGELOG.md#v1200-2024-06-03)
19+
* **Feature**: Support RESET_VALUE UpdateType for PropertyUpdates to reset property value to default or null
20+
121
# Release (2024-05-31)
222

323
## Module Highlights

aws/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.

config/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# v1.27.17 (2024-06-03)
2+
3+
* **Documentation**: Add deprecation docs to global endpoint resolution interfaces. These APIs were previously deprecated with the introduction of service-specific endpoint resolution (EndpointResolverV2 and BaseEndpoint on service client options).
4+
* **Dependency Update**: Updated to the latest SDK module versions
5+
16
# v1.27.16 (2024-05-23)
27

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

config/go.mod

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ module github.com/aws/aws-sdk-go-v2/config
33
go 1.20
44

55
require (
6-
github.com/aws/aws-sdk-go-v2 v1.27.0
7-
github.com/aws/aws-sdk-go-v2/credentials v1.17.16
8-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.3
6+
github.com/aws/aws-sdk-go-v2 v1.27.1
7+
github.com/aws/aws-sdk-go-v2/credentials v1.17.17
8+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.4
99
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0
10-
github.com/aws/aws-sdk-go-v2/service/sso v1.20.9
11-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.24.3
12-
github.com/aws/aws-sdk-go-v2/service/sts v1.28.10
10+
github.com/aws/aws-sdk-go-v2/service/sso v1.20.10
11+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.24.4
12+
github.com/aws/aws-sdk-go-v2/service/sts v1.28.11
1313
github.com/aws/smithy-go v1.20.2
1414
)
1515

1616
require (
17-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.7 // indirect
18-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.7 // indirect
17+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.8 // indirect
18+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.8 // indirect
1919
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 // indirect
20-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.9 // indirect
20+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.10 // indirect
2121
)
2222

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

0 commit comments

Comments
 (0)