Skip to content

Commit c578cdd

Browse files
author
AWS SDK for Go v2 automation user
committed
Release 2025-01-16
1 parent 45afab3 commit c578cdd

22 files changed

+56
-43
lines changed

.changelog/2e03eae07dff4beb94963939b6549426.json

-8
This file was deleted.

.changelog/59262f9f7e94412486bb9e73d4f06425.json

-8
This file was deleted.

.changelog/eddc443f11474344a97420e35a5c600a.json

-8
This file was deleted.

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# Release (2025-01-16)
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/ecs`: [v1.53.7](service/ecs/CHANGELOG.md#v1537-2025-01-16)
8+
* **Documentation**: The release addresses Amazon ECS documentation tickets.
9+
* `github.com/aws/aws-sdk-go-v2/service/internal/checksum`: [v1.5.1](service/internal/checksum/CHANGELOG.md#v151-2025-01-16)
10+
* **Bug Fix**: Fix nil dereference panic for operations that require checksums, but do not have an input setting for which algorithm to use.
11+
* `github.com/aws/aws-sdk-go-v2/service/sagemaker`: [v1.173.0](service/sagemaker/CHANGELOG.md#v11730-2025-01-16)
12+
* **Feature**: Added support for ml.trn1.32xlarge instance type in Reserved Capacity Offering
13+
114
# Release (2025-01-15)
215

316
## General Highlights

example/service/s3/listObjects/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.21
44

55
require (
66
github.com/aws/aws-sdk-go-v2/config v1.29.0
7-
github.com/aws/aws-sdk-go-v2/service/s3 v1.73.0
7+
github.com/aws/aws-sdk-go-v2/service/s3 v1.73.1
88
)
99

1010
require (
@@ -17,7 +17,7 @@ require (
1717
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
1818
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.28 // indirect
1919
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 // indirect
20-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.0 // indirect
20+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.1 // indirect
2121
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.9 // indirect
2222
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.9 // indirect
2323
github.com/aws/aws-sdk-go-v2/service/sso v1.24.10 // indirect

example/service/s3/usingPrivateLink/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.21
55
require (
66
github.com/aws/aws-sdk-go-v2 v1.33.0
77
github.com/aws/aws-sdk-go-v2/config v1.29.0
8-
github.com/aws/aws-sdk-go-v2/service/s3 v1.73.0
8+
github.com/aws/aws-sdk-go-v2/service/s3 v1.73.1
99
github.com/aws/aws-sdk-go-v2/service/s3control v1.52.5
1010
)
1111

@@ -18,7 +18,7 @@ require (
1818
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
1919
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.28 // indirect
2020
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 // indirect
21-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.0 // indirect
21+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.1 // indirect
2222
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.9 // indirect
2323
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.9 // indirect
2424
github.com/aws/aws-sdk-go-v2/service/sso v1.24.10 // indirect

feature/s3/manager/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.17.51 (2025-01-16)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.17.50 (2025-01-15)
26

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

feature/s3/manager/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.21
55
require (
66
github.com/aws/aws-sdk-go-v2 v1.33.0
77
github.com/aws/aws-sdk-go-v2/config v1.29.0
8-
github.com/aws/aws-sdk-go-v2/service/s3 v1.73.0
8+
github.com/aws/aws-sdk-go-v2/service/s3 v1.73.1
99
github.com/aws/smithy-go v1.22.1
1010
)
1111

@@ -18,7 +18,7 @@ require (
1818
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
1919
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.28 // indirect
2020
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 // indirect
21-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.0 // indirect
21+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.1 // indirect
2222
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.9 // indirect
2323
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.9 // indirect
2424
github.com/aws/aws-sdk-go-v2/service/sso v1.24.10 // indirect

feature/s3/manager/go_module_metadata.go

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

service/ecs/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.53.7 (2025-01-16)
2+
3+
* **Documentation**: The release addresses Amazon ECS documentation tickets.
4+
15
# v1.53.6 (2025-01-15)
26

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

service/ecs/go_module_metadata.go

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

service/internal/benchmark/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/aws/aws-sdk-go-v2 v1.33.0
88
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.39.4
99
github.com/aws/aws-sdk-go-v2/service/lexruntimeservice v1.24.10
10-
github.com/aws/aws-sdk-go-v2/service/s3 v1.73.0
10+
github.com/aws/aws-sdk-go-v2/service/s3 v1.73.1
1111
github.com/aws/aws-sdk-go-v2/service/schemas v1.28.12
1212
github.com/aws/smithy-go v1.22.1
1313
)
@@ -18,7 +18,7 @@ require (
1818
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.28 // indirect
1919
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.28 // indirect
2020
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 // indirect
21-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.0 // indirect
21+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.1 // indirect
2222
github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.10.9 // indirect
2323
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.9 // indirect
2424
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.9 // indirect

service/internal/checksum/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.5.1 (2025-01-16)
2+
3+
* **Bug Fix**: Fix nil dereference panic for operations that require checksums, but do not have an input setting for which algorithm to use.
4+
15
# v1.5.0 (2025-01-15)
26

37
* **Feature**: S3 client behavior is updated to always calculate a checksum by default for operations that support it (such as PutObject or UploadPart), or require it (such as DeleteObjects). The checksum algorithm used by default now becomes CRC32. Checksum behavior can be configured using `when_supported` and `when_required` options - in code using RequestChecksumCalculation, in shared config using request_checksum_calculation, or as env variable using AWS_REQUEST_CHECKSUM_CALCULATION. The S3 client attempts to validate response checksums for all S3 API operations that support checksums. However, if the SDK has not implemented the specified checksum algorithm then this validation is skipped. Checksum validation behavior can be configured using `when_supported` and `when_required` options - in code using ResponseChecksumValidation, in shared config using response_checksum_validation, or as env variable using AWS_RESPONSE_CHECKSUM_VALIDATION.

service/internal/checksum/go_module_metadata.go

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

service/internal/integrationtest/go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/internal/integrationtest
33
require (
44
github.com/aws/aws-sdk-go-v2 v1.33.0
55
github.com/aws/aws-sdk-go-v2/config v1.29.0
6-
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.50
6+
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.51
77
github.com/aws/aws-sdk-go-v2/service/acm v1.30.12
88
github.com/aws/aws-sdk-go-v2/service/apigateway v1.28.6
99
github.com/aws/aws-sdk-go-v2/service/applicationautoscaling v1.34.7
@@ -31,7 +31,7 @@ require (
3131
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.39.4
3232
github.com/aws/aws-sdk-go-v2/service/ec2 v1.199.2
3333
github.com/aws/aws-sdk-go-v2/service/ecr v1.38.5
34-
github.com/aws/aws-sdk-go-v2/service/ecs v1.53.6
34+
github.com/aws/aws-sdk-go-v2/service/ecs v1.53.7
3535
github.com/aws/aws-sdk-go-v2/service/efs v1.34.4
3636
github.com/aws/aws-sdk-go-v2/service/elasticache v1.44.6
3737
github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk v1.28.11
@@ -62,7 +62,7 @@ require (
6262
github.com/aws/aws-sdk-go-v2/service/route53 v1.48.1
6363
github.com/aws/aws-sdk-go-v2/service/route53domains v1.28.4
6464
github.com/aws/aws-sdk-go-v2/service/route53resolver v1.34.7
65-
github.com/aws/aws-sdk-go-v2/service/s3 v1.73.0
65+
github.com/aws/aws-sdk-go-v2/service/s3 v1.73.1
6666
github.com/aws/aws-sdk-go-v2/service/s3control v1.52.5
6767
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.34.12
6868
github.com/aws/aws-sdk-go-v2/service/servicecatalog v1.32.10
@@ -93,7 +93,7 @@ require (
9393
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
9494
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.28 // indirect
9595
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 // indirect
96-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.0 // indirect
96+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.1 // indirect
9797
github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.10.9 // indirect
9898
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.9 // indirect
9999
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.9 // indirect

service/resiliencehub/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.29.4 (2025-01-16)
2+
3+
* No change notes available for this release.
4+
15
# v1.29.3 (2025-01-15)
26

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

service/resiliencehub/go_module_metadata.go

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

service/s3/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.73.1 (2025-01-16)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.73.0 (2025-01-15)
26

37
* **Feature**: S3 client behavior is updated to always calculate a checksum by default for operations that support it (such as PutObject or UploadPart), or require it (such as DeleteObjects). The checksum algorithm used by default now becomes CRC32. Checksum behavior can be configured using `when_supported` and `when_required` options - in code using RequestChecksumCalculation, in shared config using request_checksum_calculation, or as env variable using AWS_REQUEST_CHECKSUM_CALCULATION. The S3 client attempts to validate response checksums for all S3 API operations that support checksums. However, if the SDK has not implemented the specified checksum algorithm then this validation is skipped. Checksum validation behavior can be configured using `when_supported` and `when_required` options - in code using ResponseChecksumValidation, in shared config using response_checksum_validation, or as env variable using AWS_RESPONSE_CHECKSUM_VALIDATION.

service/s3/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.28
1010
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.28
1111
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1
12-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.0
12+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.1
1313
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.9
1414
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.9
1515
github.com/aws/smithy-go v1.22.1

service/s3/go_module_metadata.go

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

service/sagemaker/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.173.0 (2025-01-16)
2+
3+
* **Feature**: Added support for ml.trn1.32xlarge instance type in Reserved Capacity Offering
4+
15
# v1.172.3 (2025-01-15)
26

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

service/sagemaker/go_module_metadata.go

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

0 commit comments

Comments
 (0)