Skip to content

Commit

Permalink
chore: bump dependencies
Browse files Browse the repository at this point in the history
Kotlin has not yet been bumped to 2.0, due to square/anvil#733
  • Loading branch information
matejdro committed Jun 3, 2024
1 parent ea81e65 commit f24e59c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import app.cash.paparazzi.Paparazzi
import com.airbnb.android.showkase.models.Showkase
import com.airbnb.android.showkase.models.ShowkaseBrowserComponent
import com.android.ide.common.rendering.api.SessionParams
import com.android.resources.Density
import com.android.resources.NightMode
import com.google.testing.junit.testparameterinjector.TestParameter
import com.google.testing.junit.testparameterinjector.TestParameterInjector
Expand Down Expand Up @@ -77,8 +76,8 @@ class ScreenshotTests {
PIXEL_5.copy(
ydpi = 600,
xdpi = 300,
screenWidth = 300 * Density.DPI_440.dpiValue / 160,
screenHeight = 600 * Density.DPI_440.dpiValue / 160,
screenWidth = 300 * 440 / 160,
screenHeight = 600 * 440 / 160,
nightMode = NightMode.NOTNIGHT
)
)
Expand Down
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ dependencyAnalysis {

// This is fine, included with paparazzi
exclude("com.android.tools.layoutlib:layoutlib-api")
exclude("app.cash.paparazzi:layoutlib-native-jdk11")

// This is fine, included with parcelize plugin
exclude("org.jetbrains.kotlin:kotlin-parcelize-runtime")
Expand Down
24 changes: 12 additions & 12 deletions config/libs.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[versions]
androidGradlePlugin = "8.4.0"
androidGradlePlugin = "8.4.1"
androidGradleCacheFix = "3.0.1"
androidx-activity-compose = "1.9.0"
androidx-core = "1.13.1"
androidx-core-splashscreen = "1.0.1"
# See https://developer.android.com/jetpack/androidx/releases/compose-kotlin
androidx-compose-compiler = "1.5.11"
androidx-compose-compiler = "1.5.14"
androidx-compose-runtime = "1.6.7"
androidx-compose-material = "1.6.7"
androidx-compose-material3 = "1.2.1"
androidx-compose-tracing = "1.0.0-beta01"
androidx-datastore = "1.1.1"
androidx-lifecycle = "2.7.0"
androidx-lifecycle = "2.8.1"
androidx-benchmark = "1.2.4"
androidx-profileInstaller = "1.3.1"
androidx-test-ext = "1.1.5"
Expand All @@ -21,32 +21,32 @@ androidx-test-runner = "1.5.2"
androidx-test-orchestrator = "1.4.2"
androidx-perfetto = "1.0.0"
anvil = "2.5.0-beta07"
certificateTransparency = "2.5.19"
certificateTransparency = "2.5.40"
coil = "2.6.0"
dagger = "2.51.1"
desugarJdkLibs = "2.0.4"
detekt = "1.23.6"
detekt-compilerWarnings = "0.0.4"
detekt-compose = "0.3.20"
detekt-compose = "0.4.3"
dependencyAnalysis = "1.32.0"
dispatch = "1.0.0-beta10"
kotlin = "1.9.23"
kotlin-coroutines = "1.8.0"
kotlin = "1.9.24"
kotlin-coroutines = "1.8.1"
kotlin-immutableCollections = "0.3.7"
junit4 = "4.13.2"
junit4-parameterinjector = "1.16"
junit5 = "5.10.2"
kotlinova = "3.1.0"
okio = "3.7.0"
okio = "3.9.0"
okhttp = "4.12.0"
orgJson = "20240303"
kotest = "5.8.1"
ksp = "1.9.23-1.0.20"
kotest = "5.9.0"
ksp = "1.9.24-1.0.20"
moduleGraphAssert = "2.5.0"
moshi = "1.15.1"
moshi-ir = "0.25.1"
moshi-ir = "0.26.0"
retrofit = "2.11.0"
paparazzi = "1.3.3"
paparazzi = "1.3.4"
rebugger = "1.0.0-rc03"
simpleStack = "2.9.0"
showkase = "1.0.2"
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# 3. Update distributionSha256Sum to the proper checksum
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
distributionSha256Sum=194717442575a6f96e1c1befa2c30e9a4fc90f701d7aee33eb879b79e7ff05c0
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-all.zip
distributionSha256Sum=f8b4f4772d302c8ff580bc40d0f56e715de69b163546944f787c87abf209c961
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit f24e59c

Please sign in to comment.