diff --git a/.changelog/024e7efafa274001b8677eb90bd32260.json b/.changelog/024e7efafa274001b8677eb90bd32260.json deleted file mode 100644 index 190ccc8e98f..00000000000 --- a/.changelog/024e7efafa274001b8677eb90bd32260.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "024e7efa-fa27-4001-b867-7eb90bd32260", - "type": "feature", - "description": "Adds the LoadOptions hook `WithBaseEndpoint` for setting global endpoint override in-code.", - "modules": [ - "config" - ] -} diff --git a/.changelog/139b04a8d6124cb29dfb9e66f9f70386.json b/.changelog/139b04a8d6124cb29dfb9e66f9f70386.json deleted file mode 100644 index dfa4e81fe2b..00000000000 --- a/.changelog/139b04a8d6124cb29dfb9e66f9f70386.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "139b04a8-d612-4cb2-9dfb-9e66f9f70386", - "type": "bugfix", - "description": "**BREAKING CHANGE**: The type of LaunchTemplateConfiguration.SetDefaultVersion has been changed from `bool` to `*bool`. Before this change, the field was incorrectly marked as having a default value of false by the service, which made it functionally impossible for users to express the full range of values for the field (true, false, and unset/nil), each of which have distinctly different behaviors.", - "modules": [ - "service/imagebuilder" - ] -} diff --git a/.changelog/3490980d7d804e078f8191e7a882e790.json b/.changelog/3490980d7d804e078f8191e7a882e790.json deleted file mode 100644 index c37e95c7b35..00000000000 --- a/.changelog/3490980d7d804e078f8191e7a882e790.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "3490980d-7d80-4e07-8f81-91e7a882e790", - "type": "feature", - "description": "Add support for the new optional bucket-region and prefix query parameters in the ListBuckets API. For ListBuckets requests that express pagination, Amazon S3 will now return both the bucket names and associated AWS regions in the response.", - "modules": [ - "service/s3" - ] -} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index f6be2ae047a..f76b8bbc964 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# Release (2024-10-16) + +## General Highlights +* **Dependency Update**: Updated to the latest SDK module versions + +## Module Highlights +* `github.com/aws/aws-sdk-go-v2/config`: [v1.28.0](config/CHANGELOG.md#v1280-2024-10-16) + * **Feature**: Adds the LoadOptions hook `WithBaseEndpoint` for setting global endpoint override in-code. +* `github.com/aws/aws-sdk-go-v2/service/imagebuilder`: [v1.37.3](service/imagebuilder/CHANGELOG.md#v1373-2024-10-16) + * **Bug Fix**: **BREAKING CHANGE**: The type of LaunchTemplateConfiguration.SetDefaultVersion has been changed from `bool` to `*bool`. Before this change, the field was incorrectly marked as having a default value of false by the service, which made it functionally impossible for users to express the full range of values for the field (true, false, and unset/nil), each of which have distinctly different behaviors. +* `github.com/aws/aws-sdk-go-v2/service/s3`: [v1.66.0](service/s3/CHANGELOG.md#v1660-2024-10-16) + * **Feature**: Add support for the new optional bucket-region and prefix query parameters in the ListBuckets API. For ListBuckets requests that express pagination, Amazon S3 will now return both the bucket names and associated AWS regions in the response. + # Release (2024-10-15) ## Module Highlights diff --git a/config/CHANGELOG.md b/config/CHANGELOG.md index 51f3b93ac1c..f65bc860b1c 100644 --- a/config/CHANGELOG.md +++ b/config/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.28.0 (2024-10-16) + +* **Feature**: Adds the LoadOptions hook `WithBaseEndpoint` for setting global endpoint override in-code. + # v1.27.43 (2024-10-08) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/config/go_module_metadata.go b/config/go_module_metadata.go index 33eedc7e8ff..85d6a9fe9ed 100644 --- a/config/go_module_metadata.go +++ b/config/go_module_metadata.go @@ -3,4 +3,4 @@ package config // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.27.43" +const goModuleVersion = "1.28.0" diff --git a/example/service/dynamodb/createTable/go.mod b/example/service/dynamodb/createTable/go.mod index 5bf2cb24d73..b3a024adfbe 100644 --- a/example/service/dynamodb/createTable/go.mod +++ b/example/service/dynamodb/createTable/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/aws/aws-sdk-go-v2 v1.32.2 - github.com/aws/aws-sdk-go-v2/config v1.27.43 + github.com/aws/aws-sdk-go-v2/config v1.28.0 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.36.2 ) diff --git a/example/service/dynamodb/scanItems/go.mod b/example/service/dynamodb/scanItems/go.mod index 8c85eccc489..807ad5c6f77 100644 --- a/example/service/dynamodb/scanItems/go.mod +++ b/example/service/dynamodb/scanItems/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/aws/aws-sdk-go-v2 v1.32.2 - github.com/aws/aws-sdk-go-v2/config v1.27.43 + github.com/aws/aws-sdk-go-v2/config v1.28.0 github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.15.12 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.36.2 ) diff --git a/example/service/s3/listObjects/go.mod b/example/service/s3/listObjects/go.mod index f228291d636..90e04c63fac 100644 --- a/example/service/s3/listObjects/go.mod +++ b/example/service/s3/listObjects/go.mod @@ -3,8 +3,8 @@ module github.com/aws/aws-sdk-go-v2/example/service/s3/listObjects go 1.21 require ( - github.com/aws/aws-sdk-go-v2/config v1.27.43 - github.com/aws/aws-sdk-go-v2/service/s3 v1.65.3 + github.com/aws/aws-sdk-go-v2/config v1.28.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.66.0 ) require ( diff --git a/example/service/s3/usingPrivateLink/go.mod b/example/service/s3/usingPrivateLink/go.mod index 3d57cf662c3..37414426706 100644 --- a/example/service/s3/usingPrivateLink/go.mod +++ b/example/service/s3/usingPrivateLink/go.mod @@ -4,8 +4,8 @@ go 1.21 require ( github.com/aws/aws-sdk-go-v2 v1.32.2 - github.com/aws/aws-sdk-go-v2/config v1.27.43 - github.com/aws/aws-sdk-go-v2/service/s3 v1.65.3 + github.com/aws/aws-sdk-go-v2/config v1.28.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.66.0 github.com/aws/aws-sdk-go-v2/service/s3control v1.49.2 ) diff --git a/feature/dynamodbstreams/attributevalue/CHANGELOG.md b/feature/dynamodbstreams/attributevalue/CHANGELOG.md index 9ee62c5c105..104209d9528 100644 --- a/feature/dynamodbstreams/attributevalue/CHANGELOG.md +++ b/feature/dynamodbstreams/attributevalue/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.14.36 (2024-10-16) + +* No change notes available for this release. + # v1.14.35 (2024-10-15) * No change notes available for this release. diff --git a/feature/dynamodbstreams/attributevalue/go_module_metadata.go b/feature/dynamodbstreams/attributevalue/go_module_metadata.go index 7a98a199477..6f46d081474 100644 --- a/feature/dynamodbstreams/attributevalue/go_module_metadata.go +++ b/feature/dynamodbstreams/attributevalue/go_module_metadata.go @@ -3,4 +3,4 @@ package attributevalue // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.15.12" +const goModuleVersion = "1.14.36" diff --git a/feature/ec2/imds/internal/configtesting/go.mod b/feature/ec2/imds/internal/configtesting/go.mod index 775ab21a639..ebaa2aeea4b 100644 --- a/feature/ec2/imds/internal/configtesting/go.mod +++ b/feature/ec2/imds/internal/configtesting/go.mod @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/feature/ec2/imds/internal/configtesting go 1.21 require ( - github.com/aws/aws-sdk-go-v2/config v1.27.43 + github.com/aws/aws-sdk-go-v2/config v1.28.0 github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.17 ) diff --git a/feature/s3/manager/CHANGELOG.md b/feature/s3/manager/CHANGELOG.md index 82fc496f613..986f515ec8b 100644 --- a/feature/s3/manager/CHANGELOG.md +++ b/feature/s3/manager/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.17.33 (2024-10-16) + +* **Dependency Update**: Updated to the latest SDK module versions + # v1.17.32 (2024-10-11) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/feature/s3/manager/go.mod b/feature/s3/manager/go.mod index ba3197c9631..c16e5884cdc 100644 --- a/feature/s3/manager/go.mod +++ b/feature/s3/manager/go.mod @@ -4,8 +4,8 @@ go 1.21 require ( github.com/aws/aws-sdk-go-v2 v1.32.2 - github.com/aws/aws-sdk-go-v2/config v1.27.43 - github.com/aws/aws-sdk-go-v2/service/s3 v1.65.3 + github.com/aws/aws-sdk-go-v2/config v1.28.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.66.0 github.com/aws/smithy-go v1.22.0 ) diff --git a/feature/s3/manager/go_module_metadata.go b/feature/s3/manager/go_module_metadata.go index 82bb246ba98..c8f49cfc004 100644 --- a/feature/s3/manager/go_module_metadata.go +++ b/feature/s3/manager/go_module_metadata.go @@ -3,4 +3,4 @@ package manager // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.17.32" +const goModuleVersion = "1.17.33" diff --git a/internal/configsources/configtesting/go.mod b/internal/configsources/configtesting/go.mod index c9a5dcc46b2..9d79d6597e1 100644 --- a/internal/configsources/configtesting/go.mod +++ b/internal/configsources/configtesting/go.mod @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/internal/configsources/configtesting go 1.21 require ( - github.com/aws/aws-sdk-go-v2/config v1.27.43 + github.com/aws/aws-sdk-go-v2/config v1.28.0 github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.21 ) diff --git a/service/imagebuilder/CHANGELOG.md b/service/imagebuilder/CHANGELOG.md index 9e840aed871..92827866e5e 100644 --- a/service/imagebuilder/CHANGELOG.md +++ b/service/imagebuilder/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.37.3 (2024-10-16) + +* **Bug Fix**: **BREAKING CHANGE**: The type of LaunchTemplateConfiguration.SetDefaultVersion has been changed from `bool` to `*bool`. Before this change, the field was incorrectly marked as having a default value of false by the service, which made it functionally impossible for users to express the full range of values for the field (true, false, and unset/nil), each of which have distinctly different behaviors. + # v1.37.2 (2024-10-08) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/service/imagebuilder/go_module_metadata.go b/service/imagebuilder/go_module_metadata.go index ae5e2327223..b3e0ba6c238 100644 --- a/service/imagebuilder/go_module_metadata.go +++ b/service/imagebuilder/go_module_metadata.go @@ -3,4 +3,4 @@ package imagebuilder // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.37.2" +const goModuleVersion = "1.37.3" diff --git a/service/internal/benchmark/go.mod b/service/internal/benchmark/go.mod index 5f1b1508275..cdce1ab606a 100644 --- a/service/internal/benchmark/go.mod +++ b/service/internal/benchmark/go.mod @@ -7,7 +7,7 @@ require ( github.com/aws/aws-sdk-go-v2 v1.32.2 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.36.2 github.com/aws/aws-sdk-go-v2/service/lexruntimeservice v1.24.2 - github.com/aws/aws-sdk-go-v2/service/s3 v1.65.3 + github.com/aws/aws-sdk-go-v2/service/s3 v1.66.0 github.com/aws/aws-sdk-go-v2/service/schemas v1.28.3 github.com/aws/smithy-go v1.22.0 ) diff --git a/service/internal/integrationtest/go.mod b/service/internal/integrationtest/go.mod index fdd812b5bf4..c644ffdb69a 100644 --- a/service/internal/integrationtest/go.mod +++ b/service/internal/integrationtest/go.mod @@ -2,8 +2,8 @@ module github.com/aws/aws-sdk-go-v2/service/internal/integrationtest require ( github.com/aws/aws-sdk-go-v2 v1.32.2 - github.com/aws/aws-sdk-go-v2/config v1.27.43 - github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.32 + github.com/aws/aws-sdk-go-v2/config v1.28.0 + github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.33 github.com/aws/aws-sdk-go-v2/service/acm v1.30.2 github.com/aws/aws-sdk-go-v2/service/apigateway v1.27.2 github.com/aws/aws-sdk-go-v2/service/applicationautoscaling v1.33.2 @@ -63,7 +63,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/route53 v1.45.2 github.com/aws/aws-sdk-go-v2/service/route53domains v1.27.2 github.com/aws/aws-sdk-go-v2/service/route53resolver v1.33.0 - github.com/aws/aws-sdk-go-v2/service/s3 v1.65.3 + github.com/aws/aws-sdk-go-v2/service/s3 v1.66.0 github.com/aws/aws-sdk-go-v2/service/s3control v1.49.2 github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.34.2 github.com/aws/aws-sdk-go-v2/service/servicecatalog v1.32.2 diff --git a/service/s3/CHANGELOG.md b/service/s3/CHANGELOG.md index f8c79ec50b9..ee2c4271cdc 100644 --- a/service/s3/CHANGELOG.md +++ b/service/s3/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.66.0 (2024-10-16) + +* **Feature**: Add support for the new optional bucket-region and prefix query parameters in the ListBuckets API. For ListBuckets requests that express pagination, Amazon S3 will now return both the bucket names and associated AWS regions in the response. + # v1.65.3 (2024-10-11) * **Bug Fix**: **BREAKING CHANGE**: S3 ReplicationRuleFilter and LifecycleRuleFilter shapes are being changed from union to structure types diff --git a/service/s3/go_module_metadata.go b/service/s3/go_module_metadata.go index fb11d636f4c..3a1881aca92 100644 --- a/service/s3/go_module_metadata.go +++ b/service/s3/go_module_metadata.go @@ -3,4 +3,4 @@ package s3 // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.65.3" +const goModuleVersion = "1.66.0" diff --git a/service/s3/internal/configtesting/go.mod b/service/s3/internal/configtesting/go.mod index 1bc2546bb5f..848382256de 100644 --- a/service/s3/internal/configtesting/go.mod +++ b/service/s3/internal/configtesting/go.mod @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/s3/internal/configtesting go 1.21 require ( - github.com/aws/aws-sdk-go-v2/config v1.27.43 + github.com/aws/aws-sdk-go-v2/config v1.28.0 github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.2 )