Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit 8b0d56c

Browse files
committed
Updated to ktor 2.3.2 and kotlin 1.8
1 parent ad2495c commit 8b0d56c

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ tasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinCompile<*>>().configureEach
5454

5555
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
5656
kotlinOptions {
57-
apiVersion = "1.6"
57+
apiVersion = "1.8"
5858
verbose = true
5959
}
6060
}

gradle/libs.versions.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
[versions]
2-
kotlin = "1.6.21"
3-
kotest = "5.3.2"
2+
kotlin = "1.8.21"
3+
kotest = "5.6.2"
4+
ktor = "2.3.2"
45

56
[libraries]
67
kotest-assertions-core = { module = "io.kotest:kotest-assertions-core", version.ref = "kotest" }
78
kotest-framework-engine = { module = "io.kotest:kotest-framework-engine", version.ref = "kotest" }
89
kotest-framework-datatest = { module = "io.kotest:kotest-framework-datatest", version.ref = "kotest" }
910
kotest-property = { module = "io.kotest:kotest-property", version.ref = "kotest" }
1011

11-
ktor-client-js = { module = "io.ktor:ktor-client-js", version = "2.0.3" }
12+
ktor-client-js = { module = "io.ktor:ktor-client-js", version.ref = "ktor" }
1213

1314
[plugins]
1415
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }

src/jsMain/kotlin/http.kt

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
import io.ktor.client.HttpClient
2-
import io.ktor.client.engine.js.Js
3-
import io.ktor.client.request.get
4-
import io.ktor.client.statement.HttpResponse
5-
import io.ktor.client.statement.readText
1+
import io.ktor.client.*
2+
import io.ktor.client.engine.js.*
3+
import io.ktor.client.request.*
4+
import io.ktor.client.statement.*
65

76
private val client = HttpClient(Js)
87

98
suspend fun fetch(): Dog {
10-
val resp = client.get<HttpResponse>("https://dog.ceo/api/breeds/image/random")
9+
val resp = client.get("https://dog.ceo/api/breeds/image/random")
1110
var message = ""
1211
var status = ""
13-
JSON.parse<Dog>(resp.readText()) { key, value ->
12+
JSON.parse<Dog>(resp.bodyAsText()) { key, value ->
1413
when (key) {
1514
"message" -> message = value.toString()
1615
"status" -> status = value.toString()

0 commit comments

Comments
 (0)