Skip to content

Commit 68dab0e

Browse files
authored
misc: track upstream filesystem changes (#1862)
* misc: track upstream filesystem changes * misc: ktlint * misc: smithy kotlin version bump
1 parent ac5e222 commit 68dab0e

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

aws-runtime/aws-config/jvm/test/aws/sdk/kotlin/runtime/auth/credentials/DefaultChainCredentialsProviderTest.kt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import aws.smithy.kotlin.runtime.util.Filesystem
1616
import aws.smithy.kotlin.runtime.util.OperatingSystem
1717
import aws.smithy.kotlin.runtime.util.OsFamily
1818
import aws.smithy.kotlin.runtime.util.PlatformProvider
19+
import aws.smithy.kotlin.runtime.util.WriteType
1920
import kotlinx.coroutines.Dispatchers
2021
import kotlinx.coroutines.test.runTest
2122
import kotlinx.coroutines.withContext
@@ -49,6 +50,16 @@ class DefaultChainCredentialsProviderTest {
4950
override fun fileExists(path: String): Boolean {
5051
error("not needed for test")
5152
}
53+
54+
override fun write(
55+
path: String,
56+
data: ByteArray,
57+
writeType: WriteType,
58+
mustExist: Boolean,
59+
permissions: String?,
60+
) {
61+
error("not needed for test")
62+
}
5263
}
5364

5465
class DefaultChainPlatformProvider(

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ atomicfu-version = "0.32.1"
1212
binary-compatibility-validator-version = "0.18.1"
1313

1414
# smithy-kotlin
15-
smithy-kotlin-version = "1.6.11"
15+
smithy-kotlin-version = "1.6.12"
1616

1717
# codegen
1818
smithy-version = "1.69.0"

0 commit comments

Comments
 (0)