From 4b68bd9817307ec1595413b3615130c0e8dd7ab1 Mon Sep 17 00:00:00 2001 From: Aaron J Todd Date: Tue, 24 May 2022 13:04:32 -0400 Subject: [PATCH 1/2] fix(rt): bump smithy-kotlin to 0.10.0 Upgrading smithy-kotlin to 0.10.0 which includes an upgrade to ktor-2.x. This will fix awslabs/aws-sdk-kotlin#480 but as noted in the ticket may reverse the issue and break ktor-1.x users. --- .changes/384bc620-5a1e-40d8-9e12-c410658157c3.json | 8 ++++++++ gradle.properties | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .changes/384bc620-5a1e-40d8-9e12-c410658157c3.json diff --git a/.changes/384bc620-5a1e-40d8-9e12-c410658157c3.json b/.changes/384bc620-5a1e-40d8-9e12-c410658157c3.json new file mode 100644 index 00000000000..bcdb1dabe3c --- /dev/null +++ b/.changes/384bc620-5a1e-40d8-9e12-c410658157c3.json @@ -0,0 +1,8 @@ +{ + "id": "384bc620-5a1e-40d8-9e12-c410658157c3", + "type": "bugfix", + "description": "Upgrade smithy-kotlin to 0.10.0 which upgrades to ktor-2.x", + "issues": [ + "awslabs/aws-sdk-kotlin#480" + ] +} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 787c580f068..3fbc03a3072 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,7 +12,7 @@ sdkVersion=0.16.0-SNAPSHOT smithyVersion=1.17.0 smithyGradleVersion=0.5.3 # smithy-kotlin codegen and runtime are versioned together -smithyKotlinVersion=0.9.2 +smithyKotlinVersion=0.10.0 # kotlin kotlinVersion=1.6.21 From e150335845a84986272fae52f1159f4b60aaecc6 Mon Sep 17 00:00:00 2001 From: Aaron J Todd Date: Tue, 24 May 2022 13:33:44 -0400 Subject: [PATCH 2/2] update changelog message --- .changes/384bc620-5a1e-40d8-9e12-c410658157c3.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.changes/384bc620-5a1e-40d8-9e12-c410658157c3.json b/.changes/384bc620-5a1e-40d8-9e12-c410658157c3.json index bcdb1dabe3c..bf1bea0f368 100644 --- a/.changes/384bc620-5a1e-40d8-9e12-c410658157c3.json +++ b/.changes/384bc620-5a1e-40d8-9e12-c410658157c3.json @@ -1,8 +1,8 @@ { "id": "384bc620-5a1e-40d8-9e12-c410658157c3", "type": "bugfix", - "description": "Upgrade smithy-kotlin to 0.10.0 which upgrades to ktor-2.x", + "description": "Upgrade smithy-kotlin to 0.10.0 which upgrades to ktor-2.x. This is considered a **breaking change** as it may reverse the issue described in #480 and break ktor-1.x users.", "issues": [ "awslabs/aws-sdk-kotlin#480" ] -} \ No newline at end of file +}