Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
| datasource     | package                                                               | from     | to             |
| -------------- | --------------------------------------------------------------------- | -------- | -------------- |
| github-tags    | codecov/codecov-action                                                | v4.4.0   | v4.5.0         |
| gradle-version | gradle                                                                | 8.7      | 8.8            |
| maven          | io.mockk:mockk                                                        | 1.13.10  | 1.13.11        |
| maven          | io.github.hoc081098:FlowExt                                           | 1.0.0-RC | 1.0.0-SNAPSHOT |
| maven          | androidx.lifecycle:lifecycle-common-java8                             | 2.8.0    | 2.8.2          |
| maven          | androidx.lifecycle:lifecycle-runtime-ktx                              | 2.8.0    | 2.8.2          |
| maven          | androidx.lifecycle:lifecycle-viewmodel-ktx                            | 2.8.0    | 2.8.2          |
| maven          | dev.drewhamilton.poko:poko-gradle-plugin                              | 0.15.2   | 0.16.0         |
| maven          | androidx.appcompat:appcompat                                          | 1.6.1    | 1.7.0          |
| maven          | com.android.tools.build:gradle                                        | 8.4.0    | 8.4.2          |
| maven          | org.jetbrains.kotlinx.kover:org.jetbrains.kotlinx.kover.gradle.plugin | 0.7.6    | 0.8.1          |
  • Loading branch information
renovate[bot] authored Jun 13, 2024
1 parent 2967695 commit 5e654b9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ jobs:
run: ./gradlew :app:koverXmlReport --warning-mode all --stacktrace

- name: Upload Test Report
uses: codecov/codecov-action@v4.4.0
uses: codecov/codecov-action@v4.5.0
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
// Top-level build file where you can add configuration options common to all sub-projects/modules.

plugins {
id("org.jetbrains.kotlinx.kover") version "0.7.6" apply false
id("org.jetbrains.kotlinx.kover") version "0.8.1" apply false
id("com.diffplug.spotless") version "6.25.0" apply false
}

Expand All @@ -19,10 +19,10 @@ buildscript {
maven(url = "https://oss.sonatype.org/content/repositories/snapshots")
}
dependencies {
classpath("com.android.tools.build:gradle:8.4.0")
classpath("com.android.tools.build:gradle:8.4.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.25.0")
classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.15.2")
classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.16.0")
classpath("com.github.ben-manes:gradle-versions-plugin:0.51.0")
}
}
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
8 changes: 4 additions & 4 deletions buildSrc/src/main/kotlin/deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ object appConfig {

object deps {
object androidx {
const val appCompat = "androidx.appcompat:appcompat:1.6.1"
const val appCompat = "androidx.appcompat:appcompat:1.7.0"
const val coreKtx = "androidx.core:core-ktx:1.13.1"
const val constraintLayout = "androidx.constraintlayout:constraintlayout:2.1.4"
const val recyclerView = "androidx.recyclerview:recyclerview:1.3.2"
Expand All @@ -36,7 +36,7 @@ object deps {
}

object lifecycle {
private const val version = "2.8.0"
private const val version = "2.8.2"

const val viewModelKtx = "androidx.lifecycle:lifecycle-viewmodel-ktx:$version" // viewModelScope
const val runtimeKtx = "androidx.lifecycle:lifecycle-runtime-ktx:$version" // lifecycleScope
Expand Down Expand Up @@ -70,7 +70,7 @@ object deps {

const val coil = "io.coil-kt:coil:2.6.0"
const val viewBindingDelegate = "com.github.hoc081098:ViewBindingDelegate:1.4.0"
const val flowExt = "io.github.hoc081098:FlowExt:1.0.0-RC"
const val flowExt = "io.github.hoc081098:FlowExt:1.0.0-SNAPSHOT"
const val timber = "com.jakewharton.timber:timber:5.0.1"

object arrow {
Expand All @@ -90,7 +90,7 @@ object deps {
}
}

const val mockk = "io.mockk:mockk:1.13.10"
const val mockk = "io.mockk:mockk:1.13.11"
const val kotlinJUnit = "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 5e654b9

Please sign in to comment.