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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.9.3

### Added

- **Codegen auto-sync** — `supabaseCodegen { autoSync = true }` wires model generation into every
Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading