From 7379426e4619199b5bebb16ceb01f929b86a1d70 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 19:10:37 +0000 Subject: [PATCH] chore(deps): update all non-major dependencies --- app/build.gradle | 44 ++++++++++++++++++------------------ build.gradle | 12 +++++----- gradle/scripts/jacoco.gradle | 2 +- 3 files changed, 29 insertions(+), 29 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 07296d8c2..25f177148 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -84,7 +84,7 @@ android { } def retrofitVersion = '2.9.0' -def tikXmlVersion = '0.8.13' +def tikXmlVersion = '0.8.15' configurations.all { resolutionStrategy { @@ -124,13 +124,13 @@ dependencies { // Firebase implementation 'com.google.firebase:firebase-core:21.1.1' - implementation 'com.google.firebase:firebase-messaging:23.2.1' - implementation 'com.google.firebase:firebase-crashlytics-ktx:18.4.3' - implementation 'com.google.firebase:firebase-analytics-ktx:21.3.0' + implementation 'com.google.firebase:firebase-messaging:23.3.1' + implementation 'com.google.firebase:firebase-crashlytics-ktx:18.5.1' + implementation 'com.google.firebase:firebase-analytics-ktx:21.5.0' // Helpers - implementation 'com.google.code.gson:gson:2.9.0' - implementation 'net.danlew:android.joda:2.10.14' + implementation 'com.google.code.gson:gson:2.10.1' + implementation 'net.danlew:android.joda:2.12.5' // XML Parsing implementation "com.tickaroo.tikxml:annotation:$tikXmlVersion" @@ -143,7 +143,7 @@ dependencies { implementation 'androidx.fragment:fragment-ktx:1.6.1' // Note: fix for internal androidx libraries using outdated WorkManager causing a crash implementation "androidx.work:work-runtime-ktx:2.8.1" - implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4' + implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3' // RxJava implementation 'io.reactivex.rxjava2:rxandroid:2.1.1' @@ -154,59 +154,59 @@ dependencies { implementation 'com.patloew.rxlocation:rxlocation:1.0.5' // Transport - implementation 'com.squareup.okhttp3:logging-interceptor:4.9.0' + implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0' implementation "com.squareup.retrofit2:retrofit:$retrofitVersion" implementation "com.squareup.retrofit2:converter-gson:$retrofitVersion" implementation "com.squareup.retrofit2:adapter-rxjava2:$retrofitVersion" - implementation 'com.squareup.picasso:picasso:2.8' + implementation 'com.squareup.picasso:picasso:2.71828' implementation "com.tickaroo.tikxml:retrofit-converter:$tikXmlVersion" implementation 'com.github.franmontiel:PersistentCookieJar:1.0.1' // UI implementation 'com.github.mtotschnig:StickyListHeaders:2.8.0' implementation 'com.github.chrisbanes:PhotoView:2.3.0' - implementation 'de.psdev.licensesdialog:licensesdialog:2.1.0' + implementation 'de.psdev.licensesdialog:licensesdialog:2.2.0' implementation 'com.github.thellmund.Android-Week-View:core:4.1.6' implementation 'de.hdodenhof:circleimageview:3.1.0' implementation 'com.github.PhilJay:MPAndroidChart:3.1.0' implementation 'com.makeramen:roundedimageview:2.3.0' // Dagger - implementation 'com.google.dagger:dagger:2.38.1' - kapt 'com.google.dagger:dagger-compiler:2.38.1' + implementation 'com.google.dagger:dagger:2.48.1' + kapt 'com.google.dagger:dagger-compiler:2.48.1' // LeakCanary - debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.9.1' + debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.12' // Testing testImplementation 'androidx.test:core:1.5.0' - testImplementation "commons-io:commons-io:2.11.0" + testImplementation "commons-io:commons-io:2.15.0" testImplementation 'junit:junit:4.13.2' - testImplementation 'org.mockito:mockito-core:5.5.0' - testImplementation 'org.assertj:assertj-core:3.17.1' + testImplementation 'org.mockito:mockito-core:5.6.0' + testImplementation 'org.assertj:assertj-core:3.24.2' testImplementation "androidx.room:room-testing:$room_version" testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version" testImplementation 'com.android.support.test:rules:1.0.2' testImplementation 'com.android.support.test:runner:1.0.2' testImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' - testImplementation 'org.robolectric:robolectric:4.10.3' + testImplementation 'org.robolectric:robolectric:4.11' // gRPC backend - implementation 'io.grpc:grpc-protobuf-lite:1.58.0' // CURRENT_GRPC_VERSION - implementation 'io.grpc:grpc-stub:1.58.0' // CURRENT_GRPC_VERSION + implementation 'io.grpc:grpc-protobuf-lite:1.59.0' // CURRENT_GRPC_VERSION + implementation 'io.grpc:grpc-stub:1.59.0' // CURRENT_GRPC_VERSION implementation 'org.apache.tomcat:annotations-api:6.0.53' // View binding helper - implementation "com.github.Zhuinden:fragmentviewbindingdelegate-kt:1.0.0" + implementation "com.github.Zhuinden:fragmentviewbindingdelegate-kt:1.0.2" } protobuf { - protoc { artifact = 'com.google.protobuf:protoc:3.24.3' } + protoc { artifact = 'com.google.protobuf:protoc:3.24.4' } plugins { javalite { artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0" } - grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.58.0' } // CURRENT_GRPC_VERSION + grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.59.0' } // CURRENT_GRPC_VERSION } generateProtoTasks { all().each { task -> diff --git a/build.gradle b/build.gradle index 5c64bec40..c01535866 100644 --- a/build.gradle +++ b/build.gradle @@ -2,8 +2,8 @@ buildscript { ext { - kotlin_version = '1.8.22' - room_version = '2.5.2' + kotlin_version = '1.9.20' + room_version = '2.6.0' } repositories { google() @@ -12,13 +12,13 @@ buildscript { maven { url "https://jitpack.io"} } dependencies { - classpath 'com.android.tools.build:gradle:8.1.1' + classpath 'com.android.tools.build:gradle:8.1.2' classpath 'com.google.gms:google-services:4.4.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - classpath 'org.jlleitschuh.gradle:ktlint-gradle:11.5.1' + classpath 'org.jlleitschuh.gradle:ktlint-gradle:11.6.1' classpath "com.github.ben-manes:gradle-versions-plugin:0.43.0" - classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.13.1" - classpath "com.google.protobuf:protobuf-gradle-plugin:0.9.0" + classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.3" + classpath "com.google.protobuf:protobuf-gradle-plugin:0.9.4" classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9' } } diff --git a/gradle/scripts/jacoco.gradle b/gradle/scripts/jacoco.gradle index 8fddedfe4..6df36e01f 100644 --- a/gradle/scripts/jacoco.gradle +++ b/gradle/scripts/jacoco.gradle @@ -1,7 +1,7 @@ apply plugin: 'jacoco' jacoco { - toolVersion = "0.8.10" + toolVersion = "0.8.11" } tasks.register('jacocoTestReport', JacocoReport) {