Skip to content

Commit

Permalink
Merge pull request #780 from supabase-community/v3.0.2
Browse files Browse the repository at this point in the history
Release version `3.0.2`
  • Loading branch information
jan-tennert authored Nov 11, 2024
2 parents 098b856 + cefc62b commit 8606bc8
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 18 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Changelog

### 3.0.2 - November 11, 2024

### Core

- Add support for Ktor `3.0.1` by @jan-tennert in #780

### Auth

- Add IDToken support for the `Kakao` `OAuthProvider` by @jan-tennert in #776
- Add missing `AuthErrorCode`s: `SessionExpired`, `RefreshTokenNotFound`, `RefreshTokenAlreadyUsed` by @jan-tennert in #775

### Compose Auth & Compose Auth UI

- Add support for Compose `1.7.0` by @jan-tennert in #759

### Realtime

- Remove additional `toMap()` call for `Realtime#subscriptions` to prevent rare exceptions by @jan-tennert in #779

### Coil3 Integration

- Add support for Coil3 version `3.0.2` by @jan-tennert in #780

### 3.0.1 - October 10, 2024

### Core

- Add support for Kotlin `2.0.21`
- Add support for Ktor `3.0.0`

### Auth

- Add HTTP Callback Server support for `mingwx64` (untested)

### Coil3 Integration

- Add support for Coil3 version `3.0.0-rc01`

### 3.0.0 - October 1, 2024

# Ktor 3
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Android.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fun Project.configureLibraryAndroidTarget(
javaVersion: JavaVersion = JavaVersion.VERSION_1_8
) {
extensions.configure(LibraryExtension::class) {
compileSdk = 34
compileSdk = 35
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
this.namespace = namespace ?: "${extra["base-group"].toString().replace("-", ".")}.${this@configureLibraryAndroidTarget.name.replace("-", "")}.library"
defaultConfig {
Expand All @@ -29,7 +29,7 @@ fun Project.configureLibraryAndroidTarget(
}

fun BaseAppModuleExtension.configureApplicationAndroidTarget() {
compileSdk = 34
compileSdk = 35
defaultConfig {
applicationId = "io.github.jan.supabase.android"
minSdk = 26
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ org.jetbrains.compose.experimental.uikit.enabled=true
org.jetbrains.compose.experimental.jscanvas.enabled=true
org.jetbrains.compose.experimental.wasm.enabled=true

supabase-version = 3.0.1
supabase-version = 3.0.2
base-group = io.github.jan-tennert.supabase
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ compose = "1.7.0"
androidsvg = "1.4"
imageloader = "1.9.0"
coil2 = "2.7.0"
coil3 = "3.0.0-rc02"
coil3 = "3.0.2"
okio = "3.9.1"
credentials = "1.3.0"
koin = "4.0.0"
androidx-core = "1.13.1"
androidx-core = "1.15.0"
androidx-compat = "1.7.0"
androidx-lifecycle = "2.8.6"
androidx-lifecycle = "2.8.7"
filekit = "0.8.7"

[plugins]
Expand Down
13 changes: 1 addition & 12 deletions sample/file-upload/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,4 @@ kotlin {
}
}

android {
compileSdk = 34
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
namespace = "io.github.jan.supabase.common"
defaultConfig {
minSdk = 26
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
configureLibraryAndroidTarget("io.github.jan.supabase.common", 26, JavaVersion.VERSION_1_8)

0 comments on commit 8606bc8

Please sign in to comment.