From c83316f78195a02be24105b68d6718e288dabaa9 Mon Sep 17 00:00:00 2001 From: Matas Lauzadis Date: Mon, 7 Oct 2024 13:37:53 -0400 Subject: [PATCH 1/5] Changelog --- .changes/c75f1745-f836-4900-8b42-7bb90433ac94.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .changes/c75f1745-f836-4900-8b42-7bb90433ac94.json diff --git a/.changes/c75f1745-f836-4900-8b42-7bb90433ac94.json b/.changes/c75f1745-f836-4900-8b42-7bb90433ac94.json new file mode 100644 index 000000000..90d7cbc14 --- /dev/null +++ b/.changes/c75f1745-f836-4900-8b42-7bb90433ac94.json @@ -0,0 +1,8 @@ +{ + "id": "c75f1745-f836-4900-8b42-7bb90433ac94", + "type": "bugfix", + "description": "Remove Route53 InvalidChangeBatch customization", + "issues": [ + "https://github.com/awslabs/aws-sdk-kotlin/issues/1433" + ] +} \ No newline at end of file From a9736265c65c9941eec654a7bfefc1755c14b3fe Mon Sep 17 00:00:00 2001 From: Matas Lauzadis Date: Tue, 8 Oct 2024 09:38:27 -0400 Subject: [PATCH 2/5] Changelog --- .changes/db40be47-f4a0-4085-81f3-2dbfa7b7fe94.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changes/db40be47-f4a0-4085-81f3-2dbfa7b7fe94.json diff --git a/.changes/db40be47-f4a0-4085-81f3-2dbfa7b7fe94.json b/.changes/db40be47-f4a0-4085-81f3-2dbfa7b7fe94.json new file mode 100644 index 000000000..4989c6343 --- /dev/null +++ b/.changes/db40be47-f4a0-4085-81f3-2dbfa7b7fe94.json @@ -0,0 +1,5 @@ +{ + "id": "db40be47-f4a0-4085-81f3-2dbfa7b7fe94", + "type": "misc", + "description": "Upgrade to Smithy 1.51.0" +} \ No newline at end of file From df8d816458b12da064d23cf87ebfa9e516a376e4 Mon Sep 17 00:00:00 2001 From: Matas Lauzadis Date: Tue, 8 Oct 2024 09:42:32 -0400 Subject: [PATCH 3/5] bump smithy version --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 3dd88c2cb..6e0d3dcd6 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -17,7 +17,7 @@ crt-kotlin-version = "0.8.9" micrometer-version = "1.13.2" # codegen -smithy-version = "1.50.0" +smithy-version = "1.51.0" smithy-gradle-version = "0.9.0" # testing From 1a528a630198e10c656449069b9717b473587f4e Mon Sep 17 00:00:00 2001 From: Matas Lauzadis Date: Tue, 8 Oct 2024 09:44:41 -0400 Subject: [PATCH 4/5] Remove changelog --- .changes/c75f1745-f836-4900-8b42-7bb90433ac94.json | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .changes/c75f1745-f836-4900-8b42-7bb90433ac94.json diff --git a/.changes/c75f1745-f836-4900-8b42-7bb90433ac94.json b/.changes/c75f1745-f836-4900-8b42-7bb90433ac94.json deleted file mode 100644 index 90d7cbc14..000000000 --- a/.changes/c75f1745-f836-4900-8b42-7bb90433ac94.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": "c75f1745-f836-4900-8b42-7bb90433ac94", - "type": "bugfix", - "description": "Remove Route53 InvalidChangeBatch customization", - "issues": [ - "https://github.com/awslabs/aws-sdk-kotlin/issues/1433" - ] -} \ No newline at end of file From 4801330b43a5bf4a3f74bae42f6b92ee70dd74dd Mon Sep 17 00:00:00 2001 From: Matas Lauzadis Date: Tue, 8 Oct 2024 09:46:41 -0400 Subject: [PATCH 5/5] Remove ignored test --- .../aws/protocols/core/AwsHttpBindingProtocolGenerator.kt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/codegen/smithy-aws-kotlin-codegen/src/main/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/core/AwsHttpBindingProtocolGenerator.kt b/codegen/smithy-aws-kotlin-codegen/src/main/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/core/AwsHttpBindingProtocolGenerator.kt index d6c200d43..864c2a6c3 100644 --- a/codegen/smithy-aws-kotlin-codegen/src/main/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/core/AwsHttpBindingProtocolGenerator.kt +++ b/codegen/smithy-aws-kotlin-codegen/src/main/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/core/AwsHttpBindingProtocolGenerator.kt @@ -39,12 +39,7 @@ abstract class AwsHttpBindingProtocolGenerator : HttpBindingProtocolGenerator() // The following can be used to generate only a specific test by name. // val targetedTest = TestMemberDelta(setOf("RestJsonComplexErrorWithNoMessage"), TestContainmentMode.RUN_TESTS) - val ignoredTests = TestMemberDelta( - setOf( - // Test broken in Smithy 1.50.0, should be fixed by https://github.com/smithy-lang/smithy/pull/2341 - "RestJsonClientIgnoresDefaultValuesIfMemberValuesArePresentInResponse", - ), - ) + val ignoredTests = TestMemberDelta(setOf()) val requestTestBuilder = HttpProtocolUnitTestRequestGenerator.Builder() val responseTestBuilder = HttpProtocolUnitTestResponseGenerator.Builder()