Skip to content

Commit 44bf693

Browse files
authored
chore: upgrade to Smithy 1.60.2 (#1307)
1 parent efbbddf commit 44bf693

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

codegen/smithy-aws-kotlin-codegen/src/main/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/core/AwsHttpBindingProtocolGenerator.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ abstract class AwsHttpBindingProtocolGenerator : HttpBindingProtocolGenerator()
4040
// val targetedTest = TestMemberDelta(setOf("RestJsonComplexErrorWithNoMessage"), TestContainmentMode.RUN_TESTS)
4141

4242
val ignoredTests = TestMemberDelta(
43-
setOf(),
43+
setOf(
44+
// likely bug in Smithy's HTTP header traits spec
45+
"RestJsonHttpEmptyPrefixHeadersRequestClient",
46+
"HttpEmptyPrefixHeadersRequestClient",
47+
),
4448
)
4549

4650
val requestTestBuilder = HttpProtocolUnitTestRequestGenerator.Builder()

gradle/libs.versions.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
kotlin-version = "2.1.0"
33
dokka-version = "2.0.0"
44

5-
aws-kotlin-repo-tools-version = "0.4.25"
5+
aws-kotlin-repo-tools-version = "0.4.31"
66

77
# libs
88
coroutines-version = "1.9.0"
@@ -18,8 +18,7 @@ micrometer-version = "1.14.2"
1818
binary-compatibility-validator-version = "0.16.3"
1919

2020
# codegen
21-
smithy-version = "1.54.0"
22-
smithy-gradle-version = "0.9.0"
21+
smithy-version = "1.60.2"
2322

2423
# testing
2524
junit-version = "5.10.5"

0 commit comments

Comments
 (0)