Skip to content

Commit c45afe5

Browse files
authored
misc: bump smithy to 1.45.0 (#1247)
1 parent 786ce03 commit c45afe5

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"id": "1563f0df-5342-48fb-ae68-b6435068fb23",
3+
"type": "misc",
4+
"description": "Bump smithy version to 1.45.0"
5+
}

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ abstract class AwsHttpBindingProtocolGenerator : HttpBindingProtocolGenerator()
3939
// The following can be used to generate only a specific test by name.
4040
// val targetedTest = TestMemberDelta(setOf("RestJsonComplexErrorWithNoMessage"), TestContainmentMode.RUN_TESTS)
4141

42+
val ignoredTests = TestMemberDelta(
43+
setOf(
44+
// This test requires populating blob members with a default value of "", which the sdk doesn't do
45+
"AwsJson10ClientPopulatesDefaultValuesInInput",
46+
),
47+
)
48+
4249
val requestTestBuilder = HttpProtocolUnitTestRequestGenerator.Builder()
4350
val responseTestBuilder = HttpProtocolUnitTestResponseGenerator.Builder()
4451
val errorTestBuilder = HttpProtocolUnitTestErrorGenerator.Builder()
@@ -48,6 +55,7 @@ abstract class AwsHttpBindingProtocolGenerator : HttpBindingProtocolGenerator()
4855
requestTestBuilder,
4956
responseTestBuilder,
5057
errorTestBuilder,
58+
ignoredTests,
5159
).generateProtocolTests()
5260
}
5361

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ smithy-kotlin-runtime-version = "1.0.18"
1313
smithy-kotlin-codegen-version = "0.30.19"
1414

1515
# codegen
16-
smithy-version = "1.42.0"
16+
smithy-version = "1.45.0"
1717

1818
# testing
1919
junit-version = "5.10.1"

0 commit comments

Comments
 (0)