Skip to content

Commit 7b4eefa

Browse files
authored
misc: smithy version 1.64.0 (#1745)
1 parent e34e2b9 commit 7b4eefa

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

aws-runtime/aws-config/common/test/aws/sdk/kotlin/runtime/auth/credentials/LoginCredentialsProviderTest.kt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import kotlin.test.Test
2323
import kotlin.test.assertEquals
2424
import kotlin.test.assertFailsWith
2525
import kotlin.text.encodeToByteArray
26+
import kotlin.time.Duration.Companion.minutes
2627
import kotlin.to
2728

2829
class LoginCredentialsProviderTest {
@@ -35,7 +36,11 @@ class LoginCredentialsProviderTest {
3536
}
3637

3738
@Test
38-
fun testExpiredToken() = runTest {
39+
fun testExpiredToken() = runTest(
40+
// TODO: Figure out why this test takes so long to run on some developer machines (@aoperez)
41+
// TODO: Remove custom timeout
42+
timeout = 2.minutes,
43+
) {
3944
val engine = TestConnection()
4045

4146
val epoch = "2025-09-15T04:05:45Z"

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ atomicfu-version = "0.29.0"
1212
binary-compatibility-validator-version = "0.18.0"
1313

1414
# smithy-kotlin codegen and runtime are versioned separately
15-
smithy-kotlin-runtime-version = "1.5.21"
16-
smithy-kotlin-codegen-version = "0.35.21"
15+
smithy-kotlin-runtime-version = "1.5.22"
16+
smithy-kotlin-codegen-version = "0.35.22"
1717

1818
# codegen
19-
smithy-version = "1.62.0"
19+
smithy-version = "1.64.0"
2020

2121
# testing
2222
ddb-local-version = "2.5.2"

0 commit comments

Comments
 (0)