Skip to content

Commit d974cf1

Browse files
committed
chore: gradle updates
1 parent df29100 commit d974cf1

File tree

5 files changed

+10
-15
lines changed

5 files changed

+10
-15
lines changed

compose/web/src/jsMain/kotlin/dev/suresh/MyApp.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ private const val COLOR_MODE_KEY = "playground:colorMode"
2121
@InitSilk
2222
fun initColorMode(ctx: InitSilkContext) {
2323
ctx.config.initialColorMode =
24-
localStorage.getItem(COLOR_MODE_KEY)?.let { ColorMode.valueOf(it) } ?: ColorMode.DARK
24+
localStorage.getItem(COLOR_MODE_KEY)?.let { ColorMode.valueOf(it) } ?: ColorMode.LIGHT
2525
}
2626

2727
@App

gradle/build-logic/common-plugins/src/main/kotlin/settings/repos.settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ fun RepositoryHandler.sonatypeSnapshots() {
128128
fun RepositoryHandler.composeMultiplatformDev() {
129129
maven(url = Repo.COMPOSE_MULTIPLATFORM_DEV) {
130130
name = "Jetbrains Compose Multiplatform Development Repository"
131-
content { includeGroup("org.jetbrains.compose") }
131+
content { includeGroupAndSubgroups("org.jetbrains.compose") }
132132
}
133133
maven(url = Repo.KOBWEB) {
134134
name = "KobWeb Repo"

gradle/kotlin-js-store/yarn.lock

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1308,11 +1308,6 @@ [email protected]:
13081308
resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
13091309
integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
13101310

1311-
1312-
version "11.8.0"
1313-
resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-11.8.0.tgz#966518ea83257bae2e7c9a48596231856555bb65"
1314-
integrity sha512-MedQhoqVdr0U6SSnWPzfiadUcDHfN/Wzq25AkXiQv9oiOO/sG0S7XkvpFIqWBl9Yq1UYyYOOVORs5UW2XlPyzg==
1315-
13161311
hpack.js@^2.1.6:
13171312
version "2.1.6"
13181313
resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2"

gradle/libs.versions.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ java = "22"
33
kotlin = "1.9.20"
44
kotlin-ksp = "1.9.20-1.0.13"
55
kotlin-jvmtarget = "21"
6-
kotlin-dsl-jvmtarget = "17"
6+
kotlin-dsl-jvmtarget = "21"
77
kotlin-api-version = "1.9"
88
kotlin-lang-version = "1.9"
9-
gradle = "8.4"
9+
gradle = "8.5-rc-1"
1010
node-version = "21.1.0"
1111
java-vendor = "Oracle"
1212
java-jvmArguments = "--enable-preview"
@@ -34,7 +34,7 @@ kotlinx-benchmark = "0.4.9"
3434
kotlinx-metadata = "0.7.0"
3535
kotlinx-reflect-lite = "1.1.0"
3636
kotlinx-bincompat = "0.13.2"
37-
kotlin-wrappers = "1.0.0-pre.637"
37+
kotlin-wrappers = "1.0.0-pre.639"
3838
kotlin-redacted = "1.7.0"
3939
ksp-auto-service = "1.1.0"
4040
gradle-kotlin-dsl = "4.1.2"
@@ -51,7 +51,7 @@ intellij-markdown = "0.5.2"
5151
jgit = "6.5.0.202303070854-r"
5252
jte = "3.1.4"
5353
jimfs = "1.3.0"
54-
junit = "5.10.0"
54+
junit = "5.10.1"
5555
koin = "3.4.1"
5656
kotest = "5.7.1"
5757
mockk = "1.13.8"
@@ -84,12 +84,12 @@ parsus = "0.6.0"
8484
java-keyring = "1.0.3"
8585
java-keychain = "1.1.0"
8686
webjars-xterm = "5.1.0"
87-
ktor = "2.3.5"
87+
ktor = "2.3.6"
8888
ktor-cohort = "2.2.1"
8989
arrow-suspendapp = "0.4.1-alpha.5"
9090
exposed = "0.44.1"
9191
postgresql = "42.6.0"
92-
hikariCP = "5.0.1"
92+
hikariCP = "5.1.0"
9393
h2 = "2.2.220"
9494
micrometer = "1.11.5"
9595
swagger-ui = "5.1.3"
@@ -182,7 +182,7 @@ build-gmazzo-buildconfig = { module = "com.github.gmazzo.buildconfig
182182
build-mokkery-plugin = { module = "dev.mokkery:mokkery-gradle" , version.ref = "mokkery"}
183183
build-cash-molecule-plugin = { module = "app.cash.molecule:molecule-gradle-plugin" , version.ref = "cash-molecule"}
184184
build-modulegraph-plugin = { module = "dev.iurysouza:modulegraph" , version.ref = "modulegraph"}
185-
build-jetbrains-compose-mpp = { module = "org.jetbrains.compose:compose-gradle-plugin" , version.ref = "jetbrains-compose"}
185+
build-jetbrains-compose-plugin = { module = "org.jetbrains.compose:compose-gradle-plugin" , version.ref = "jetbrains-compose"}
186186
build-jetbrains-compose-runtime = { module = "org.jetbrains.compose.runtime:runtime" , version.ref = "jetbrains-compose"}
187187
build-jetbrains-compose-compiler = { module = "org.jetbrains.compose.compiler:compiler" , version.ref = "jetbrains-compose-compiler"}
188188
build-npm-publish-plugin = { module = "dev.petuska:npm-publish-gradle-plugin" , version.ref = "npm-publish-plugin"}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-rc-1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)