From 03a0ffc0e9a9fcdfad686c1d47966d204d502098 Mon Sep 17 00:00:00 2001 From: AWS SDK for Go v2 automation user Date: Mon, 25 Nov 2024 19:39:09 +0000 Subject: [PATCH] Release 2024-11-25 --- .changelog/21537aa6d4d647d89f2da00c3e6ba23b.json | 8 -------- .changelog/bdbd39bb1d60408ca26d8cec1cb878e7.json | 8 -------- .changelog/fed8615a52bf40e786a350b2a8504a80.json | 8 -------- CHANGELOG.md | 13 +++++++++++++ example/service/s3/listObjects/go.mod | 2 +- example/service/s3/usingPrivateLink/go.mod | 2 +- feature/s3/manager/CHANGELOG.md | 4 ++++ feature/s3/manager/go.mod | 2 +- feature/s3/manager/go_module_metadata.go | 2 +- service/directconnect/CHANGELOG.md | 4 ++++ service/directconnect/go_module_metadata.go | 2 +- service/internal/benchmark/go.mod | 2 +- service/internal/integrationtest/go.mod | 6 +++--- service/networkmanager/CHANGELOG.md | 4 ++++ service/networkmanager/go_module_metadata.go | 2 +- service/s3/CHANGELOG.md | 4 ++++ service/s3/go_module_metadata.go | 2 +- 17 files changed, 40 insertions(+), 35 deletions(-) delete mode 100644 .changelog/21537aa6d4d647d89f2da00c3e6ba23b.json delete mode 100644 .changelog/bdbd39bb1d60408ca26d8cec1cb878e7.json delete mode 100644 .changelog/fed8615a52bf40e786a350b2a8504a80.json diff --git a/.changelog/21537aa6d4d647d89f2da00c3e6ba23b.json b/.changelog/21537aa6d4d647d89f2da00c3e6ba23b.json deleted file mode 100644 index 2f90cdc020b..00000000000 --- a/.changelog/21537aa6d4d647d89f2da00c3e6ba23b.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "21537aa6-d4d6-47d8-9f2d-a00c3e6ba23b", - "type": "feature", - "description": "Amazon Simple Storage Service / Features: Add support for ETag based conditional writes in PutObject and CompleteMultiPartUpload APIs to prevent unintended object modifications.", - "modules": [ - "service/s3" - ] -} \ No newline at end of file diff --git a/.changelog/bdbd39bb1d60408ca26d8cec1cb878e7.json b/.changelog/bdbd39bb1d60408ca26d8cec1cb878e7.json deleted file mode 100644 index 098f400afec..00000000000 --- a/.changelog/bdbd39bb1d60408ca26d8cec1cb878e7.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "bdbd39bb-1d60-408c-a26d-8cec1cb878e7", - "type": "feature", - "description": "Update DescribeDirectConnectGatewayAssociations API to return associated core network information if a Direct Connect gateway is attached to a Cloud WAN core network.", - "modules": [ - "service/directconnect" - ] -} \ No newline at end of file diff --git a/.changelog/fed8615a52bf40e786a350b2a8504a80.json b/.changelog/fed8615a52bf40e786a350b2a8504a80.json deleted file mode 100644 index 60a4b748cc7..00000000000 --- a/.changelog/fed8615a52bf40e786a350b2a8504a80.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "fed8615a-52bf-40e7-86a3-50b2a8504a80", - "type": "feature", - "description": "This release adds native Direct Connect integration on Cloud WAN enabling customers to directly attach their Direct Connect gateways to Cloud WAN without the need for an intermediate Transit Gateway.", - "modules": [ - "service/networkmanager" - ] -} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e00ed5159d..34fb89e2a16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# Release (2024-11-25) + +## General Highlights +* **Dependency Update**: Updated to the latest SDK module versions + +## Module Highlights +* `github.com/aws/aws-sdk-go-v2/service/directconnect`: [v1.30.0](service/directconnect/CHANGELOG.md#v1300-2024-11-25) + * **Feature**: Update DescribeDirectConnectGatewayAssociations API to return associated core network information if a Direct Connect gateway is attached to a Cloud WAN core network. +* `github.com/aws/aws-sdk-go-v2/service/networkmanager`: [v1.32.0](service/networkmanager/CHANGELOG.md#v1320-2024-11-25) + * **Feature**: This release adds native Direct Connect integration on Cloud WAN enabling customers to directly attach their Direct Connect gateways to Cloud WAN without the need for an intermediate Transit Gateway. +* `github.com/aws/aws-sdk-go-v2/service/s3`: [v1.69.0](service/s3/CHANGELOG.md#v1690-2024-11-25) + * **Feature**: Amazon Simple Storage Service / Features: Add support for ETag based conditional writes in PutObject and CompleteMultiPartUpload APIs to prevent unintended object modifications. + # Release (2024-11-22) ## Module Highlights diff --git a/example/service/s3/listObjects/go.mod b/example/service/s3/listObjects/go.mod index a83f4d43082..240e3e8157f 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.28.5 - github.com/aws/aws-sdk-go-v2/service/s3 v1.68.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.69.0 ) require ( diff --git a/example/service/s3/usingPrivateLink/go.mod b/example/service/s3/usingPrivateLink/go.mod index d3ef36ba40e..2c48526ac62 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.32.5 github.com/aws/aws-sdk-go-v2/config v1.28.5 - github.com/aws/aws-sdk-go-v2/service/s3 v1.68.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.69.0 github.com/aws/aws-sdk-go-v2/service/s3control v1.50.1 ) diff --git a/feature/s3/manager/CHANGELOG.md b/feature/s3/manager/CHANGELOG.md index 0e353556309..e3c4db39533 100644 --- a/feature/s3/manager/CHANGELOG.md +++ b/feature/s3/manager/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.17.41 (2024-11-25) + +* **Dependency Update**: Updated to the latest SDK module versions + # v1.17.40 (2024-11-21) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/feature/s3/manager/go.mod b/feature/s3/manager/go.mod index 1bac36d23ab..938af15f425 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.32.5 github.com/aws/aws-sdk-go-v2/config v1.28.5 - github.com/aws/aws-sdk-go-v2/service/s3 v1.68.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.69.0 github.com/aws/smithy-go v1.22.1 ) diff --git a/feature/s3/manager/go_module_metadata.go b/feature/s3/manager/go_module_metadata.go index c3f6edae5e9..7131b40c555 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.40" +const goModuleVersion = "1.17.41" diff --git a/service/directconnect/CHANGELOG.md b/service/directconnect/CHANGELOG.md index 27f6562c1a9..a1733f1649c 100644 --- a/service/directconnect/CHANGELOG.md +++ b/service/directconnect/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.30.0 (2024-11-25) + +* **Feature**: Update DescribeDirectConnectGatewayAssociations API to return associated core network information if a Direct Connect gateway is attached to a Cloud WAN core network. + # v1.29.6 (2024-11-18) * **Dependency Update**: Update to smithy-go v1.22.1. diff --git a/service/directconnect/go_module_metadata.go b/service/directconnect/go_module_metadata.go index ee98c64db11..e3e5143a3c8 100644 --- a/service/directconnect/go_module_metadata.go +++ b/service/directconnect/go_module_metadata.go @@ -3,4 +3,4 @@ package directconnect // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.29.6" +const goModuleVersion = "1.30.0" diff --git a/service/internal/benchmark/go.mod b/service/internal/benchmark/go.mod index a34cc5b6d46..24e5a673be7 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.5 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.37.1 github.com/aws/aws-sdk-go-v2/service/lexruntimeservice v1.24.6 - github.com/aws/aws-sdk-go-v2/service/s3 v1.68.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.69.0 github.com/aws/aws-sdk-go-v2/service/schemas v1.28.7 github.com/aws/smithy-go v1.22.1 ) diff --git a/service/internal/integrationtest/go.mod b/service/internal/integrationtest/go.mod index 94340ef4e40..1d1c7d9f2f8 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.32.5 github.com/aws/aws-sdk-go-v2/config v1.28.5 - github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.40 + github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.41 github.com/aws/aws-sdk-go-v2/service/acm v1.30.6 github.com/aws/aws-sdk-go-v2/service/apigateway v1.28.0 github.com/aws/aws-sdk-go-v2/service/applicationautoscaling v1.34.0 @@ -25,7 +25,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/costandusagereportservice v1.28.6 github.com/aws/aws-sdk-go-v2/service/databasemigrationservice v1.44.4 github.com/aws/aws-sdk-go-v2/service/devicefarm v1.28.6 - github.com/aws/aws-sdk-go-v2/service/directconnect v1.29.6 + github.com/aws/aws-sdk-go-v2/service/directconnect v1.30.0 github.com/aws/aws-sdk-go-v2/service/directoryservice v1.30.7 github.com/aws/aws-sdk-go-v2/service/docdb v1.39.5 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.37.1 @@ -62,7 +62,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/route53 v1.46.2 github.com/aws/aws-sdk-go-v2/service/route53domains v1.27.6 github.com/aws/aws-sdk-go-v2/service/route53resolver v1.34.1 - github.com/aws/aws-sdk-go-v2/service/s3 v1.68.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.69.0 github.com/aws/aws-sdk-go-v2/service/s3control v1.50.1 github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.34.6 github.com/aws/aws-sdk-go-v2/service/servicecatalog v1.32.6 diff --git a/service/networkmanager/CHANGELOG.md b/service/networkmanager/CHANGELOG.md index 89d15ddcfc3..904f4793109 100644 --- a/service/networkmanager/CHANGELOG.md +++ b/service/networkmanager/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.32.0 (2024-11-25) + +* **Feature**: This release adds native Direct Connect integration on Cloud WAN enabling customers to directly attach their Direct Connect gateways to Cloud WAN without the need for an intermediate Transit Gateway. + # v1.31.6 (2024-11-18) * **Dependency Update**: Update to smithy-go v1.22.1. diff --git a/service/networkmanager/go_module_metadata.go b/service/networkmanager/go_module_metadata.go index b0446259d39..3164107cfbf 100644 --- a/service/networkmanager/go_module_metadata.go +++ b/service/networkmanager/go_module_metadata.go @@ -3,4 +3,4 @@ package networkmanager // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.31.6" +const goModuleVersion = "1.32.0" diff --git a/service/s3/CHANGELOG.md b/service/s3/CHANGELOG.md index 549502890a2..8a58b50b05d 100644 --- a/service/s3/CHANGELOG.md +++ b/service/s3/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.69.0 (2024-11-25) + +* **Feature**: Amazon Simple Storage Service / Features: Add support for ETag based conditional writes in PutObject and CompleteMultiPartUpload APIs to prevent unintended object modifications. + # v1.68.0 (2024-11-21) * **Feature**: Add support for conditional deletes for the S3 DeleteObject and DeleteObjects APIs. Add support for write offset bytes option used to append to objects with the S3 PutObject API. diff --git a/service/s3/go_module_metadata.go b/service/s3/go_module_metadata.go index f1f3b5f7552..d5375b60b85 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.68.0" +const goModuleVersion = "1.69.0"