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

chore(deps): update all non-major dependencies (except core kotlin) #574

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ dependencies {
// workaround https://github.com/gradle/gradle/issues/15383
implementation(files(project.libs.javaClass.superclass.protectionDomain.codeSource.location))
implementation(libs.diktat.gradle.plugin)
implementation("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.5")
implementation("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.7")
implementation(libs.kotlin.gradle.plugin)
implementation(libs.kotlin.plugin.serialization)
implementation("io.github.gradle-nexus:publish-plugin:2.0.0")
implementation("org.ajoberstar.reckon:reckon-gradle:0.18.3")
implementation("com.squareup:kotlinpoet:1.16.0")
implementation("com.google.code.gson:gson:2.10.1")
implementation("com.squareup:kotlinpoet:1.18.1")
implementation("com.google.code.gson:gson:2.11.0")
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ kotlin {
sourceSets {
val commonTest by getting {
dependencies {
implementation("io.kotest:kotest-assertions-core:5.8.1")
implementation("io.kotest:kotest-assertions-core:5.9.1")
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
}
}
val jvmTest by getting {
dependencies {
implementation(kotlin("test-junit5"))
implementation("org.junit.jupiter:junit-jupiter-engine:5.10.2")
implementation("org.junit.jupiter:junit-jupiter-engine:5.11.3")
}
}
}
Expand Down
16 changes: 8 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[versions]
kotlin = "1.9.25"
okio = "3.8.0"
okio = "3.9.1"
serialization = "1.6.3"
diktat = "1.2.5"
kotlinx-cli = "0.3.6"
kotlinx-datetime = "0.5.0"
kotlinx-coroutines = "1.8.1"
junit = "5.10.2"
ktoml = "0.5.1"
multiplatform-diff = "0.5.0"
kotlinpoet = "1.16.0"
kotest = "5.8.1"
sarif4k = "0.5.0"
junit = "5.11.3"
ktoml = "0.5.2"
multiplatform-diff = "0.7.0"
kotlinpoet = "1.18.1"
kotest = "5.9.1"
sarif4k = "0.6.0"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need to downgrade the version since it has conflict with sarif-utils

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why, if we already merged the same in the sarif-utils?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

because we didn't release a new version of sarif-utils

sarif-utils = "0.2.2"
log4j = "2.23.1"
log4j = "2.24.1"

[plugins]
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pluginManagement {
}

plugins {
id("com.gradle.enterprise") version "3.16.2"
id("com.gradle.enterprise") version "3.18.1"
}

gradleEnterprise {
Expand Down
Loading