From a4e4e10ff2561f22fd3afaf3d794545983c1a225 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 26 Jun 2023 01:06:19 -0400 Subject: [PATCH] Update sgp to v0.9.14 (#769) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.slack.gradle.root](https://togithub.com/slackhq/slack-gradle-plugin) | `0.9.10-1.9.0-Beta` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/com.slack.gradle.root/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.slack.gradle.root/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.slack.gradle.root/0.9.14/compatibility-slim/0.9.10-1.9.0-Beta)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.slack.gradle.root/0.9.14/confidence-slim/0.9.10-1.9.0-Beta)](https://docs.renovatebot.com/merge-confidence/) | | [com.slack.gradle.base](https://togithub.com/slackhq/slack-gradle-plugin) | `0.9.10-1.9.0-Beta` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/com.slack.gradle.base/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.slack.gradle.base/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.slack.gradle.base/0.9.14/compatibility-slim/0.9.10-1.9.0-Beta)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.slack.gradle.base/0.9.14/confidence-slim/0.9.10-1.9.0-Beta)](https://docs.renovatebot.com/merge-confidence/) | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information. --- ### Release Notes
slackhq/slack-gradle-plugin (com.slack.gradle.root) ### [`v0.9.14`](https://togithub.com/slackhq/slack-gradle-plugin/blob/HEAD/CHANGELOG.md#​0914) [Compare Source](https://togithub.com/slackhq/slack-gradle-plugin/compare/0.9.13...0.9.14) *2023-06-25* - Fix compose compiler config not applying to android projects. ### [`v0.9.13`](https://togithub.com/slackhq/slack-gradle-plugin/blob/HEAD/CHANGELOG.md#​0913) [Compare Source](https://togithub.com/slackhq/slack-gradle-plugin/compare/0.9.12...0.9.13) *2023-06-24* - Fix wrong map key name being used in exclusion. ### [`v0.9.12`](https://togithub.com/slackhq/slack-gradle-plugin/blob/HEAD/CHANGELOG.md#​0912) [Compare Source](https://togithub.com/slackhq/slack-gradle-plugin/compare/0.9.11...0.9.12) *2023-06-24* - Fix wrong dependency being used for compose-compiler in new Compose configuration overhaul. ### [`v0.9.11`](https://togithub.com/slackhq/slack-gradle-plugin/blob/HEAD/CHANGELOG.md#​0911) *2023-06-24* - Overhaul configuration of the Compose compiler across Android and multiplatform projects to make it easier to test the matrix of the AndroidX compose compiler, the JetBrains compose compiler, and new Kotlin versions. - **New**: Add a `sgp.compose.multiplatform.forceAndroidXComposeCompiler` Gradle property flag to force use of the AndroidX compose compiler in Compose Multiplatform projects. - **New**: Add a `sgp.config.jvmVendor.optOut` Gradle property flag to disable jvmVendor configuration in toolchains. - **Fix**: No longer try to watch thermals on Intel macOS machines when configuration cache is enabled.
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/ZacSweers/CatchUp). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Zac Sweers --- .../main/kotlin/io/sweers/catchup/ui/about/LicensesScreen.kt | 3 +-- gradle/libs.versions.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/app/src/main/kotlin/io/sweers/catchup/ui/about/LicensesScreen.kt b/app/src/main/kotlin/io/sweers/catchup/ui/about/LicensesScreen.kt index ebbcb082f..5a1caa9b3 100644 --- a/app/src/main/kotlin/io/sweers/catchup/ui/about/LicensesScreen.kt +++ b/app/src/main/kotlin/io/sweers/catchup/ui/about/LicensesScreen.kt @@ -73,7 +73,6 @@ import kotlinx.collections.immutable.persistentListOf import kotlinx.collections.immutable.toImmutableList import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.ExperimentalCoroutinesApi -import kotlinx.coroutines.FlowPreview import kotlinx.coroutines.flow.asFlow import kotlinx.coroutines.flow.distinctUntilChangedBy import kotlinx.coroutines.flow.flatMapConcat @@ -271,7 +270,7 @@ constructor( } /** I give you: the most over-engineered OSS licenses section ever. */ - @OptIn(FlowPreview::class, ExperimentalCoroutinesApi::class) + @OptIn(ExperimentalCoroutinesApi::class) private suspend fun requestItemsInner(): ImmutableList { // Start with a fetch of our github entries from assets val githubEntries = diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index d598dce3d..3c0417f0b 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -43,7 +43,7 @@ preferences = "1.2.0" retrofit = "2.9.0" room = "2.6.0-alpha02" sortDependencies = "0.3" -sgp = "0.9.10-1.9.0-Beta" +sgp = "0.9.14-1.9.0-RC" spotless = "6.19.0" sqldelight = "2.0.0-rc01" telephoto = "1.0.0-alpha02"