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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 1.5.0 (unreleased)
## 1.5.0

* Add `PowerSyncDatabase.getCrudTransactions()`, returning a flow of transactions. This is useful
to upload multiple transactions in a batch.
Expand Down
4 changes: 2 additions & 2 deletions demos/android-supabase-todolist/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ fun getLocalProperty(

android {
namespace = "com.powersync.androidexample"
compileSdk = 35
compileSdk = libs.versions.android.compileSdk.get().toInt()

buildFeatures {
buildConfig = true
Expand All @@ -30,7 +30,7 @@ android {
defaultConfig {
applicationId = "com.powersync.androidexample"
minSdk = 24
targetSdk = 35
targetSdk = libs.versions.android.targetSdk.get().toInt()
versionCode = 1
versionName = "1.0"

Expand Down
2 changes: 2 additions & 0 deletions demos/supabase-todolist/iosApp/iosApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,7 @@
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
</dict>
</plist>
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ development=true
RELEASE_SIGNING_ENABLED=true
# Library config
GROUP=com.powersync
LIBRARY_VERSION=1.4.0
LIBRARY_VERSION=1.5.0
GITHUB_REPO=https://github.com/powersync-ja/powersync-kotlin.git
# POM
POM_URL=https://github.com/powersync-ja/powersync-kotlin/
Expand Down
34 changes: 17 additions & 17 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[versions]
## SDK Versions
android-minSdk = "24"
android-targetSdk = "35"
android-compileSdk = "35"
configurationAnnotations = "0.10.4"
android-targetSdk = "36"
android-compileSdk = "36"
configurationAnnotations = "0.10.6"
dokkaBase = "2.0.0"
gradleDownloadTask = "5.6.0"
java = "17"
idea = "243.22562.218" # Meerkat | 2024.3.1 (see https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html)

# Dependencies
kermit = "2.0.6"
kotlin = "2.2.0"
kermit = "2.0.8"
kotlin = "2.2.10"
coroutines = "1.10.2"
kotlinx-datetime = "0.7.1"
kotlinx-io = "0.8.0"
Expand All @@ -21,44 +21,44 @@ powersync-core = "0.4.4"
sqlite-jdbc = "3.50.3.0"
sqliter = "1.3.3"
turbine = "1.2.1"
kotest = "5.9.1"
kotest = "5.9.1" # we can't upgrade to 6.x because that requires Java 11 or above (we need Java 8 support)

sqlDelight = "2.1.0"
stately = "2.1.0"
supabase = "3.2.2"
junit = "4.13.2"

compose = "1.8.2" # This is for the multiplatform compose
androidCompose = "2025.07.00"
compose-preview = "1.8.3"
compose-lifecycle = "2.9.1"
androidCompose = "2025.08.00"
compose-preview = "1.9.0"
compose-lifecycle = "2.9.2"
androidxSqlite = "2.5.2"
androidxSplashscreen = "1.0.1"

# plugins
android-gradle-plugin = "8.11.1"
skie = "0.10.5"
android-gradle-plugin = "8.12.1"
skie = "0.10.6"
maven-publish = "0.34.0"
download-plugin = "5.6.0"
grammarkit-composer = "0.1.12"
mokkery = "2.9.0"
kotlinter = "5.1.1"
kotlinter = "5.2.0"
keeper = "0.16.1"
atomicfu = "0.29.0"
buildKonfig = "0.17.1"

# Sample - Android
androidx-core = "1.16.0"
androidx-core = "1.17.0"
androidx-activity-compose = "1.10.1"
materialIconsExtended = "1.7.8"

androidx-appcompat = "1.7.1"
androidx-espresso-core = "3.6.1"
androidx-espresso-core = "3.7.0"
androidx-lifecycle = "2.9.2"
androidx-material = "1.12.0"
androidx-test-runner = "1.6.2"
androidx-test-rules = "1.6.1"
junitVersion = "1.2.1"
androidx-test-runner = "1.7.0"
androidx-test-rules = "1.7.0"
junitVersion = "1.3.0"
koin-bom = "4.1.0"

[libraries]
Expand Down
8 changes: 4 additions & 4 deletions persistence/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import com.powersync.plugins.sonatype.setupGithubRepository
import com.powersync.plugins.utils.powersyncTargets
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jmailen.gradle.kotlinter.tasks.FormatTask
import org.jmailen.gradle.kotlinter.tasks.LintTask

plugins {
alias(libs.plugins.kotlinMultiplatform)
Expand Down Expand Up @@ -79,11 +79,11 @@ sqldelight {
}
}

tasks.formatKotlinCommonMain {
tasks.withType<FormatTask> {
exclude { it.file.path.contains("generated/") }
}

tasks.lintKotlinCommonMain {
tasks.withType<LintTask> {
exclude { it.file.path.contains("generated/") }
}

Expand Down
Loading