From 04a565e5a2ef4c6d76db96db9f3bccf60826f662 Mon Sep 17 00:00:00 2001 From: Patrick Honkonen <1883101+SaintPatrck@users.noreply.github.com> Date: Wed, 3 Apr 2024 19:11:20 -0400 Subject: [PATCH] Include Compose compiler in kotlin renovate group (#16) --- .github/renovate.json | 1 + gradle/libs.versions.toml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index aa9c41859..6f6dc96a6 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -35,6 +35,7 @@ "groupName": "kotlin", "description": "Kotlin and Compose dependencies that must be updated together to maintain compatibility.", "matchPackagePatterns": [ + "androidx.compose.compiler:compiler", "androidx.compose:compose-bom", "org.jetbrains.kotlin.*", "com.google.devtools.ksp" diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 4acc288b5..aa11fa90c 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -62,6 +62,8 @@ androidx-camera-lifecycle = { group = "androidx.camera", name = "camera-lifecycl androidx-camera-view = { module = "androidx.camera:camera-view", version.ref = "androidxCamera" } androidx-compose-animation = { module = "androidx.compose.animation:animation" } androidx-compose-bom = { module = "androidx.compose:compose-bom", version.ref = "androidxComposeBom" } +# Included so that Renovate tracks updates since Compose Compiler is not referenced directly in `dependency {}` blocks. +androidx-compose-compiler = { module = "androidx.compose.compiler:compiler", version.ref = "kotlinCompilerExtensionVersion" } androidx-compose-material3 = { module = "androidx.compose.material3:material3" } androidx-compose-runtime = { module = "androidx.compose.runtime:runtime" } androidx-compose-ui = { module = "androidx.compose.ui:ui" }