Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies for minor & patch changes #85

Merged
merged 5 commits into from
Nov 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import eu.krzdabrowski.starter.core.design.Typography
@Composable
fun RocketItem(
rocket: RocketDisplayable,
modifier: Modifier = Modifier,
onRocketClick: () -> Unit,
modifier: Modifier = Modifier,
) {
Row(
modifier = modifier
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const val ROCKET_DIVIDER_TEST_TAG = "rocketDividerTestTag"
@Composable
fun RocketsListContent(
rocketList: List<RocketDisplayable>,
modifier: Modifier = Modifier,
onRocketClick: (String) -> Unit,
modifier: Modifier = Modifier,
) {
LazyColumn(
modifier = modifier
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Gradle properties
org.gradle.caching=true
org.gradle.configuration-cache=true
org.gradle.configuration-cache.parallel=true
org.gradle.configureondemand=true
org.gradle.jvmargs=-Xms8g -Xmx10g -Dfile.encoding=UTF-8 -XX:+UseParallelGC
org.gradle.jvmargs=-Xms3g -Xmx6g -Dfile.encoding=UTF-8 -XX:+UseParallelGC
org.gradle.parallel=true
org.gradle.workers.max=5

# Application properties
android.useAndroidX=true
Expand Down
38 changes: 19 additions & 19 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
[versions]
# plugins
android-gradle = "8.6.0"
detekt = "1.23.6"
junit = "1.11.0.0"
ksp = "2.0.20-1.0.25"
ktlint = "4.4.1"
android-gradle = "8.7.2"
detekt = "1.23.7"
junit = "1.11.2.0"
ksp = "2.0.21-1.0.28"
ktlint = "4.5.0"

# production libraries
coil = "2.7.0"
compose-bom = "2024.09.00"
compose-rules = "0.4.11"
compose-material3 = "1.3.0"
compose-bom = "2024.11.00"
compose-rules = "0.4.19"
compose-material3 = "1.3.1"
hilt = "2.52"
kotlin = "2.0.20"
kotlin-coroutines = "1.8.1"
kotlin-serialization = "1.7.2"
lifecycle = "2.8.5"
navigation = "2.8.0"
kotlin = "2.0.21"
kotlin-coroutines = "1.9.0"
kotlin-serialization = "1.7.3"
lifecycle = "2.8.7"
navigation = "2.8.2"
navigation-hilt = "1.2.0"
okhttp-logging-interceptor = "4.12.0"
retrofit = "2.11.0"
room = "2.6.1"
timber = "5.0.1"

# test libraries
test-junit = "5.11.0"
test-mockk = "1.13.12"
test-turbine = "1.1.0"
test-junit = "5.11.3"
test-mockk = "1.13.13"
test-turbine = "1.2.0"

# android test libraries
test-android-baseline-profile = "1.3.0"
test-android-compose-ui-test = "1.7.0"
test-android-baseline-profile = "1.3.3"
test-android-compose-ui-test = "1.7.5"
test-android-junit = "1.2.1"
test-android-profile-installer = "1.3.1"
test-android-profile-installer = "1.4.1"
test-android-runner = "1.6.2"


Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down