From dc0fa5c43e2fb51e174d73b268ae432c6eec1977 Mon Sep 17 00:00:00 2001 From: AWS SDK for Go v2 automation user Date: Wed, 10 Aug 2022 18:19:45 +0000 Subject: [PATCH] Release 2022-08-10 --- .changelog/42e3fdd9a322497e90523847da557e1f.json | 8 -------- .changelog/6a9e3da6a75c41fd9efef3fdf2355f48.json | 8 -------- .changelog/808f9d82addb4e969a60dc4ab7b767fb.json | 8 -------- CHANGELOG.md | 13 +++++++++++++ config/CHANGELOG.md | 4 ++++ config/go_module_metadata.go | 2 +- example/service/dynamodb/createTable/go.mod | 2 +- example/service/dynamodb/scanItems/go.mod | 2 +- example/service/s3/listObjects/go.mod | 2 +- example/service/s3/usingPrivateLink/go.mod | 2 +- feature/ec2/imds/internal/configtesting/go.mod | 2 +- feature/s3/manager/CHANGELOG.md | 4 ++++ feature/s3/manager/go.mod | 2 +- feature/s3/manager/go_module_metadata.go | 2 +- internal/configsources/configtesting/go.mod | 2 +- service/dlm/CHANGELOG.md | 4 ++++ service/dlm/go_module_metadata.go | 2 +- service/ec2/CHANGELOG.md | 4 ++++ service/ec2/go_module_metadata.go | 2 +- service/internal/integrationtest/go.mod | 4 ++-- service/s3/internal/configtesting/go.mod | 2 +- 21 files changed, 43 insertions(+), 38 deletions(-) delete mode 100644 .changelog/42e3fdd9a322497e90523847da557e1f.json delete mode 100644 .changelog/6a9e3da6a75c41fd9efef3fdf2355f48.json delete mode 100644 .changelog/808f9d82addb4e969a60dc4ab7b767fb.json diff --git a/.changelog/42e3fdd9a322497e90523847da557e1f.json b/.changelog/42e3fdd9a322497e90523847da557e1f.json deleted file mode 100644 index 3c176f7776f..00000000000 --- a/.changelog/42e3fdd9a322497e90523847da557e1f.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "42e3fdd9-a322-497e-9052-3847da557e1f", - "type": "feature", - "description": "This release adds support for excluding specific data (non-boot) volumes from multi-volume snapshot sets created by snapshot lifecycle policies", - "modules": [ - "service/dlm" - ] -} \ No newline at end of file diff --git a/.changelog/6a9e3da6a75c41fd9efef3fdf2355f48.json b/.changelog/6a9e3da6a75c41fd9efef3fdf2355f48.json deleted file mode 100644 index 3c613def93d..00000000000 --- a/.changelog/6a9e3da6a75c41fd9efef3fdf2355f48.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "6a9e3da6-a75c-41fd-9efe-f3fdf2355f48", - "type": "feature", - "description": "Adds support for the following settings in the `~/.aws/credentials` file: `sso_account_id`, `sso_region`, `sso_role_name`, `sso_start_url`, and `ca_bundle`.", - "modules": [ - "config" - ] -} \ No newline at end of file diff --git a/.changelog/808f9d82addb4e969a60dc4ab7b767fb.json b/.changelog/808f9d82addb4e969a60dc4ab7b767fb.json deleted file mode 100644 index b76c51ca632..00000000000 --- a/.changelog/808f9d82addb4e969a60dc4ab7b767fb.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "808f9d82-addb-4e96-9a60-dc4ab7b767fb", - "type": "feature", - "description": "This release adds support for excluding specific data (non-root) volumes from multi-volume snapshot sets created from instances.", - "modules": [ - "service/ec2" - ] -} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 09d7b6c68a7..cbe8cef42c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# Release (2022-08-10) + +## General Highlights +* **Dependency Update**: Updated to the latest SDK module versions + +## Module Highlights +* `github.com/aws/aws-sdk-go-v2/config`: [v1.16.0](config/CHANGELOG.md#v1160-2022-08-10) + * **Feature**: Adds support for the following settings in the `~/.aws/credentials` file: `sso_account_id`, `sso_region`, `sso_role_name`, `sso_start_url`, and `ca_bundle`. +* `github.com/aws/aws-sdk-go-v2/service/dlm`: [v1.12.0](service/dlm/CHANGELOG.md#v1120-2022-08-10) + * **Feature**: This release adds support for excluding specific data (non-boot) volumes from multi-volume snapshot sets created by snapshot lifecycle policies +* `github.com/aws/aws-sdk-go-v2/service/ec2`: [v1.52.0](service/ec2/CHANGELOG.md#v1520-2022-08-10) + * **Feature**: This release adds support for excluding specific data (non-root) volumes from multi-volume snapshot sets created from instances. + # Release (2022-08-09) ## General Highlights diff --git a/config/CHANGELOG.md b/config/CHANGELOG.md index 909f52af2d9..6a32dc3c042 100644 --- a/config/CHANGELOG.md +++ b/config/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.16.0 (2022-08-10) + +* **Feature**: Adds support for the following settings in the `~/.aws/credentials` file: `sso_account_id`, `sso_region`, `sso_role_name`, `sso_start_url`, and `ca_bundle`. + # v1.15.17 (2022-08-09) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/config/go_module_metadata.go b/config/go_module_metadata.go index af48559a3dc..805ea6e1cca 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.15.17" +const goModuleVersion = "1.16.0" diff --git a/example/service/dynamodb/createTable/go.mod b/example/service/dynamodb/createTable/go.mod index 1fda8f4f8a4..8ac316ecc8f 100644 --- a/example/service/dynamodb/createTable/go.mod +++ b/example/service/dynamodb/createTable/go.mod @@ -4,7 +4,7 @@ go 1.15 require ( github.com/aws/aws-sdk-go-v2 v1.16.10 - github.com/aws/aws-sdk-go-v2/config v1.15.17 + github.com/aws/aws-sdk-go-v2/config v1.16.0 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.12 ) diff --git a/example/service/dynamodb/scanItems/go.mod b/example/service/dynamodb/scanItems/go.mod index a4fcaed47fa..ccf3b5d92e9 100644 --- a/example/service/dynamodb/scanItems/go.mod +++ b/example/service/dynamodb/scanItems/go.mod @@ -4,7 +4,7 @@ go 1.15 require ( github.com/aws/aws-sdk-go-v2 v1.16.10 - github.com/aws/aws-sdk-go-v2/config v1.15.17 + github.com/aws/aws-sdk-go-v2/config v1.16.0 github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.9.10 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.12 ) diff --git a/example/service/s3/listObjects/go.mod b/example/service/s3/listObjects/go.mod index 6f719fe5a7f..ee18cf9f554 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.15 require ( - github.com/aws/aws-sdk-go-v2/config v1.15.17 + github.com/aws/aws-sdk-go-v2/config v1.16.0 github.com/aws/aws-sdk-go-v2/service/s3 v1.27.4 ) diff --git a/example/service/s3/usingPrivateLink/go.mod b/example/service/s3/usingPrivateLink/go.mod index 9d8815a1ba0..e4991d75a7f 100644 --- a/example/service/s3/usingPrivateLink/go.mod +++ b/example/service/s3/usingPrivateLink/go.mod @@ -4,7 +4,7 @@ go 1.15 require ( github.com/aws/aws-sdk-go-v2 v1.16.10 - github.com/aws/aws-sdk-go-v2/config v1.15.17 + github.com/aws/aws-sdk-go-v2/config v1.16.0 github.com/aws/aws-sdk-go-v2/service/s3 v1.27.4 github.com/aws/aws-sdk-go-v2/service/s3control v1.21.12 ) diff --git a/feature/ec2/imds/internal/configtesting/go.mod b/feature/ec2/imds/internal/configtesting/go.mod index 3741aa43ed5..a2c5ba27e26 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.15 require ( - github.com/aws/aws-sdk-go-v2/config v1.15.17 + github.com/aws/aws-sdk-go-v2/config v1.16.0 github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.11 ) diff --git a/feature/s3/manager/CHANGELOG.md b/feature/s3/manager/CHANGELOG.md index d96d56e8576..96c1913ff29 100644 --- a/feature/s3/manager/CHANGELOG.md +++ b/feature/s3/manager/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.11.24 (2022-08-10) + +* **Dependency Update**: Updated to the latest SDK module versions + # v1.11.23 (2022-08-09) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/feature/s3/manager/go.mod b/feature/s3/manager/go.mod index 17832d6a068..55d61a27747 100644 --- a/feature/s3/manager/go.mod +++ b/feature/s3/manager/go.mod @@ -4,7 +4,7 @@ go 1.15 require ( github.com/aws/aws-sdk-go-v2 v1.16.10 - github.com/aws/aws-sdk-go-v2/config v1.15.17 + github.com/aws/aws-sdk-go-v2/config v1.16.0 github.com/aws/aws-sdk-go-v2/service/s3 v1.27.4 github.com/aws/smithy-go v1.12.1 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 d61bff4b925..52fa69792f9 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.11.23" +const goModuleVersion = "1.11.24" diff --git a/internal/configsources/configtesting/go.mod b/internal/configsources/configtesting/go.mod index f302bed4c43..74fbee8ecc2 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.15 require ( - github.com/aws/aws-sdk-go-v2/config v1.15.17 + github.com/aws/aws-sdk-go-v2/config v1.16.0 github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.17 ) diff --git a/service/dlm/CHANGELOG.md b/service/dlm/CHANGELOG.md index 142d7b6e856..7738149a6d3 100644 --- a/service/dlm/CHANGELOG.md +++ b/service/dlm/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.12.0 (2022-08-10) + +* **Feature**: This release adds support for excluding specific data (non-boot) volumes from multi-volume snapshot sets created by snapshot lifecycle policies + # v1.11.12 (2022-08-09) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/service/dlm/go_module_metadata.go b/service/dlm/go_module_metadata.go index e6100a3d3f6..8fece2c6fb5 100644 --- a/service/dlm/go_module_metadata.go +++ b/service/dlm/go_module_metadata.go @@ -3,4 +3,4 @@ package dlm // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.11.12" +const goModuleVersion = "1.12.0" diff --git a/service/ec2/CHANGELOG.md b/service/ec2/CHANGELOG.md index 4aade395321..92baa23f2d3 100644 --- a/service/ec2/CHANGELOG.md +++ b/service/ec2/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.52.0 (2022-08-10) + +* **Feature**: This release adds support for excluding specific data (non-root) volumes from multi-volume snapshot sets created from instances. + # v1.51.3 (2022-08-09) * **Dependency Update**: Updated to the latest SDK module versions diff --git a/service/ec2/go_module_metadata.go b/service/ec2/go_module_metadata.go index 8f137032fe8..2d740d65600 100644 --- a/service/ec2/go_module_metadata.go +++ b/service/ec2/go_module_metadata.go @@ -3,4 +3,4 @@ package ec2 // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.51.3" +const goModuleVersion = "1.52.0" diff --git a/service/internal/integrationtest/go.mod b/service/internal/integrationtest/go.mod index ea6f77834b2..b12632538f6 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.16.10 - github.com/aws/aws-sdk-go-v2/config v1.15.17 + github.com/aws/aws-sdk-go-v2/config v1.16.0 github.com/aws/aws-sdk-go-v2/service/acm v1.14.11 github.com/aws/aws-sdk-go-v2/service/apigateway v1.15.13 github.com/aws/aws-sdk-go-v2/service/applicationautoscaling v1.15.11 @@ -31,7 +31,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/directoryservice v1.14.5 github.com/aws/aws-sdk-go-v2/service/docdb v1.19.3 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.12 - github.com/aws/aws-sdk-go-v2/service/ec2 v1.51.3 + github.com/aws/aws-sdk-go-v2/service/ec2 v1.52.0 github.com/aws/aws-sdk-go-v2/service/ecr v1.17.11 github.com/aws/aws-sdk-go-v2/service/ecs v1.18.14 github.com/aws/aws-sdk-go-v2/service/efs v1.17.9 diff --git a/service/s3/internal/configtesting/go.mod b/service/s3/internal/configtesting/go.mod index a14ca961c4f..1b01d4b1be6 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.15 require ( - github.com/aws/aws-sdk-go-v2/config v1.15.17 + github.com/aws/aws-sdk-go-v2/config v1.16.0 github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.13.11 )