Skip to content

Commit 63b3f12

Browse files
chore(deps): update all dependencies
| datasource | package | from | to | | ----------- | ------------------------------------------ | ---------- | -------------- | | github-tags | codecov/codecov-action | v4.1.0 | v4.3.0 | | 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 | androidx.core:core-ktx | 1.12.0 | 1.13.0 | | maven | com.android.tools.build:gradle | 8.3.1 | 8.3.2 |
1 parent 459508d commit 63b3f12

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/unit-test.yml

+1-1
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.0

build.gradle.kts

+1-1
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.3.2")
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

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ 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.0"
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"
@@ -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)