Skip to content

Commit f7f2025

Browse files
committed
Apollo 4.0.0-beta.3.
1 parent bff6f83 commit f7f2025

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ksp = "2.0.0-Beta1-1.0.15"
44
androidGradlePlugin = "8.3.0-alpha16"
55
gradle-toolchainsResolverPlugin = "0.7.0"
66
appVersioning = "1.3.1"
7-
apollo = "4.0.0-beta.2"
7+
apollo = "4.0.0-beta.3"
88
googleServices = "4.4.0"
99
wire = "4.9.3"
1010
detekt = "1.23.4"

kmp/feed-datasource/cloud/src/commonTest/kotlin/io/github/reactivecircus/kstreamlined/kmp/feed/datasource/util/ApolloApiErrorCheckerTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package io.github.reactivecircus.kstreamlined.kmp.feed.datasource.util
22

3-
import com.apollographql.apollo3.exception.ApolloGraphQLException
43
import com.apollographql.apollo3.exception.ApolloNetworkException
54
import com.apollographql.apollo3.exception.ApolloParseException
65
import com.apollographql.apollo3.exception.CacheMissException
6+
import com.apollographql.apollo3.exception.JsonEncodingException
77
import com.apollographql.apollo3.exception.NoDataException
88
import kotlin.test.Test
99
import kotlin.test.assertFalse
@@ -76,7 +76,7 @@ class ApolloApiErrorCheckerTest {
7676
ApolloApiErrorChecker.isNetworkError(
7777
ApolloParseException().apply {
7878
addSuppressed(CacheMissException("key", null))
79-
addSuppressed(ApolloGraphQLException(emptyList()))
79+
addSuppressed(JsonEncodingException(""))
8080
}
8181
)
8282
)
@@ -89,7 +89,7 @@ class ApolloApiErrorCheckerTest {
8989
NoDataException(
9090
cause = ApolloParseException().apply {
9191
addSuppressed(CacheMissException("key", null))
92-
addSuppressed(ApolloGraphQLException(emptyList()))
92+
addSuppressed(JsonEncodingException(""))
9393
}
9494
)
9595
)

0 commit comments

Comments
 (0)