Skip to content

Commit ac82667

Browse files
author
AWS SDK for Go v2 automation user
committed
Release 2025-04-09
1 parent 7db3afa commit ac82667

37 files changed

+90
-62
lines changed

.changelog/08a986f4bd434e39936c5298dae53626.json

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

.changelog/2b2f91bf3d584661ad723accb443e6c5.json

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

.changelog/8e6f1842e9944b8999dc40458634c393.json

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

.changelog/e864d214ea274631b93084e6210125c4.json

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

.changelog/f7af636cf58b47299c219f15659c027f.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-04-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/feature/dynamodb/expression`: [v1.7.77](feature/dynamodb/expression/CHANGELOG.md#v1777-2025-04-09)
8+
* **Bug Fix**: allow nested list indices in expressions
9+
* `github.com/aws/aws-sdk-go-v2/service/controlcatalog`: [v1.8.0](service/controlcatalog/CHANGELOG.md#v180-2025-04-09)
10+
* **Feature**: The GetControl API now surfaces a control's Severity, CreateTime, and Identifier for a control's Implementation. The ListControls API now surfaces a control's Behavior, Severity, CreateTime, and Identifier for a control's Implementation.
11+
* `github.com/aws/aws-sdk-go-v2/service/dynamodb`: [v1.42.2](service/dynamodb/CHANGELOG.md#v1422-2025-04-09)
12+
* **Documentation**: Documentation update for secondary indexes and Create_Table.
13+
* `github.com/aws/aws-sdk-go-v2/service/glue`: [v1.109.0](service/glue/CHANGELOG.md#v11090-2025-04-09)
14+
* **Feature**: The TableOptimizer APIs in AWS Glue now return the DpuHours field in each TableOptimizerRun, providing clients visibility to the DPU-hours used for billing in managed Apache Iceberg table compaction optimization.
15+
* `github.com/aws/aws-sdk-go-v2/service/groundstation`: [v1.33.0](service/groundstation/CHANGELOG.md#v1330-2025-04-09)
16+
* **Feature**: Support tagging Agents and adjust input field validations
17+
* `github.com/aws/aws-sdk-go-v2/service/transfer`: [v1.60.0](service/transfer/CHANGELOG.md#v1600-2025-04-09)
18+
* **Feature**: This launch includes 2 enhancements to SFTP connectors user-experience: 1) Customers can self-serve concurrent connections setting for their connectors, and 2) Customers can discover the public host key of remote servers using their SFTP connectors.
19+
120
# Release (2025-04-08)
221

322
## Module Highlights

example/service/dynamodb/createTable/go.mod

Lines changed: 1 addition & 1 deletion
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.13
8-
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.1
8+
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.2
99
)
1010

1111
require (

example/service/dynamodb/scanItems/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ 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.13
8-
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.18.9
9-
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.1
8+
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.18.10
9+
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.2
1010
)
1111

1212
require (

feature/dynamodb/attributevalue/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.18.10 (2025-04-09)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.18.9 (2025-04-03)
26

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

feature/dynamodb/attributevalue/go.mod

Lines changed: 1 addition & 1 deletion
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 v1.36.3
7-
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.1
7+
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.2
88
github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v1.25.2
99
)
1010

feature/dynamodb/attributevalue/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.

feature/dynamodb/expression/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# v1.7.77 (2025-04-09)
2+
3+
* **Bug Fix**: allow nested list indices in expressions
4+
* **Dependency Update**: Updated to the latest SDK module versions
5+
16
# v1.7.76 (2025-04-03)
27

38
* **Bug Fix**: allow nested list indices in expressions

feature/dynamodb/expression/go.mod

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

55
require (
66
github.com/aws/aws-sdk-go-v2 v1.36.3
7-
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.18.9
8-
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.1
7+
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.18.10
8+
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.2
99
)
1010

1111
require (

feature/dynamodb/expression/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.

feature/dynamodbstreams/attributevalue/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.17.10 (2025-04-09)
2+
3+
* **Dependency Update**: Updated to the latest SDK module versions
4+
15
# v1.17.9 (2025-04-03)
26

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

feature/dynamodbstreams/attributevalue/go.mod

Lines changed: 1 addition & 1 deletion
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 v1.36.3
7-
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.1
7+
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.2
88
github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v1.25.2
99
)
1010

feature/dynamodbstreams/attributevalue/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/controlcatalog/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.8.0 (2025-04-09)
2+
3+
* **Feature**: The GetControl API now surfaces a control's Severity, CreateTime, and Identifier for a control's Implementation. The ListControls API now surfaces a control's Behavior, Severity, CreateTime, and Identifier for a control's Implementation.
4+
15
# v1.7.3 (2025-04-03)
26

37
* No change notes available for this release.

service/controlcatalog/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/dynamodb/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.42.2 (2025-04-09)
2+
3+
* **Documentation**: Documentation update for secondary indexes and Create_Table.
4+
15
# v1.42.1 (2025-04-03)
26

37
* No change notes available for this release.

service/dynamodb/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/emrserverless/CHANGELOG.md

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

37
* No change notes available for this release.

service/emrserverless/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/glue/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.109.0 (2025-04-09)
2+
3+
* **Feature**: The TableOptimizer APIs in AWS Glue now return the DpuHours field in each TableOptimizerRun, providing clients visibility to the DPU-hours used for billing in managed Apache Iceberg table compaction optimization.
4+
15
# v1.108.0 (2025-04-07)
26

37
* **Feature**: Add input validations for multiple Glue APIs

service/glue/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/groundstation/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.33.0 (2025-04-09)
2+
3+
* **Feature**: Support tagging Agents and adjust input field validations
4+
15
# v1.32.2 (2025-04-03)
26

37
* No change notes available for this release.

service/groundstation/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/benchmark/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.22
55
require (
66
github.com/aws/aws-sdk-go v1.44.28
77
github.com/aws/aws-sdk-go-v2 v1.36.3
8-
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.1
8+
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.2
99
github.com/aws/aws-sdk-go-v2/service/lexruntimeservice v1.25.2
1010
github.com/aws/aws-sdk-go-v2/service/s3 v1.79.1
1111
github.com/aws/aws-sdk-go-v2/service/schemas v1.29.2

service/internal/integrationtest/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ require (
2828
github.com/aws/aws-sdk-go-v2/service/directconnect v1.32.1
2929
github.com/aws/aws-sdk-go-v2/service/directoryservice v1.31.3
3030
github.com/aws/aws-sdk-go-v2/service/docdb v1.41.2
31-
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.1
31+
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.2
3232
github.com/aws/aws-sdk-go-v2/service/ec2 v1.211.2
3333
github.com/aws/aws-sdk-go-v2/service/ecr v1.43.2
3434
github.com/aws/aws-sdk-go-v2/service/ecs v1.54.5
@@ -43,7 +43,7 @@ require (
4343
github.com/aws/aws-sdk-go-v2/service/firehose v1.37.2
4444
github.com/aws/aws-sdk-go-v2/service/gamelift v1.41.1
4545
github.com/aws/aws-sdk-go-v2/service/glacier v1.27.3
46-
github.com/aws/aws-sdk-go-v2/service/glue v1.108.0
46+
github.com/aws/aws-sdk-go-v2/service/glue v1.109.0
4747
github.com/aws/aws-sdk-go-v2/service/health v1.30.2
4848
github.com/aws/aws-sdk-go-v2/service/iam v1.41.1
4949
github.com/aws/aws-sdk-go-v2/service/inspector v1.26.2

service/marketplaceentitlementservice/CHANGELOG.md

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

37
* No change notes available for this release.

service/marketplaceentitlementservice/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/marketplacemetering/CHANGELOG.md

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

37
* No change notes available for this release.

service/marketplacemetering/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/osis/CHANGELOG.md

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

37
* No change notes available for this release.

service/osis/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/transfer/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.60.0 (2025-04-09)
2+
3+
* **Feature**: This launch includes 2 enhancements to SFTP connectors user-experience: 1) Customers can self-serve concurrent connections setting for their connectors, and 2) Customers can discover the public host key of remote servers using their SFTP connectors.
4+
15
# v1.59.0 (2025-04-07)
26

37
* **Feature**: This launch enables customers to manage contents of their remote directories, by deleting old files or moving files to archive folders in remote servers once they have been retrieved. Customers will be able to automate the process using event-driven architecture.

service/transfer/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)