Skip to content

Commit 6d110cb

Browse files
author
AWS SDK for Go v2 automation user
committed
Release 2025-03-11
1 parent 0a916fa commit 6d110cb

40 files changed

+102
-79
lines changed

.changelog/1584f561f67e4cf4adb8cc9b75bf87b0.json

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

.changelog/3512fe5d535342d8af04ce4e93c38b89.json

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

.changelog/55c21a8e8be94c9986780fa1f28e742e.json

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

.changelog/74884ba488df444c8b43fff063ca5f94.json

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

.changelog/74cd8c1d1dc6462196434b6cc780cac2.json

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

.changelog/a9f894eea65e4904acba16597235a29c.json

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

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# Release (2025-03-11)
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/ec2`: [v1.209.0](service/ec2/CHANGELOG.md#v12090-2025-03-11)
8+
* **Feature**: This release adds the GroupLongName field to the response of the DescribeAvailabilityZones API.
9+
* `github.com/aws/aws-sdk-go-v2/service/ecr`: [v1.43.0](service/ecr/CHANGELOG.md#v1430-2025-03-11)
10+
* **Feature**: This release adds Amazon ECR to Amazon ECR pull through cache rules support.
11+
* `github.com/aws/aws-sdk-go-v2/service/ecs`: [v1.54.2](service/ecs/CHANGELOG.md#v1542-2025-03-11)
12+
* **Documentation**: This is a documentation only update for Amazon ECS to address various tickets.
13+
* `github.com/aws/aws-sdk-go-v2/service/inspector2`: [v1.36.0](service/inspector2/CHANGELOG.md#v1360-2025-03-11)
14+
* **Feature**: Adding componentArn to network reachability details
15+
* `github.com/aws/aws-sdk-go-v2/service/internal/checksum`: [v1.7.0](service/internal/checksum/CHANGELOG.md#v170-2025-03-11)
16+
* **Feature**: Add extra check during output checksum validation so the validation skip warning would not be logged if object is not fetched from s3
17+
* `github.com/aws/aws-sdk-go-v2/service/medialive`: [v1.71.0](service/medialive/CHANGELOG.md#v1710-2025-03-11)
18+
* **Feature**: Add an enum option DISABLED for Output Locking Mode under Global Configuration.
19+
120
# Release (2025-03-10)
221

322
## Module Highlights

example/service/s3/listObjects/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.22
44

55
require (
66
github.com/aws/aws-sdk-go-v2/config v1.29.9
7-
github.com/aws/aws-sdk-go-v2/service/s3 v1.78.1
7+
github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2
88
)
99

1010
require (
@@ -17,7 +17,7 @@ require (
1717
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.3 // indirect
1818
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.34 // indirect
1919
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.3 // indirect
20-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.6.2 // indirect
20+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.0 // indirect
2121
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 // indirect
2222
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 // indirect
2323
github.com/aws/aws-sdk-go-v2/service/sso v1.25.1 // indirect

example/service/s3/usingPrivateLink/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.22
55
require (
66
github.com/aws/aws-sdk-go-v2 v1.36.3
77
github.com/aws/aws-sdk-go-v2/config v1.29.9
8-
github.com/aws/aws-sdk-go-v2/service/s3 v1.78.1
8+
github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2
99
github.com/aws/aws-sdk-go-v2/service/s3control v1.54.1
1010
)
1111

@@ -18,7 +18,7 @@ require (
1818
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.3 // indirect
1919
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.34 // indirect
2020
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.3 // indirect
21-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.6.2 // indirect
21+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.0 // indirect
2222
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 // indirect
2323
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 // indirect
2424
github.com/aws/aws-sdk-go-v2/service/sso v1.25.1 // indirect

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.17.66 (2025-03-11)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.17.65 (2025-03-04.2)
26

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

0 commit comments

Comments
 (0)