From 00af88ebb05333b036e18bc86660d98243e025de Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 12:19:38 +0100 Subject: [PATCH] Update wysiwyg to v2.32.0 (#2531) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update wysiwyg to v2.32.0 * Bump min global coverage value to 70 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jorge Martín --- gradle/libs.versions.toml | 2 +- plugins/src/main/kotlin/extension/KoverExtension.kt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 593cbca519..aab05b6241 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -38,7 +38,7 @@ serialization_json = "1.6.3" showkase = "1.0.2" appyx = "1.4.0" sqldelight = "2.0.1" -wysiwyg = "2.31.0" +wysiwyg = "2.32.0" telephoto = "0.8.0" # DI diff --git a/plugins/src/main/kotlin/extension/KoverExtension.kt b/plugins/src/main/kotlin/extension/KoverExtension.kt index 20ee1f977f..cfcd18abf9 100644 --- a/plugins/src/main/kotlin/extension/KoverExtension.kt +++ b/plugins/src/main/kotlin/extension/KoverExtension.kt @@ -109,11 +109,11 @@ fun Project.setupKover() { isEnabled = true entity = kotlinx.kover.gradle.plugin.dsl.GroupingEntityType.APPLICATION bound { - minValue = 65 + minValue = 70 // Setting a max value, so that if coverage is bigger, it means that we have to change minValue. // For instance if we have minValue = 20 and maxValue = 30, and current code coverage is now 31.32%, update // minValue to 25 and maxValue to 35. - maxValue = 75 + maxValue = 80 metric = kotlinx.kover.gradle.plugin.dsl.MetricType.INSTRUCTION aggregation = kotlinx.kover.gradle.plugin.dsl.AggregationType.COVERED_PERCENTAGE }