Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 1.2.1 (pending release)

* [Supabase Connector] Fixed issue where only `400` HTTP status code errors where reported as connection errors. The connector now reports errors for codes `>=400`.
* Update PowerSync core extension to `0.4.1`, fixing an issue with the new Rust client.

## 1.2.0

Expand Down
2 changes: 1 addition & 1 deletion demos/android-supabase-todolist/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
agp = "8.9.0"
agp = "8.10.1"
coreSplashscreen = "1.0.1"
kotlin = "2.1.10"
coreKtx = "1.15.0"
Expand Down
2 changes: 1 addition & 1 deletion demos/supabase-todolist/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ compose-preview = "1.7.8"
lifecycle = "2.8.4"

# plugins
android-gradle-plugin = "8.9.0"
android-gradle-plugin = "8.10.1"

# Sample - Android
androidx-core = "1.15.0"
Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ idea = "243.22562.218" # Meerkat | 2024.3.1 (see https://plugins.jetbrains.com/d

# Dependencies
kermit = "2.0.5"
kotlin = "2.1.10"
kotlin = "2.1.21"
coroutines = "1.8.1"
kotlinx-datetime = "0.6.2"
kotlinx-io = "0.5.4"
ktor = "3.1.0"
rsocket = "0.20.0"
uuid = "0.8.2"
powersync-core = "0.4.0"
sqlite-jdbc = "3.49.1.0"
powersync-core = "0.4.1"
sqlite-jdbc = "3.50.1.0"
sqliter = "1.3.1"
turbine = "1.2.0"
kotest = "5.9.1"
Expand All @@ -34,12 +34,12 @@ compose-preview = "1.7.8"
androidxSqlite = "2.4.0"

# plugins
android-gradle-plugin = "8.9.0"
skie = "0.10.1"
android-gradle-plugin = "8.10.1"
skie = "0.10.2"
maven-publish = "0.27.0"
download-plugin = "5.5.0"
grammarkit-composer = "0.1.12"
mokkery = "2.7.1"
mokkery = "2.8.0"
kotlinter = "5.0.1"
keeper = "0.16.1"
atomicfu = "0.27.0"
Expand Down
2 changes: 1 addition & 1 deletion static-sqlite-driver/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {
id("com.powersync.plugins.sonatype")
}

val sqliteVersion = "3490100"
val sqliteVersion = "3500100"
val sqliteReleaseYear = "2025"

val downloadSQLiteSources by tasks.registering(Download::class) {
Expand Down