From 9b3e2f5a4990f2bacdbe8881da5570fd1a826937 Mon Sep 17 00:00:00 2001 From: Anna-Karin Salander Date: Mon, 12 Feb 2024 09:54:06 -0800 Subject: [PATCH 1/2] Backfilling changelog to include signing attribute changes --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f3297d07c3e..1f8a1adc8b88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ #### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._ # __2.24.0__ __2024-02-09__ + ## __AWS Batch__ - ### Features - This feature allows Batch to support configuration of repository credentials for jobs running on ECS @@ -15,6 +16,7 @@ ## __AWS SDK for Java v2__ - ### Features - Updated endpoint and partition metadata. + - Updated internal core logic for signing properties with non-default values to be codegen based instead of set at runtime. ## __Amazon EC2 Container Service__ - ### Features @@ -27,6 +29,8 @@ ## __Amazon S3__ - ### Bugfixes - Fix bug where PUT fails when using SSE-C with Checksum when using S3AsyncClient with multipart enabled. Enable CRC32 for putObject when using multipart client if checksum validation is not disabled and checksum is not set by user + - ### Features + - Overriding signer properties for S3 through the deprecated non-public execution attributes in S3SignerExecutionAttribute no longer works with this release. The recommended approach is using plugins. ## __Braket__ - ### Features From b5c2c604ac535ea59805add590cf3cd006c5045f Mon Sep 17 00:00:00 2001 From: Anna-Karin Salander Date: Tue, 13 Feb 2024 08:47:25 -0800 Subject: [PATCH 2/2] Moved changes to release .json file and regenerated changelog --- .changes/2.24.0.json | 12 ++++++++++++ CHANGELOG.md | 6 +++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.changes/2.24.0.json b/.changes/2.24.0.json index f0c413b58e2e..6fe6e6c07f8d 100644 --- a/.changes/2.24.0.json +++ b/.changes/2.24.0.json @@ -55,6 +55,18 @@ "category": "AWS SDK for Java v2", "contributor": "", "description": "Updated endpoint and partition metadata." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated internal core logic for signing properties with non-default values to be codegen based instead of set at runtime." + }, + { + "type": "feature", + "category": "Amazon S3", + "contributor": "", + "description": "Overriding signer properties for S3 through the deprecated non-public execution attributes in S3SignerExecutionAttribute no longer works with this release. The recommended approach is to use plugins in order to change these settings." } ] } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f8a1adc8b88..45f34a0f4de8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,5 @@ #### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._ # __2.24.0__ __2024-02-09__ - ## __AWS Batch__ - ### Features - This feature allows Batch to support configuration of repository credentials for jobs running on ECS @@ -27,10 +26,11 @@ - Overall documentation updates. ## __Amazon S3__ + - ### Features + - Overriding signer properties for S3 through the deprecated non-public execution attributes in S3SignerExecutionAttribute no longer works with this release. The recommended approach is to use plugins in order to change these settings. + - ### Bugfixes - Fix bug where PUT fails when using SSE-C with Checksum when using S3AsyncClient with multipart enabled. Enable CRC32 for putObject when using multipart client if checksum validation is not disabled and checksum is not set by user - - ### Features - - Overriding signer properties for S3 through the deprecated non-public execution attributes in S3SignerExecutionAttribute no longer works with this release. The recommended approach is using plugins. ## __Braket__ - ### Features