Skip to content

Commit e8e9c2d

Browse files
authored
Merge pull request #751 from supabase-community/coil-agp
Update Coil3 to rc01, Ktor to 3.0.0 and AGP to 8.5.2
2 parents 1df1a53 + 36d61d4 commit e8e9c2d

File tree

5 files changed

+9
-14
lines changed

5 files changed

+9
-14
lines changed

Auth/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ kotlin {
2020
withJvm()
2121
withMacos()
2222
withLinux()
23-
//withMingw() - not supported
23+
withMingw()
2424
}
2525
group("nonDesktop") {
2626
//withAndroidTarget() android has its own implementation
2727
withIos()
2828
withTvos()
2929
withWatchos()
30-
withMingw()
30+
//withMingw()
3131
withJs()
3232
withWasmJs()
3333
}

Auth/src/mingwMain/kotlin/io/github/jan/supabase/auth/AuthConfig.kt

Lines changed: 0 additions & 5 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ For information about supported Kotlin targets, see the corresponding module REA
1111
[![](https://img.shields.io/github/release/supabase-community/supabase-kt?label=stable)](https://github.com/supabase-community/supabase-kt/releases)
1212
[![](https://badgen.net/github/release/supabase-community/supabase-kt?label=prerelease)](https://central.sonatype.com/search?q=io.github.jan.supabase&smo=true)
1313
[![Kotlin](https://img.shields.io/badge/kotlin-2.0.21-blue.svg?logo=kotlin)](http://kotlinlang.org)
14-
[![Ktor](https://img.shields.io/badge/ktor-3.0.0--rc--2-blue)](https://ktor.io/)
14+
[![Ktor](https://img.shields.io/badge/ktor-3.0.0-blue)](https://ktor.io/)
1515
[![slack](https://img.shields.io/badge/slack-%23supabase--kt-purple.svg?logo=slack)](https://kotlinlang.slack.com/archives/C06QXPC7064)
1616

1717
### Links
@@ -99,7 +99,7 @@ val iosMain by getting {
9999
**Note:** It is recommended to use the same Ktor version as supabase-kt:
100100

101101
__For 3.0.0 and above:__
102-
[![Ktor](https://img.shields.io/badge/ktor-3.0.0--rc--2-blue)](https://ktor.io/)
102+
[![Ktor](https://img.shields.io/badge/ktor-3.0.0-blue)](https://ktor.io/)
103103

104104
__For versions below 3.0.0:__
105105
[![Ktor](https://img.shields.io/badge/ktor-2.3.12-blue)](https://ktor.io/)

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
2-
kotlin = "2.0.21-RC"
2+
kotlin = "2.0.21"
33
accompanist-permissions = "0.36.0"
4-
ktor = "3.0.0-rc-2"
4+
ktor = "3.0.0"
55
dokka = "1.9.20"
66
kotlinx-datetime = "0.6.1"
77
kermit = "2.0.4"
@@ -12,7 +12,7 @@ androidx-startup = "1.2.0"
1212
androidx-activity-compose = "1.9.2"
1313
multiplatform-settings = "1.2.0"
1414
complete-kotlin = "1.1.0"
15-
agp = "8.3.2"
15+
agp = "8.5.2"
1616
maven-publish = "0.29.0"
1717
apollo-kotlin = "4.0.1"
1818
korlibs = "4.0.10"
@@ -25,7 +25,7 @@ compose = "1.6.11"
2525
androidsvg = "1.4"
2626
imageloader = "1.8.3"
2727
coil2 = "2.7.0"
28-
coil3 = "3.0.0-alpha10"
28+
coil3 = "3.0.0-rc01"
2929
okio = "3.9.1"
3030
credentials = "1.3.0"
3131
koin = "4.0.0"

plugins/Coil3Integration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Extends supabase-kt with a Coil3 integration for image loading.
44
**Requires supabase-kt `3.0.0` or higher.**
55

6-
Current supported Coil3 version: `3.0.0-alpha10`
6+
Current supported Coil3 version: `3.0.0-rc01`
77

88
Supported targets:
99

0 commit comments

Comments
 (0)