diff --git a/.changelog/2dd86ee01ff44ae2a3d6098a2174ccbf.json b/.changelog/2dd86ee01ff44ae2a3d6098a2174ccbf.json deleted file mode 100644 index be1ca839742..00000000000 --- a/.changelog/2dd86ee01ff44ae2a3d6098a2174ccbf.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "2dd86ee0-1ff4-4ae2-a3d6-098a2174ccbf", - "type": "feature", - "description": "Documentation updates for Amazon API Gateway", - "modules": [ - "service/apigatewayv2" - ] -} \ No newline at end of file diff --git a/.changelog/82bdd515613b4b45810be5b9fbdb0c25.json b/.changelog/82bdd515613b4b45810be5b9fbdb0c25.json deleted file mode 100644 index 62c8b666282..00000000000 --- a/.changelog/82bdd515613b4b45810be5b9fbdb0c25.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "82bdd515-613b-4b45-810b-e5b9fbdb0c25", - "type": "documentation", - "description": "Doc-only update that adds defaults for CloudFront VpcOriginEndpointConfig values.", - "modules": [ - "service/cloudfront" - ] -} \ No newline at end of file diff --git a/.changelog/b9310cb8012b4e4b81871a325c2df06f.json b/.changelog/b9310cb8012b4e4b81871a325c2df06f.json deleted file mode 100644 index 4db51d5df15..00000000000 --- a/.changelog/b9310cb8012b4e4b81871a325c2df06f.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "b9310cb8-012b-4e4b-8187-1a325c2df06f", - "type": "documentation", - "description": "Updated the CreateContact API documentation to indicate that it only applies to EMAIL contacts.", - "modules": [ - "service/connect" - ] -} \ No newline at end of file diff --git a/.changelog/f007dcb88454412692915fadefdcf8cc.json b/.changelog/f007dcb88454412692915fadefdcf8cc.json deleted file mode 100644 index bf95f2caf7c..00000000000 --- a/.changelog/f007dcb88454412692915fadefdcf8cc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "id": "f007dcb8-8454-4126-9291-5fadefdcf8cc", - "type": "feature", - "description": "Support CRC64NVME flex checksums.", - "modules": [ - "service/internal/checksum", - "service/internal/integrationtest" - ] -} \ No newline at end of file diff --git a/.changelog/f31fc60c43194f10950682adc6c83ed7.json b/.changelog/f31fc60c43194f10950682adc6c83ed7.json deleted file mode 100644 index 9989b2d8d95..00000000000 --- a/.changelog/f31fc60c43194f10950682adc6c83ed7.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "f31fc60c-4319-4f10-9506-82adc6c83ed7", - "type": "feature", - "description": "New vendors for DMS Data Providers: DB2 LUW and DB2 for z/OS", - "modules": [ - "service/databasemigrationservice" - ] -} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 97f0907ff84..eeed99adf27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# Release (2025-02-10) + +## General Highlights +* **Dependency Update**: Updated to the latest SDK module versions + +## Module Highlights +* `github.com/aws/aws-sdk-go-v2/service/apigatewayv2`: [v1.25.0](service/apigatewayv2/CHANGELOG.md#v1250-2025-02-10) + * **Feature**: Documentation updates for Amazon API Gateway +* `github.com/aws/aws-sdk-go-v2/service/cloudfront`: [v1.44.10](service/cloudfront/CHANGELOG.md#v14410-2025-02-10) + * **Documentation**: Doc-only update that adds defaults for CloudFront VpcOriginEndpointConfig values. +* `github.com/aws/aws-sdk-go-v2/service/connect`: [v1.124.5](service/connect/CHANGELOG.md#v11245-2025-02-10) + * **Documentation**: Updated the CreateContact API documentation to indicate that it only applies to EMAIL contacts. +* `github.com/aws/aws-sdk-go-v2/service/databasemigrationservice`: [v1.47.0](service/databasemigrationservice/CHANGELOG.md#v1470-2025-02-10) + * **Feature**: New vendors for DMS Data Providers: DB2 LUW and DB2 for z/OS +* `github.com/aws/aws-sdk-go-v2/service/internal/checksum`: [v1.6.0](service/internal/checksum/CHANGELOG.md#v160-2025-02-10) + * **Feature**: Support CRC64NVME flex checksums. + # Release (2025-02-07) ## Module Highlights diff --git a/example/service/s3/listObjects/go.mod b/example/service/s3/listObjects/go.mod index 657d18eac61..bd3ad9ec3a2 100644 --- a/example/service/s3/listObjects/go.mod +++ b/example/service/s3/listObjects/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/aws/aws-sdk-go-v2/config v1.29.6 - github.com/aws/aws-sdk-go-v2/service/s3 v1.76.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.76.1 ) require ( @@ -17,7 +17,7 @@ require ( github.com/aws/aws-sdk-go-v2/internal/ini v1.8.2 // indirect github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.32 // indirect github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.2 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.6 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.6.0 // indirect github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.13 // indirect github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.13 // indirect github.com/aws/aws-sdk-go-v2/service/sso v1.24.15 // indirect diff --git a/example/service/s3/usingPrivateLink/go.mod b/example/service/s3/usingPrivateLink/go.mod index 92b371433e8..533eb413148 100644 --- a/example/service/s3/usingPrivateLink/go.mod +++ b/example/service/s3/usingPrivateLink/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/aws/aws-sdk-go-v2 v1.36.1 github.com/aws/aws-sdk-go-v2/config v1.29.6 - github.com/aws/aws-sdk-go-v2/service/s3 v1.76.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.76.1 github.com/aws/aws-sdk-go-v2/service/s3control v1.53.4 ) @@ -18,7 +18,7 @@ require ( github.com/aws/aws-sdk-go-v2/internal/ini v1.8.2 // indirect github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.32 // indirect github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.2 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.6 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.6.0 // indirect github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.13 // indirect github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.13 // indirect github.com/aws/aws-sdk-go-v2/service/sso v1.24.15 // indirect diff --git a/feature/s3/manager/CHANGELOG.md b/feature/s3/manager/CHANGELOG.md index 6a1081f73d0..1c09dbab850 100644 --- a/feature/s3/manager/CHANGELOG.md +++ b/feature/s3/manager/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.17.61 (2025-02-10) + +* **Dependency Update**: Updated to the latest SDK module versions + # v1.17.60 (2025-02-06) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/feature/s3/manager/go.mod b/feature/s3/manager/go.mod index 2e25b62b0fd..f6cc877695e 100644 --- a/feature/s3/manager/go.mod +++ b/feature/s3/manager/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/aws/aws-sdk-go-v2 v1.36.1 github.com/aws/aws-sdk-go-v2/config v1.29.6 - github.com/aws/aws-sdk-go-v2/service/s3 v1.76.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.76.1 github.com/aws/smithy-go v1.22.2 ) @@ -18,7 +18,7 @@ require ( github.com/aws/aws-sdk-go-v2/internal/ini v1.8.2 // indirect github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.32 // indirect github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.2 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.6 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.6.0 // indirect github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.13 // indirect github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.13 // indirect github.com/aws/aws-sdk-go-v2/service/sso v1.24.15 // indirect diff --git a/feature/s3/manager/go_module_metadata.go b/feature/s3/manager/go_module_metadata.go index eab090574c9..60bd93f88d5 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.60" +const goModuleVersion = "1.17.61" diff --git a/feature/s3/transfermanager/go.mod b/feature/s3/transfermanager/go.mod index 9024bbe35fd..b8beed3743b 100644 --- a/feature/s3/transfermanager/go.mod +++ b/feature/s3/transfermanager/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/aws/aws-sdk-go-v2 v1.36.1 github.com/aws/aws-sdk-go-v2/config v1.29.6 - github.com/aws/aws-sdk-go-v2/service/s3 v1.76.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.76.1 github.com/aws/aws-sdk-go-v2/service/sts v1.33.14 github.com/aws/smithy-go v1.22.2 ) @@ -19,7 +19,7 @@ require ( github.com/aws/aws-sdk-go-v2/internal/ini v1.8.2 // indirect github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.32 // indirect github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.2 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.6 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.6.0 // indirect github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.13 // indirect github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.13 // indirect github.com/aws/aws-sdk-go-v2/service/sso v1.24.15 // indirect diff --git a/service/apigatewayv2/CHANGELOG.md b/service/apigatewayv2/CHANGELOG.md index 3062db93852..1ddbe5f2c23 100644 --- a/service/apigatewayv2/CHANGELOG.md +++ b/service/apigatewayv2/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.25.0 (2025-02-10) + +* **Feature**: Documentation updates for Amazon API Gateway + # v1.24.17 (2025-02-05) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/service/apigatewayv2/go_module_metadata.go b/service/apigatewayv2/go_module_metadata.go index b24cba36da4..379aca06ad0 100644 --- a/service/apigatewayv2/go_module_metadata.go +++ b/service/apigatewayv2/go_module_metadata.go @@ -3,4 +3,4 @@ package apigatewayv2 // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.24.17" +const goModuleVersion = "1.25.0" diff --git a/service/cloudfront/CHANGELOG.md b/service/cloudfront/CHANGELOG.md index 846c63a41c0..34cf3fced08 100644 --- a/service/cloudfront/CHANGELOG.md +++ b/service/cloudfront/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.44.10 (2025-02-10) + +* **Documentation**: Doc-only update that adds defaults for CloudFront VpcOriginEndpointConfig values. + # v1.44.9 (2025-02-05) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/service/cloudfront/go_module_metadata.go b/service/cloudfront/go_module_metadata.go index 765a64503f0..da1bb5df019 100644 --- a/service/cloudfront/go_module_metadata.go +++ b/service/cloudfront/go_module_metadata.go @@ -3,4 +3,4 @@ package cloudfront // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.44.9" +const goModuleVersion = "1.44.10" diff --git a/service/connect/CHANGELOG.md b/service/connect/CHANGELOG.md index 8bdf2ce64bf..e1624923598 100644 --- a/service/connect/CHANGELOG.md +++ b/service/connect/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.124.5 (2025-02-10) + +* **Documentation**: Updated the CreateContact API documentation to indicate that it only applies to EMAIL contacts. + # v1.124.4 (2025-02-05) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/service/connect/go_module_metadata.go b/service/connect/go_module_metadata.go index 406f8103c7a..ee9be02f515 100644 --- a/service/connect/go_module_metadata.go +++ b/service/connect/go_module_metadata.go @@ -3,4 +3,4 @@ package connect // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.124.4" +const goModuleVersion = "1.124.5" diff --git a/service/databasemigrationservice/CHANGELOG.md b/service/databasemigrationservice/CHANGELOG.md index 3e1a2abcae2..29cf48fdf30 100644 --- a/service/databasemigrationservice/CHANGELOG.md +++ b/service/databasemigrationservice/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.47.0 (2025-02-10) + +* **Feature**: New vendors for DMS Data Providers: DB2 LUW and DB2 for z/OS + # v1.46.1 (2025-02-05) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/service/databasemigrationservice/go_module_metadata.go b/service/databasemigrationservice/go_module_metadata.go index 5cf0a0387eb..aba22716dee 100644 --- a/service/databasemigrationservice/go_module_metadata.go +++ b/service/databasemigrationservice/go_module_metadata.go @@ -3,4 +3,4 @@ package databasemigrationservice // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.46.1" +const goModuleVersion = "1.47.0" diff --git a/service/internal/benchmark/go.mod b/service/internal/benchmark/go.mod index 3e71b6d9749..aeeb5c33f80 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.36.1 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.40.0 github.com/aws/aws-sdk-go-v2/service/lexruntimeservice v1.24.15 - github.com/aws/aws-sdk-go-v2/service/s3 v1.76.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.76.1 github.com/aws/aws-sdk-go-v2/service/schemas v1.28.17 github.com/aws/smithy-go v1.22.2 ) @@ -18,7 +18,7 @@ require ( github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.32 // indirect github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.32 // indirect github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.2 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.6 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.6.0 // indirect github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.10.13 // indirect github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.13 // indirect github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.13 // indirect diff --git a/service/internal/checksum/CHANGELOG.md b/service/internal/checksum/CHANGELOG.md index 0ca5d5c9d41..7d38fa28828 100644 --- a/service/internal/checksum/CHANGELOG.md +++ b/service/internal/checksum/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.6.0 (2025-02-10) + +* **Feature**: Support CRC64NVME flex checksums. + # v1.5.6 (2025-02-05) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/service/internal/checksum/go_module_metadata.go b/service/internal/checksum/go_module_metadata.go index 80ea18b95e6..cc62a8bb3ed 100644 --- a/service/internal/checksum/go_module_metadata.go +++ b/service/internal/checksum/go_module_metadata.go @@ -3,4 +3,4 @@ package checksum // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.5.6" +const goModuleVersion = "1.6.0" diff --git a/service/internal/integrationtest/go.mod b/service/internal/integrationtest/go.mod index 93891b50430..cd7233357a4 100644 --- a/service/internal/integrationtest/go.mod +++ b/service/internal/integrationtest/go.mod @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/internal/integrationtest require ( github.com/aws/aws-sdk-go-v2 v1.36.1 github.com/aws/aws-sdk-go-v2/config v1.29.6 - github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.60 + github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.61 github.com/aws/aws-sdk-go-v2/service/acm v1.30.18 github.com/aws/aws-sdk-go-v2/service/apigateway v1.28.11 github.com/aws/aws-sdk-go-v2/service/applicationautoscaling v1.34.13 @@ -12,7 +12,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/athena v1.49.10 github.com/aws/aws-sdk-go-v2/service/batch v1.49.12 github.com/aws/aws-sdk-go-v2/service/cloudformation v1.57.0 - github.com/aws/aws-sdk-go-v2/service/cloudfront v1.44.9 + github.com/aws/aws-sdk-go-v2/service/cloudfront v1.44.10 github.com/aws/aws-sdk-go-v2/service/cloudhsmv2 v1.29.7 github.com/aws/aws-sdk-go-v2/service/cloudtrail v1.47.4 github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.43.14 @@ -23,7 +23,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider v1.49.4 github.com/aws/aws-sdk-go-v2/service/configservice v1.51.12 github.com/aws/aws-sdk-go-v2/service/costandusagereportservice v1.28.15 - github.com/aws/aws-sdk-go-v2/service/databasemigrationservice v1.46.1 + github.com/aws/aws-sdk-go-v2/service/databasemigrationservice v1.47.0 github.com/aws/aws-sdk-go-v2/service/devicefarm v1.28.15 github.com/aws/aws-sdk-go-v2/service/directconnect v1.30.12 github.com/aws/aws-sdk-go-v2/service/directoryservice v1.30.17 @@ -62,7 +62,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/route53 v1.48.7 github.com/aws/aws-sdk-go-v2/service/route53domains v1.28.9 github.com/aws/aws-sdk-go-v2/service/route53resolver v1.34.13 - github.com/aws/aws-sdk-go-v2/service/s3 v1.76.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.76.1 github.com/aws/aws-sdk-go-v2/service/s3control v1.53.4 github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.34.18 github.com/aws/aws-sdk-go-v2/service/servicecatalog v1.32.15 @@ -93,7 +93,7 @@ require ( github.com/aws/aws-sdk-go-v2/internal/ini v1.8.2 // indirect github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.32 // indirect github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.2 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.6 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.6.0 // indirect github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.10.13 // indirect github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.13 // indirect github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.13 // indirect diff --git a/service/s3/CHANGELOG.md b/service/s3/CHANGELOG.md index 46e2b9bfed4..4ff94a3ca71 100644 --- a/service/s3/CHANGELOG.md +++ b/service/s3/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.76.1 (2025-02-10) + +* **Dependency Update**: Updated to the latest SDK module versions + # v1.76.0 (2025-02-06) * **Feature**: Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets. diff --git a/service/s3/go.mod b/service/s3/go.mod index 9788fc583b5..0fd467a6087 100644 --- a/service/s3/go.mod +++ b/service/s3/go.mod @@ -9,7 +9,7 @@ require ( github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.32 github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.32 github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.2 - github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.6 + github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.6.0 github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.13 github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.13 github.com/aws/smithy-go v1.22.2 diff --git a/service/s3/go_module_metadata.go b/service/s3/go_module_metadata.go index de883e1ef00..f70dd6bf4c2 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.76.0" +const goModuleVersion = "1.76.1" diff --git a/service/transcribe/CHANGELOG.md b/service/transcribe/CHANGELOG.md index 1a769576e52..25bb2793106 100644 --- a/service/transcribe/CHANGELOG.md +++ b/service/transcribe/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.43.1 (2025-02-10) + +* No change notes available for this release. + # v1.43.0 (2025-02-07) * **Feature**: This release adds support for the Clinical Note Template Customization feature for the AWS HealthScribe APIs within Amazon Transcribe. diff --git a/service/transcribe/go_module_metadata.go b/service/transcribe/go_module_metadata.go index 4dc8c5d1cb7..dc15fa35164 100644 --- a/service/transcribe/go_module_metadata.go +++ b/service/transcribe/go_module_metadata.go @@ -3,4 +3,4 @@ package transcribe // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.43.0" +const goModuleVersion = "1.43.1"