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 Kotlin core dependencies to v1.8.20 #1651

Merged
merged 2 commits into from
Apr 3, 2023
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
2 changes: 1 addition & 1 deletion diktat-dev-ksp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ plugins {
}

dependencies {
implementation("com.google.devtools.ksp:symbol-processing-api:1.8.10-1.0.9")
implementation(libs.kotlin.ksp.api)
}
3 changes: 2 additions & 1 deletion diktat-rules/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
@Suppress("DSL_SCOPE_VIOLATION", "RUN_IN_SCRIPT") // https://github.com/gradle/gradle/issues/22797
plugins {
id("org.cqfn.diktat.buildutils.kotlin-jvm-configuration")
id("org.cqfn.diktat.buildutils.code-quality-convention")
id("org.cqfn.diktat.buildutils.publishing-signing-default-configuration")
id("com.google.devtools.ksp") version "1.8.10-1.0.9"
alias(libs.plugins.kotlin.ksp)
idea
}

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle-kotlin-dsl-multiproject/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.cqfn.diktat.plugin.gradle.DiktatExtension

plugins {
kotlin("jvm") version "1.8.10"
kotlin("jvm") version "1.8.20"
id("org.cqfn.diktat.diktat-gradle-plugin")
}

Expand Down
6 changes: 5 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[versions]
kotlin = "1.8.10"
kotlin = "1.8.20"
kotlin-ksp = "1.8.20-1.0.10"
serialization = "1.5.0"
ktlint = "0.46.1"
junit = "5.9.2"
Expand Down Expand Up @@ -63,6 +64,7 @@ kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref
kotlin-plugin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
kotlin-plugin-jpa = { id = "org.jetbrains.kotlin.plugin.jpa", version.ref = "kotlin" }
kotlin-plugin-allopen = { id = "org.jetbrains.kotlin.plugin.allopen", version.ref = "kotlin" }
kotlin-ksp = { id = "com.google.devtools.ksp", version.ref = "kotlin-ksp" }
talaiot-base = { id = "io.github.cdsap.talaiot.plugin.base", version = "1.5.3" }
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
spotless = { id = "com.diffplug.gradle.spotless", version.ref = "spotless" }
Expand All @@ -89,6 +91,8 @@ kotlin-stdlib-jdk8 = { module = "org.jetbrains.kotlin:kotlin-stdlib-jdk8", versi
kotlin-compiler-embeddable = { module = "org.jetbrains.kotlin:kotlin-compiler-embeddable", version.ref = "kotlin" }
kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect", version.ref = "kotlin" }

# ksp
kotlin-ksp-api = { module = "com.google.devtools.ksp:symbol-processing-api", version.ref = "kotlin-ksp" }

# kotlinx serialization
kotlinx-serialization-core = { module = "org.jetbrains.kotlinx:kotlinx-serialization-core", version.ref = "serialization" }
Expand Down
8 changes: 5 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
],
"excludePackagePatterns": [
"^org\\.jetbrains\\.kotlin[.:]",
"^com\\.pinterest\\.ktlint[.:]"
"^com\\.pinterest\\.ktlint[.:]",
"^com\\.google\\.devtools\\.ksp[.:]"
],
"matchUpdateTypes": [
"minor",
Expand All @@ -29,7 +30,8 @@
{
"managers": ["gradle"],
"matchPackagePatterns": [
"^org\\.jetbrains\\.kotlin[.:]"
"^org\\.jetbrains\\.kotlin[.:]",
"^com\\.google\\.devtools\\.ksp[.:]"
],
"groupName": "Kotlin core dependencies",
"groupSlug": "core-kotlin"
Expand Down Expand Up @@ -59,7 +61,7 @@
{
"managers": ["gradle"],
"matchPackageNames": [
"com.charleskorn.kaml:kaml-jvm"
"com.charleskorn.kaml:kaml"
],
"allowedVersions": "<= 0.47.0"
},
Expand Down