From 2b03b25c8fedd2765d57a7ae5bb93d77028d7d3a Mon Sep 17 00:00:00 2001 From: Simon Marquis Date: Sun, 18 Jun 2023 11:54:31 +0200 Subject: [PATCH] Upgrade Compose BoM `2023.06.00` and Compose compiler `1.4.7` - Bump `androidxComposeMaterial3` to stable `1.1.0` - Bump Kotlin `1.8.21` (to match the expected version used by Compose compiler) - Bump KSP `1.8.21-1.0.11` (to match Kotlin version) This also solves part of #806, where we had this dependency chain: - `androidx.compose:compose-bom:2023.01.00` - `androidx.compose.ui:ui-test-junit4:1.3.3` - `androidx.test.ext:junit:1.1.3` (unlisted from maven) - `junit:junit:4.12` (vulnerability `CVE-2020-15250`) --- gradle/libs.versions.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index fd37438cb..a3b28e3d2 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -5,10 +5,10 @@ androidGradlePlugin = "8.0.2" androidxActivity = "1.7.0" androidxAppCompat = "1.5.1" androidxBrowser = "1.4.0" -androidxComposeBom = "2023.01.00" -androidxComposeCompiler = "1.4.5" -androidxComposeMaterial3 = "1.1.0-alpha06" -androidxComposeRuntimeTracing = "1.0.0-alpha01" +androidxComposeBom = "2023.06.00" +androidxComposeCompiler = "1.4.7" +androidxComposeMaterial3 = "1.1.0" +androidxComposeRuntimeTracing = "1.0.0-alpha03" androidxCore = "1.9.0" androidxCoreSplashscreen = "1.0.0" androidxDataStore = "1.0.0" @@ -39,11 +39,11 @@ hilt = "2.44.2" hiltExt = "1.0.0" jacoco = "0.8.7" junit4 = "4.13.2" -kotlin = "1.8.20" +kotlin = "1.8.21" kotlinxCoroutines = "1.6.4" kotlinxDatetime = "0.4.0" kotlinxSerializationJson = "1.5.1" -ksp = "1.8.20-1.0.11" +ksp = "1.8.21-1.0.11" lint = "30.3.1" okhttp = "4.10.0" protobuf = "3.23.0"