-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixup user serialization issue (#52)
* Make anyserializer exclusive for user object serialization / handle more types * Format / User object printing fix * Downgrade kotlinx.serialization to 1.7.1 * Revert "Downgrade kotlinx.serialization to 1.7.1" This reverts commit cd27522. * Switch to version catalog * Update Constants.kt * Revert version bump * Increase coverage * Update ConfigCatUserTests.kt * Update ConfigCatUserTests.kt
- Loading branch information
Showing
8 changed files
with
144 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
[versions] | ||
kotlin = "2.0.21" | ||
android-gradle-plugin = "8.7.3" | ||
ktor = "3.0.0" | ||
kotlinx-serialization = "1.7.3" | ||
kotlinx-coroutines= "1.9.0" | ||
klock = "4.0.10" | ||
krypto = "4.0.10" | ||
atomicfu = "0.26.1" | ||
semver = "2.0.0" | ||
dokka = "1.9.20" | ||
sonarqube = "5.0.0.4638" | ||
kover = "0.7.6" | ||
detekt = "1.23.6" | ||
ktlint = "12.1.0" | ||
|
||
[libraries] | ||
ktor = { module = "io.ktor:ktor-client-core", version.ref = "ktor" } | ||
ktor-mock = { module = "io.ktor:ktor-client-mock", version.ref = "ktor" } | ||
ktor-okhttp = { module = "io.ktor:ktor-client-okhttp", version.ref = "ktor" } | ||
ktor-js = { module = "io.ktor:ktor-client-js", version.ref = "ktor" } | ||
ktor-android = { module = "io.ktor:ktor-client-android", version.ref = "ktor" } | ||
ktor-darwin = { module = "io.ktor:ktor-client-darwin", version.ref = "ktor" } | ||
ktor-cio = { module = "io.ktor:ktor-client-cio", version.ref = "ktor" } | ||
serialization-core = { module = "org.jetbrains.kotlinx:kotlinx-serialization-core", version.ref = "kotlinx-serialization" } | ||
serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinx-serialization" } | ||
coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" } | ||
coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinx-coroutines" } | ||
klock = { module = "com.soywiz.korlibs.klock:klock", version.ref = "klock" } | ||
krypto = { module = "com.soywiz.korlibs.krypto:krypto", version.ref = "krypto" } | ||
semver = { module = "io.github.z4kn4fein:semver", version.ref = "semver" } | ||
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" } | ||
atomicfu = { module = "org.jetbrains.kotlinx:atomicfu", version.ref = "atomicfu" } | ||
|
||
[plugins] | ||
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } | ||
serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } | ||
androidLibrary = { id = "com.android.library", version.ref = "android-gradle-plugin" } | ||
atomicfu = { id = "org.jetbrains.kotlinx.atomicfu", version.ref = "atomicfu" } | ||
dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" } | ||
sonarqube = { id = "org.sonarqube", version.ref = "sonarqube" } | ||
kover = { id = "org.jetbrains.kotlinx.kover", version.ref = "kover" } | ||
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" } | ||
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlint" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.