Skip to content

Commit 75d6a13

Browse files
authored
Merge pull request #1637 from joreilly/update_dependencies
dependency updates + apollo cache option fix
2 parents 1cba249 + 50a4b13 commit 75d6a13

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Confetti 🎊
22

3-
![kotlin-version](https://img.shields.io/badge/kotlin-2.2.0-blue?logo=kotlin)
3+
![kotlin-version](https://img.shields.io/badge/kotlin-2.2.20-Beta1-blue?logo=kotlin)
44

55
[<img src="https://upload.wikimedia.org/wikipedia/commons/7/78/Google_Play_Store_badge_EN.svg"
66
alt="Get it on Google Play Store"

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ org.gradle.parallel=true
55

66
#Kotlin
77
kotlin.code.style=official
8+
kotlin.native.binary.smallBinary=true
89

910
#Android
1011
android.useAndroidX=true

gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[versions]
2-
kotlin = "2.2.0"
3-
ksp = "2.2.0-2.0.2"
2+
kotlin = "2.2.20-Beta1"
3+
ksp = "2.2.20-Beta1-2.0.2"
44
kotlinx-coroutines = "1.10.2"
55
kotlinx-datetime = "0.6.0"
66
kotlinx-serialization = "1.9.0"
77
apollo-kotlin-execution = "0.1.1-SNAPSHOT-fd7fa806b95c5b9046494989a7dd478c47237e12"
88
compatPatrouille = "0.0.0"
99

10-
agp = "8.11.0"
10+
agp = "8.11.1"
1111
activity-compose = "1.10.1"
12-
androidx-lifecycle = "2.9.1"
12+
androidx-lifecycle = "2.9.2"
1313
androidx-datastore = "1.1.7"
1414
apollo = "4.3.1"
1515
apollo-cache = "1.0.0-alpha.4"
@@ -31,11 +31,11 @@ kermit = "2.0.6"
3131
kmmbridge = "0.5.7"
3232
koin = "4.1.0"
3333
kotlinx-coroutines-play-services = "1.10.2"
34-
lifecycle = "2.9.1"
35-
lifecycle-livedata-ktx = "2.9.1"
36-
materialkolor = "2.1.1"
34+
lifecycle = "2.9.2"
35+
lifecycle-livedata-ktx = "2.9.2"
36+
materialkolor = "3.0.0"
3737
multiplatform-settings = "1.3.0"
38-
nav-compose = "2.9.1"
38+
nav-compose = "2.9.2"
3939
okio = "3.15.0"
4040
permissions = "0.19.1"
4141
permissionsCompose = "0.19.1"

iosApp/iosApp/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<key>CFBundlePackageType</key>
2424
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
2525
<key>CFBundleShortVersionString</key>
26-
<string>1.0.12</string>
26+
<string>1.0.14</string>
2727
<key>CFBundleURLTypes</key>
2828
<array>
2929
<dict>

shared/src/commonMain/kotlin/dev/johnoreilly/confetti/ApolloClientCache.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ class ApolloClientCache : KoinComponent {
123123
.addHttpHeader("conference", conference)
124124
.normalizedCache(
125125
normalizedCacheFactory,
126+
enableOptimisticUpdates = true,
126127
writeToCacheAsynchronously = writeToCacheAsynchronously,
127128
cacheResolver = CacheControlCacheResolver(
128129
SchemaCoordinatesMaxAgeProvider(

0 commit comments

Comments
 (0)