diff --git a/CHANGELOG.md b/CHANGELOG.md index 5efcc58b..4c4aec71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.9.3 + ### Added - **Codegen auto-sync** — `supabaseCodegen { autoSync = true }` wires model generation into every @@ -23,6 +25,12 @@ Gradle extension's `fileName` property were removed. The generated header now points users to extension functions/properties for customisation (don't hand-edit generated files). +### Fixed + +- **chat-compose sample builds again** — pinned `androidx.lifecycle` to `2.8.7` (the `2.11.0` it had + required AGP 9.1 / compileSdk 37, but the project is on AGP 8.7.3 / compileSdk 35, so the sample + failed dependency resolution). Sample-only; no published-module change. + ## 0.9.2 ### Added diff --git a/buildSrc/src/main/kotlin/io/github/androidpoet/supabase/Configuration.kt b/buildSrc/src/main/kotlin/io/github/androidpoet/supabase/Configuration.kt index 67b8db4d..4e80cc9f 100644 --- a/buildSrc/src/main/kotlin/io/github/androidpoet/supabase/Configuration.kt +++ b/buildSrc/src/main/kotlin/io/github/androidpoet/supabase/Configuration.kt @@ -2,7 +2,7 @@ package io.github.androidpoet.supabase object Configuration { const val GROUP = "io.github.androidpoet" - const val VERSION = "0.9.2" + const val VERSION = "0.9.3" const val COMPILE_SDK = 35 const val MIN_SDK = 21 } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 803a1ca9..8d349e10 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -12,7 +12,7 @@ androidxCredentials = "1.6.0" googleId = "1.2.0" androidxCoreKtx = "1.15.0" androidxActivityCompose = "1.10.1" -androidxLifecycle = "2.11.0" +androidxLifecycle = "2.8.7" composeBom = "2026.06.00" googleMaterial = "1.12.0" detekt = "1.23.7"