diff --git a/.changelog/03de8b0c1add4877bcfd5472db61ee82.json b/.changelog/03de8b0c1add4877bcfd5472db61ee82.json deleted file mode 100644 index a3b6f86b0ca..00000000000 --- a/.changelog/03de8b0c1add4877bcfd5472db61ee82.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "03de8b0c-1add-4877-bcfd-5472db61ee82", - "type": "bugfix", - "description": "Correct resolution of S3Express auth disable toggle.", - "modules": [ - "config" - ] -} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 6565625b934..3ec562dec1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# Release (2023-11-28.3) + +## General Highlights +* **Dependency Update**: Updated to the latest SDK module versions + +## Module Highlights +* `github.com/aws/aws-sdk-go-v2/config`: [v1.25.8](config/CHANGELOG.md#v1258-2023-11-283) + * **Bug Fix**: Correct resolution of S3Express auth disable toggle. + # Release (2023-11-28.2) ## General Highlights diff --git a/config/CHANGELOG.md b/config/CHANGELOG.md index f111c97ba37..27c3a2886b5 100644 --- a/config/CHANGELOG.md +++ b/config/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.25.8 (2023-11-28.3) + +* **Bug Fix**: Correct resolution of S3Express auth disable toggle. + # v1.25.7 (2023-11-28.2) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/config/go_module_metadata.go b/config/go_module_metadata.go index 99e9dd8c7c1..29027e19192 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.25.7" +const goModuleVersion = "1.25.8" diff --git a/example/service/dynamodb/createTable/go.mod b/example/service/dynamodb/createTable/go.mod index 1d9b60af955..decc298a714 100644 --- a/example/service/dynamodb/createTable/go.mod +++ b/example/service/dynamodb/createTable/go.mod @@ -4,7 +4,7 @@ go 1.19 require ( github.com/aws/aws-sdk-go-v2 v1.23.2 - github.com/aws/aws-sdk-go-v2/config v1.25.7 + github.com/aws/aws-sdk-go-v2/config v1.25.8 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.25.5 ) diff --git a/example/service/dynamodb/scanItems/go.mod b/example/service/dynamodb/scanItems/go.mod index 1632e915f35..8b0e9b8ba57 100644 --- a/example/service/dynamodb/scanItems/go.mod +++ b/example/service/dynamodb/scanItems/go.mod @@ -4,7 +4,7 @@ go 1.19 require ( github.com/aws/aws-sdk-go-v2 v1.23.2 - github.com/aws/aws-sdk-go-v2/config v1.25.7 + github.com/aws/aws-sdk-go-v2/config v1.25.8 github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.12.5 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.25.5 ) diff --git a/example/service/s3/listObjects/go.mod b/example/service/s3/listObjects/go.mod index a5c23a9a975..657e9b857ab 100644 --- a/example/service/s3/listObjects/go.mod +++ b/example/service/s3/listObjects/go.mod @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/example/service/s3/listObjects go 1.19 require ( - github.com/aws/aws-sdk-go-v2/config v1.25.7 + github.com/aws/aws-sdk-go-v2/config v1.25.8 github.com/aws/aws-sdk-go-v2/service/s3 v1.46.0 ) diff --git a/example/service/s3/usingPrivateLink/go.mod b/example/service/s3/usingPrivateLink/go.mod index c04a9ecdd97..90237859a7e 100644 --- a/example/service/s3/usingPrivateLink/go.mod +++ b/example/service/s3/usingPrivateLink/go.mod @@ -4,7 +4,7 @@ go 1.19 require ( github.com/aws/aws-sdk-go-v2 v1.23.2 - github.com/aws/aws-sdk-go-v2/config v1.25.7 + github.com/aws/aws-sdk-go-v2/config v1.25.8 github.com/aws/aws-sdk-go-v2/service/s3 v1.46.0 github.com/aws/aws-sdk-go-v2/service/s3control v1.40.0 ) diff --git a/feature/ec2/imds/internal/configtesting/go.mod b/feature/ec2/imds/internal/configtesting/go.mod index fa4e638bbe5..a0b9af5f672 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.19 require ( - github.com/aws/aws-sdk-go-v2/config v1.25.7 + github.com/aws/aws-sdk-go-v2/config v1.25.8 github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.6 ) diff --git a/feature/s3/manager/CHANGELOG.md b/feature/s3/manager/CHANGELOG.md index 05ee9ba53b5..b154dd290c5 100644 --- a/feature/s3/manager/CHANGELOG.md +++ b/feature/s3/manager/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.15.1 (2023-11-28.3) + +* **Dependency Update**: Updated to the latest SDK module versions + # v1.15.0 (2023-11-28.2) * **Feature**: Add S3Express support. diff --git a/feature/s3/manager/go.mod b/feature/s3/manager/go.mod index 7f52ef3ed6b..72da5fba466 100644 --- a/feature/s3/manager/go.mod +++ b/feature/s3/manager/go.mod @@ -4,7 +4,7 @@ go 1.19 require ( github.com/aws/aws-sdk-go-v2 v1.23.2 - github.com/aws/aws-sdk-go-v2/config v1.25.7 + github.com/aws/aws-sdk-go-v2/config v1.25.8 github.com/aws/aws-sdk-go-v2/service/s3 v1.46.0 github.com/aws/smithy-go v1.17.0 github.com/google/go-cmp v0.5.8 diff --git a/feature/s3/manager/go_module_metadata.go b/feature/s3/manager/go_module_metadata.go index 5999bb5efbc..f34e25a7fd1 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.15.0" +const goModuleVersion = "1.15.1" diff --git a/internal/configsources/configtesting/go.mod b/internal/configsources/configtesting/go.mod index 376092608be..b1370215462 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.19 require ( - github.com/aws/aws-sdk-go-v2/config v1.25.7 + github.com/aws/aws-sdk-go-v2/config v1.25.8 github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.5 ) diff --git a/service/internal/integrationtest/go.mod b/service/internal/integrationtest/go.mod index fbb57937302..13cde53f244 100644 --- a/service/internal/integrationtest/go.mod +++ b/service/internal/integrationtest/go.mod @@ -2,7 +2,7 @@ module github.com/aws/aws-sdk-go-v2/service/internal/integrationtest require ( github.com/aws/aws-sdk-go-v2 v1.23.2 - github.com/aws/aws-sdk-go-v2/config v1.25.7 + github.com/aws/aws-sdk-go-v2/config v1.25.8 github.com/aws/aws-sdk-go-v2/service/acm v1.21.5 github.com/aws/aws-sdk-go-v2/service/apigateway v1.20.5 github.com/aws/aws-sdk-go-v2/service/applicationautoscaling v1.24.5 diff --git a/service/s3/internal/configtesting/go.mod b/service/s3/internal/configtesting/go.mod index 762a2811a35..2a0b8b1e271 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.19 require ( - github.com/aws/aws-sdk-go-v2/config v1.25.7 + github.com/aws/aws-sdk-go-v2/config v1.25.8 github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.16.5 )