Skip to content

Commit

Permalink
Version updates
Browse files Browse the repository at this point in the history
* Bump Kotlin Language/API version to 1.9.0
* Update Gradle to 8.5-rc-4
* AGP 8.1.4
* atomicfu 0.23.1
* dokka 1.9.10
* junit-platform-launcher 1.10.1
* kotlinx-serialization 1.6.1
* ktor 2.3.6
* wire 4.9.3
  • Loading branch information
illarionov committed Nov 24, 2023
1 parent b25f2dd commit 2601f1e
Show file tree
Hide file tree
Showing 8 changed files with 184 additions and 15 deletions.
22 changes: 11 additions & 11 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,32 @@
androidMinSdk = "14"
androidCompileSdk = "33"

agp = "8.1.2"
agp = "8.1.4"
assertk = "0.27.0"
atomicfu = '0.22.0'
atomicfu = '0.23.1'
detekt = "1.23.3"
diktat = "1.2.5"
dokka = "1.9.0"
junit5 = "5.10.0"
junit-platform-launcher = "1.10.0"
dokka = "1.9.10"
junit5 = "5.10.1"
junit-platform-launcher = "1.10.1"
gradle-maven-publish-plugin = "0.25.3"
kermit = "1.2.2"
kotest = "5.7.2"
kotlin = "1.9.20"
kotest = "5.8.0"
kotlin = "1.9.21"
kotlin-compile-testing-fork = "0.4.0"
kotlinpoet = "1.14.2"
kotlinpoet = "1.15.1"
kotlinx-binary-compatibility-validator = "0.13.2"
kotlinx-coroutines = "1.7.3"
kotlinx-serialization = "1.6.0"
ktor = "2.3.5"
kotlinx-serialization = "1.6.1"
ktor = "2.3.6"
okhttp3 = "4.12.0"
okhttp5 = "5.0.0-alpha.11"
okio = "3.6.0"
orgjson = "20231013"
slf4j = "2.0.9"
spotless = "6.22.0"
turbine = "1.0.0"
wire = "4.9.1"
wire = "4.9.3"

[libraries]
assertk = { group = "com.willowtreeapps.assertk", name = "assertk", version.ref = "assertk" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ kotlin {
sourceSets {
all {
languageSettings {
languageVersion = "1.8"
apiVersion = "1.8"
languageVersion = "1.9"
apiVersion = "1.9"
listOf(
"kotlin.RequiresOptIn",
"kotlinx.coroutines.ExperimentalCoroutinesApi",
Expand Down
10 changes: 10 additions & 0 deletions gradle/verification-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,16 @@
<pgp value="1A55F091AD28C07F831FA44D7905DE25C78AD456"/>
</artifact>
</component>
<component group="com.google.protobuf" name="protobuf-java" version="3.25.0">
<artifact name="protobuf-java-3.25.0.jar">
<pgp value="1A55F091AD28C07F831FA44D7905DE25C78AD456"/>
</artifact>
</component>
<component group="com.google.protobuf" name="protobuf-java" version="3.25.1">
<artifact name="protobuf-java-3.25.1.jar">
<pgp value="1A55F091AD28C07F831FA44D7905DE25C78AD456"/>
</artifact>
</component>
<component group="com.googlecode.concurrent-trees" name="concurrent-trees" version="2.6.1">
<artifact name="concurrent-trees-2.6.1.jar">
<pgp value="A9789342F598AD5B1175EF357EB97D110DFADD60"/>
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-rc-1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-rc-4-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
74 changes: 74 additions & 0 deletions igdbclient-core/api/android/igdbclient-core.api

Large diffs are not rendered by default.

74 changes: 74 additions & 0 deletions igdbclient-core/api/jvm/igdbclient-core.api

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ package ru.pixnews.igdbclient.ktor.integration
import io.ktor.client.HttpClient
import mockwebserver3.SocketPolicy
import org.junit.jupiter.api.Disabled
import org.junit.jupiter.params.ParameterizedTest
import org.junit.jupiter.params.provider.EnumSource
import ru.pixnews.igdbclient.IgdbClient
import ru.pixnews.igdbclient.integration.tests.BaseIgdbClientImplementationTest
import ru.pixnews.igdbclient.ktor.IgdbKtorEngine
Expand Down Expand Up @@ -38,7 +40,16 @@ abstract class KtorBaseIgdbClientImplementationTest : BaseIgdbClientImplementati
}

@Suppress("BACKTICKS_PROHIBITED")
@Disabled("Flaky and slow")
@ParameterizedTest
@EnumSource(
value = SocketPolicy::class,
names = [
"DISCONNECT_AFTER_REQUEST",
"DISCONNECT_DURING_RESPONSE_BODY",
"NO_RESPONSE",
],
)
@Disabled("Flacky and slow")
override fun `Implementation should throw correct exception on network error`(policy: SocketPolicy) {
super.`Implementation should throw correct exception on network error`(policy)
}
Expand Down

0 comments on commit 2601f1e

Please sign in to comment.