From 0ed5cc5577b557f45fee90e2c815dfddfcdf6744 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 22 Jul 2023 13:18:10 +0000 Subject: [PATCH] Update all non-major dependencies --- app/build.gradle | 64 ++--- build.gradle | 14 +- gradle/scripts/jacoco.gradle | 2 +- gradle/wrapper/gradle-wrapper.jar | Bin 49896 -> 61624 bytes gradle/wrapper/gradle-wrapper.properties | 4 +- gradlew | 304 ++++++++++++++--------- gradlew.bat | 182 +++++++------- 7 files changed, 326 insertions(+), 244 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 7cfc28cae2..071103a715 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'de.aaschmid.cpd' version '3.1' + id 'de.aaschmid.cpd' version '3.3' } // apply plugin: "io.gitlab.arturbosch.detekt" apply plugin: 'com.android.application' @@ -83,7 +83,7 @@ android { } def retrofitVersion = '2.9.0' -def tikXmlVersion = '0.8.13' +def tikXmlVersion = '0.8.15' configurations.all { resolutionStrategy { @@ -95,23 +95,23 @@ dependencies { // Support Libraries implementation 'androidx.cardview:cardview:1.0.0' - implementation 'com.google.android.material:material:1.5.0' + implementation 'com.google.android.material:material:1.9.0' implementation 'androidx.legacy:legacy-preference-v14:1.0.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' // Android arch components implementation "androidx.room:room-rxjava2:$room_version" implementation "androidx.room:room-runtime:$room_version" - implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.0' + implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1' implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' implementation 'android.arch.lifecycle:reactivestreams:1.1.1' implementation 'android.arch.work:work-runtime-ktx:1.0.1' - implementation 'androidx.appcompat:appcompat:1.4.2' - implementation 'androidx.lifecycle:lifecycle-common-java8:2.5.0' + implementation 'androidx.appcompat:appcompat:1.6.1' + implementation 'androidx.lifecycle:lifecycle-common-java8:2.6.1' kapt "androidx.room:room-compiler:$room_version" // Play services - implementation 'com.google.android.gms:play-services-base:18.0.1' + implementation 'com.google.android.gms:play-services-base:18.2.0' implementation 'com.google.android.gms:play-services-location:19.0.1' // Used for in-app reviews @@ -120,13 +120,13 @@ dependencies { // Firebase implementation 'com.google.firebase:firebase-core:20.1.2' - implementation 'com.google.firebase:firebase-messaging:23.0.6' - implementation 'com.google.firebase:firebase-crashlytics-ktx:18.2.9' + implementation 'com.google.firebase:firebase-messaging:23.2.0' + implementation 'com.google.firebase:firebase-crashlytics-ktx:18.4.0' implementation 'com.google.firebase:firebase-analytics-ktx:20.1.2' // 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" @@ -136,10 +136,10 @@ dependencies { // Kotlin implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "org.jetbrains.anko:anko:0.10.8" - implementation 'androidx.core:core-ktx:1.8.0' - implementation 'androidx.fragment:fragment-ktx:1.4.1' + implementation 'androidx.core:core-ktx:1.10.1' + implementation 'androidx.fragment:fragment-ktx:1.6.0' // Note: fix for internal androidx libraries using outdated WorkManager causing a crash - implementation "androidx.work:work-runtime-ktx:2.7.1" + implementation "androidx.work:work-runtime-ktx:2.8.1" // RxJava implementation 'io.reactivex.rxjava2:rxandroid:2.1.1' @@ -150,11 +150,11 @@ 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.11.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' implementation 'com.squareup.okio:okio:2.10.0' @@ -164,56 +164,56 @@ dependencies { implementation 'com.github.chrisbanes:PhotoView:2.3.0' implementation 'me.dm7.barcodescanner:zxing:1.9.13' implementation 'com.journeyapps:zxing-android-embedded:3.6.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.28.3' - kapt 'com.google.dagger:dagger-compiler:2.28.3' + implementation 'com.google.dagger:dagger:2.47' + kapt 'com.google.dagger:dagger-compiler:2.47' // LeakCanary - debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.9.1' + debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.12' // DebugDatabase debugImplementation 'com.amitshekhar.android:debug-db:1.0.6' // Testing - testImplementation 'androidx.test:core:1.4.0' - testImplementation "commons-io:commons-io:2.11.0" + testImplementation 'androidx.test:core:1.5.0' + testImplementation "commons-io:commons-io:2.13.0" testImplementation 'junit:junit:4.13.2' - testImplementation 'org.mockito:mockito-core:3.5.11' - testImplementation 'org.assertj:assertj-core:3.17.1' + testImplementation 'org.mockito:mockito-core:3.12.4' + 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.8.1' + testImplementation 'org.robolectric:robolectric:4.10.3' // TicketSale - implementation 'com.stripe:stripe-android:8.1.0' + implementation 'com.stripe:stripe-android:8.7.0' // gRPC backend - implementation 'io.grpc:grpc-okhttp:1.43.2' // CURRENT_GRPC_VERSION - implementation 'io.grpc:grpc-protobuf-lite:1.43.2' // CURRENT_GRPC_VERSION - implementation 'io.grpc:grpc-stub:1.43.2' // CURRENT_GRPC_VERSION + implementation 'io.grpc:grpc-okhttp:1.56.1' // CURRENT_GRPC_VERSION + implementation 'io.grpc:grpc-protobuf-lite:1.56.1' // CURRENT_GRPC_VERSION + implementation 'io.grpc:grpc-stub:1.56.1' // 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.19.2' } + protoc { artifact = 'com.google.protobuf:protoc:3.23.4' } plugins { javalite { artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0" } - grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.43.2' } // CURRENT_GRPC_VERSION + grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.56.1' } // CURRENT_GRPC_VERSION } generateProtoTasks { all().each { task -> diff --git a/build.gradle b/build.gradle index 52bba302d8..5527cd5bd3 100644 --- a/build.gradle +++ b/build.gradle @@ -2,8 +2,8 @@ buildscript { ext { - kotlin_version = '1.7.0' - room_version = '2.5.0-alpha02' + kotlin_version = '1.9.0' + room_version = '2.5.2' } repositories { google() @@ -13,13 +13,13 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:7.4.2' - classpath 'com.google.gms:google-services:4.3.13' + classpath 'com.google.gms:google-services:4.3.15' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'org.jlleitschuh.gradle:ktlint-gradle:8.2.0' - classpath "com.github.ben-manes:gradle-versions-plugin:0.41.0" - classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.13.1" - classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.18" - classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1' + classpath "com.github.ben-manes:gradle-versions-plugin:0.47.0" + classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.0" + classpath "com.google.protobuf:protobuf-gradle-plugin:0.9.4" + classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.7' } } diff --git a/gradle/scripts/jacoco.gradle b/gradle/scripts/jacoco.gradle index 26d74418a5..b5b1dbf87c 100644 --- a/gradle/scripts/jacoco.gradle +++ b/gradle/scripts/jacoco.gradle @@ -1,7 +1,7 @@ apply plugin: 'jacoco' jacoco { - toolVersion = "0.8.5" + toolVersion = "0.8.10" } task jacocoTestReport(type: JacocoReport, dependsOn: "testDebugUnitTest") { diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 8c0fb64a8698b08ecc4158d828ca593c4928e9dd..afba109285af78dbd2a1d187e33ac4f87c76e392 100644 GIT binary patch literal 61624 zcmb6AV{~QRwml9f72CFLyJFk6ZKq;e729@pY}>YNR8p1vbMJH7ubt
YH!Z*ZaR%>WTVy8-(^h5J^1%NZ$@&_ZQ)3AeHlhL~=X9=fKPzFbZ;~cS**=W-LF1
z5 Tiw!%~BbKaQ-CH-WP{;L@H#X67rg0#de7L) o#dZ2x)FIpgN1_;Qkub&0t{cSRAUztxc6NH>Nwm4yR{(T>0x9%%VeU&<&n6^vFvZ{>V3RYJ_kC9zN(M(`
zp?1PHN>f!-aLgvsbIp*oTZv4yWsXM2Q=C}>t7V(iX*N8{aoWphUJ^(n3k`pncUt&`
ze+sYjo)>>=I?>X}1B*ZrxYu`|WD0J&RIb
pn%E-l3(CQVEaOaFyA;NaMgh54a(U#BohL*&j1%qNO-i{cIoc
zuH3AmH+>Qr__0U2f~HQ0C|zq9S9un
JHY6p(JVd4y?Pd9J5Ga7a{PYLR95ow
zm?GnAxhr8H+qG_2xB3ZIFl4Hm&RCud(4esNgT!cOiJZz*Tbr=enkZ~eP3#=Ktv21f
zX``RkOCJX_f5eyL!!_6!oNR_;3NzSC6Z^2St?xNG)wwO!v11Gwcw^;-mZ34k2|9$_
zj}wJK9BRu`X2nWY5pp+@@zpx7bN>@fHi#5tQRGz6p;wW^k-P7