Skip to content

Commit 713e7bb

Browse files
chore(deps): update all dependencies
| datasource | package | from | to | | -------------- | ------------------------------------------------ | -------- | ------ | | gradle-version | gradle | 7.6.1 | 7.6.2 | | maven | io.mockk:mockk | 1.13.5 | 1.13.8 | | maven | androidx.test.espresso:espresso-core | 3.4.0 | 3.5.1 | | maven | io.arrow-kt:arrow-core | 1.2.0-RC | 1.2.1 | | maven | io.github.hoc081098:FlowExt | 0.6.1 | 0.7.1 | | maven | io.coil-kt:coil | 2.3.0 | 2.4.0 | | maven | io.insert-koin:koin-test | 3.4.0 | 3.5.0 | | maven | io.insert-koin:koin-test-junit4 | 3.4.0 | 3.5.0 | | maven | io.insert-koin:koin-android | 3.4.0 | 3.5.0 | | maven | io.insert-koin:koin-core | 3.4.0 | 3.5.0 | | maven | org.jetbrains.kotlinx:kotlinx-coroutines-test | 1.7.1 | 1.7.3 | | maven | org.jetbrains.kotlinx:kotlinx-coroutines-android | 1.7.1 | 1.7.3 | | maven | org.jetbrains.kotlinx:kotlinx-coroutines-core | 1.7.1 | 1.7.3 | | maven | com.squareup.leakcanary:leakcanary-android | 2.11 | 2.12 | | maven | androidx.lifecycle:lifecycle-common-java8 | 2.6.1 | 2.6.2 | | maven | androidx.lifecycle:lifecycle-runtime-ktx | 2.6.1 | 2.6.2 | | maven | androidx.lifecycle:lifecycle-viewmodel-ktx | 2.6.1 | 2.6.2 | | maven | androidx.recyclerview:recyclerview | 1.3.0 | 1.3.1 | | maven | androidx.core:core-ktx | 1.10.1 | 1.12.0 | | maven | dev.drewhamilton.poko:poko-gradle-plugin | 0.13.0 | 0.15.0 | | maven | com.diffplug.spotless:spotless-plugin-gradle | 6.18.0 | 6.21.0 | | maven | org.jetbrains.kotlin:kotlin-gradle-plugin | 1.8.21 | 1.9.10 | | maven | org.jetbrains.kotlin:kotlin-test-junit | 1.8.21 | 1.9.10 |
1 parent e197ea0 commit 713e7bb

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ buildscript {
1616
dependencies {
1717
classpath("com.android.tools.build:gradle:7.4.2")
1818
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
19-
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.18.0")
20-
classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.13.0")
19+
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.21.0")
20+
classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.15.0")
2121
classpath("org.jacoco:org.jacoco.core:0.8.10")
2222
classpath("com.vanniktech:gradle-android-junit-jacoco-plugin:0.17.0-SNAPSHOT")
2323
classpath("com.github.ben-manes:gradle-versions-plugin:0.46.0")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.2-all.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

buildSrc/src/main/kotlin/deps.kt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import org.gradle.plugin.use.PluginDependenciesSpec
77
import org.gradle.plugin.use.PluginDependencySpec
88

99
const val ktlintVersion = "0.46.1"
10-
const val kotlinVersion = "1.8.21"
10+
const val kotlinVersion = "1.9.10"
1111

1212
object appConfig {
1313
const val applicationId = "com.hoc.flowmvi"
@@ -28,16 +28,16 @@ object appConfig {
2828
object deps {
2929
object androidx {
3030
const val appCompat = "androidx.appcompat:appcompat:1.6.1"
31-
const val coreKtx = "androidx.core:core-ktx:1.10.1"
31+
const val coreKtx = "androidx.core:core-ktx:1.12.0"
3232
const val constraintLayout = "androidx.constraintlayout:constraintlayout:2.1.4"
33-
const val recyclerView = "androidx.recyclerview:recyclerview:1.3.0"
33+
const val recyclerView = "androidx.recyclerview:recyclerview:1.3.1"
3434
const val swipeRefreshLayout = "androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01"
3535
const val material = "com.google.android.material:material:1.9.0"
3636
const val startup = "androidx.startup:startup-runtime:1.1.1"
3737
}
3838

3939
object lifecycle {
40-
private const val version = "2.6.1"
40+
private const val version = "2.6.2"
4141

4242
const val viewModelKtx = "androidx.lifecycle:lifecycle-viewmodel-ktx:$version" // viewModelScope
4343
const val runtimeKtx = "androidx.lifecycle:lifecycle-runtime-ktx:$version" // lifecycleScope
@@ -49,33 +49,33 @@ object deps {
4949
const val converterMoshi = "com.squareup.retrofit2:converter-moshi:2.9.0"
5050
const val loggingInterceptor = "com.squareup.okhttp3:logging-interceptor:4.11.0"
5151
const val moshiKotlin = "com.squareup.moshi:moshi-kotlin:1.15.0"
52-
const val leakCanary = "com.squareup.leakcanary:leakcanary-android:2.11"
52+
const val leakCanary = "com.squareup.leakcanary:leakcanary-android:2.12"
5353
}
5454

5555
object coroutines {
56-
private const val version = "1.7.1"
56+
private const val version = "1.7.3"
5757

5858
const val core = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version"
5959
const val android = "org.jetbrains.kotlinx:kotlinx-coroutines-android:$version"
6060
const val test = "org.jetbrains.kotlinx:kotlinx-coroutines-test:$version"
6161
}
6262

6363
object koin {
64-
private const val version = "3.4.0"
64+
private const val version = "3.5.0"
6565

6666
const val core = "io.insert-koin:koin-core:$version"
6767
const val android = "io.insert-koin:koin-android:$version"
6868
const val testJunit4 = "io.insert-koin:koin-test-junit4:$version"
6969
const val test = "io.insert-koin:koin-test:$version"
7070
}
7171

72-
const val coil = "io.coil-kt:coil:2.3.0"
72+
const val coil = "io.coil-kt:coil:2.4.0"
7373
const val viewBindingDelegate = "com.github.hoc081098:ViewBindingDelegate:1.4.0"
74-
const val flowExt = "io.github.hoc081098:FlowExt:0.6.1"
74+
const val flowExt = "io.github.hoc081098:FlowExt:0.7.1"
7575
const val timber = "com.jakewharton.timber:timber:5.0.1"
7676

7777
object arrow {
78-
private const val version = "1.2.0-RC"
78+
private const val version = "1.2.1"
7979
const val core = "io.arrow-kt:arrow-core:$version"
8080
}
8181

@@ -87,11 +87,11 @@ object deps {
8787
const val junit = "androidx.test.ext:junit-ktx:1.1.5"
8888

8989
object espresso {
90-
const val core = "androidx.test.espresso:espresso-core:3.4.0"
90+
const val core = "androidx.test.espresso:espresso-core:3.5.1"
9191
}
9292
}
9393

94-
const val mockk = "io.mockk:mockk:1.13.5"
94+
const val mockk = "io.mockk:mockk:1.13.8"
9595
const val kotlinJUnit = "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
9696
}
9797
}

gradle/wrapper/gradle-wrapper.jar

50 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.2-all.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)