Skip to content

Commit 06fd2ee

Browse files
committed
Update Gradle to 9.1.0, AGP to 8.10.1, Gradle toolchain resolver to 1.0.0
1 parent 47d7ad8 commit 06fd2ee

File tree

7 files changed

+32
-9
lines changed

7 files changed

+32
-9
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
### 3.2.4 - September 26, 2025
4+
5+
### Core
6+
7+
- Update Ktor to version `3.3.0`
8+
- make kermit logger non-global by @sproctor in https://github.com/supabase-community/supabase-kt/pull/1044
9+
10+
### Auth & Compose Auth
11+
12+
* Add support for linkIdentity with OIDC by @jan-tennert in https://github.com/supabase-community/supabase-kt/pull/1051
13+
You can now link a Google / Apple account to an existing Supabase account via `linkIdentityWithIdToken`:
14+
```kotlin
15+
supabase.auth.linkIdentityWithIdToken(provider = Google, idToken = "idToken received from native auth") {
16+
// optional stuff
17+
}
18+
```
19+
To accomplish this with Compose Auth, set the `onIdToken` parameter in the `rememberSignInWith(...)` method:
20+
```kotlin
21+
//default parameter is ComposeAuth.SIGN_IN_CALLBACK
22+
val state = composeAuth.rememberSignInWithGoogle(onIdToken = ComposeAuth.LINK_IDENTITY_CALLBACK)
23+
```
24+
This also means, you can upgrade anonymous users via native auth and/or handle the id token received from native auth yourself (e.g. via your viewmodel)
25+
26+
### Samples
27+
28+
* Fix Chat sample launch fails on iOS by @hieuwu in https://github.com/supabase-community/supabase-kt/pull/1050
29+
330
### 3.2.3 - September 11, 2025
431

532
### Core

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ androidx-startup = "1.2.0"
1111
androidx-activity-compose = "1.11.0"
1212
multiplatform-settings = "1.3.0"
1313
complete-kotlin = "1.1.0"
14-
agp = "8.9.2"
14+
agp = "8.10.1"
1515
maven-publish = "0.34.0"
1616
apollo-kotlin = "4.3.3"
1717
serialization = "1.9.0"

gradle/wrapper/gradle-wrapper.jar

1.65 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.
@@ -114,7 +114,6 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

117-
CLASSPATH="\\\"\\\""
118117

119118

120119
# Determine the Java command to use to start the JVM.
@@ -172,7 +171,6 @@ fi
172171
# For Cygwin or MSYS, switch paths to Windows format before running java
173172
if "$cygwin" || "$msys" ; then
174173
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
175-
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
176174

177175
JAVACMD=$( cygpath --unix "$JAVACMD" )
178176

@@ -212,7 +210,6 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
212210

213211
set -- \
214212
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215-
-classpath "$CLASSPATH" \
216213
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
217214
"$@"
218215

gradlew.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,10 @@ goto fail
7070
:execute
7171
@rem Setup the command line
7272

73-
set CLASSPATH=
7473

7574

7675
@rem Execute Gradle
77-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
76+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
7877

7978
:end
8079
@rem End local scope for the variables with windows NT shell

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pluginManagement {
88
}
99

1010
plugins {
11-
id("org.gradle.toolchains.foojay-resolver-convention") version("0.10.0")
11+
id("org.gradle.toolchains.foojay-resolver-convention") version("1.0.0")
1212
}
1313

1414
// Main Modules

0 commit comments

Comments
 (0)