Skip to content

Commit c2db6fe

Browse files
chore(deps): update all dependencies
| datasource | package | from | to | | ----------- | ------------------------------------------ | ---------- | -------------- | | github-tags | codecov/codecov-action | v4.1.0 | v4.3.1 | | maven | io.arrow-kt:arrow-core | 1.2.3 | 1.2.4 | | maven | io.github.hoc081098:FlowExt | 0.8.1-Beta | 0.8.1-SNAPSHOT | | maven | io.insert-koin:koin-test | 3.5.3 | 3.5.6 | | maven | io.insert-koin:koin-test-junit4 | 3.5.3 | 3.5.6 | | maven | io.insert-koin:koin-android | 3.5.3 | 3.5.6 | | maven | io.insert-koin:koin-core | 3.5.3 | 3.5.6 | | maven | com.squareup.leakcanary:leakcanary-android | 2.13 | 2.14 | | maven | com.squareup.retrofit2:converter-moshi | 2.10.0 | 2.11.0 | | maven | com.squareup.retrofit2:retrofit | 2.10.0 | 2.11.0 | | maven | com.google.android.material:material | 1.11.0 | 1.12.0 | | maven | androidx.core:core-ktx | 1.12.0 | 1.13.1 | | maven | com.android.tools.build:gradle | 8.3.1 | 8.4.0 | | maven | org.jetbrains.kotlin:kotlin-gradle-plugin | 1.9.23 | 1.9.24 | | maven | org.jetbrains.kotlin:kotlin-test-junit | 1.9.23 | 1.9.24 |
1 parent 459508d commit c2db6fe

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
run: ./gradlew :app:koverXmlReport --warning-mode all --stacktrace
4242

4343
- name: Upload Test Report
44-
uses: codecov/codecov-action@v4.1.0
44+
uses: codecov/codecov-action@v4.3.1

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ buildscript {
1919
maven(url = "https://oss.sonatype.org/content/repositories/snapshots")
2020
}
2121
dependencies {
22-
classpath("com.android.tools.build:gradle:8.3.1")
22+
classpath("com.android.tools.build:gradle:8.4.0")
2323
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
2424
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.25.0")
2525
classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.15.2")

buildSrc/src/main/kotlin/deps.kt

Lines changed: 9 additions & 9 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 = "1.0.0"
10-
const val kotlinVersion = "1.9.23"
10+
const val kotlinVersion = "1.9.24"
1111

1212
object appConfig {
1313
const val applicationId = "com.hoc.flowmvi"
@@ -27,11 +27,11 @@ object appConfig {
2727
object deps {
2828
object androidx {
2929
const val appCompat = "androidx.appcompat:appcompat:1.6.1"
30-
const val coreKtx = "androidx.core:core-ktx:1.12.0"
30+
const val coreKtx = "androidx.core:core-ktx:1.13.1"
3131
const val constraintLayout = "androidx.constraintlayout:constraintlayout:2.1.4"
3232
const val recyclerView = "androidx.recyclerview:recyclerview:1.3.2"
3333
const val swipeRefreshLayout = "androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01"
34-
const val material = "com.google.android.material:material:1.11.0"
34+
const val material = "com.google.android.material:material:1.12.0"
3535
const val startup = "androidx.startup:startup-runtime:1.1.1"
3636
}
3737

@@ -44,11 +44,11 @@ object deps {
4444
}
4545

4646
object squareup {
47-
const val retrofit = "com.squareup.retrofit2:retrofit:2.10.0"
48-
const val converterMoshi = "com.squareup.retrofit2:converter-moshi:2.10.0"
47+
const val retrofit = "com.squareup.retrofit2:retrofit:2.11.0"
48+
const val converterMoshi = "com.squareup.retrofit2:converter-moshi:2.11.0"
4949
const val loggingInterceptor = "com.squareup.okhttp3:logging-interceptor:4.12.0"
5050
const val moshiKotlin = "com.squareup.moshi:moshi-kotlin:1.15.1"
51-
const val leakCanary = "com.squareup.leakcanary:leakcanary-android:2.13"
51+
const val leakCanary = "com.squareup.leakcanary:leakcanary-android:2.14"
5252
}
5353

5454
object coroutines {
@@ -60,7 +60,7 @@ object deps {
6060
}
6161

6262
object koin {
63-
private const val version = "3.5.3"
63+
private const val version = "3.5.6"
6464

6565
const val core = "io.insert-koin:koin-core:$version"
6666
const val android = "io.insert-koin:koin-android:$version"
@@ -70,11 +70,11 @@ object deps {
7070

7171
const val coil = "io.coil-kt:coil:2.6.0"
7272
const val viewBindingDelegate = "com.github.hoc081098:ViewBindingDelegate:1.4.0"
73-
const val flowExt = "io.github.hoc081098:FlowExt:0.8.1-Beta"
73+
const val flowExt = "io.github.hoc081098:FlowExt:0.8.1-SNAPSHOT"
7474
const val timber = "com.jakewharton.timber:timber:5.0.1"
7575

7676
object arrow {
77-
private const val version = "1.2.3"
77+
private const val version = "1.2.4"
7878
const val core = "io.arrow-kt:arrow-core:$version"
7979
}
8080

0 commit comments

Comments
 (0)