Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (except core kotlin) (#…
Browse files Browse the repository at this point in the history
…531)

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Kirill Gevorkyan <26010098+kgevorkyan@users.noreply.github.com>
  • Loading branch information
renovate[bot] and kgevorkyan committed May 15, 2023
1 parent f958ab4 commit 711315f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ kotlin {
val commonMain by getting
val commonTest by getting {
dependencies {
implementation("io.kotest:kotest-assertions-core:5.6.1")
implementation("io.kotest:kotest-assertions-core:5.6.2")
}
}
val commonNonJsMain by creating {
Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ org.gradle.caching=true
# Kotlin
kotlin.code.style=official
kotlin.mpp.stability.nowarn=true
kotlin.native.cacheKind.linuxX64=static
kotlin.mpp.hierarchicalStructureSupport=true
kotlin.native.cacheKind.linuxX64=none
# making custom cinterop libraries available in shared source sets
kotlin.mpp.enableCInteropCommonization=true
7 changes: 4 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[versions]
kotlin = "1.8.21"
okio = "3.3.0"
serialization = "1.5.0"
serialization = "1.5.1"
diktat = "1.2.5"
kotlinx-cli = "0.3.5"
kotlinx-datetime = "0.4.0"
kotlinx-coroutines = "1.6.3-native-mt"
junit = "5.9.3"
ktoml = "0.4.1"
ktoml = "0.5.0"
multiplatform-diff = "0.4.0"
kotlinpoet = "1.13.2"
kotest = "5.6.1"
kotest = "5.6.2"
sarif4k = "0.3.0"
sarif-utils = "0.2.1"
log4j = "2.20.0"
Expand All @@ -34,6 +34,7 @@ kotlinx-cli = { module = "org.jetbrains.kotlinx:kotlinx-cli", version.ref = "kot
junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" }
ktoml-core = { module = "com.akuleshov7:ktoml-core", version.ref = "ktoml" }
ktoml-file = { module = "com.akuleshov7:ktoml-file", version.ref = "ktoml" }
ktoml-source = { module = "com.akuleshov7:ktoml-source", version.ref = "ktoml" }
multiplatform-diff = { module = "io.github.petertrr:kotlin-multiplatform-diff", version.ref = "multiplatform-diff" }
square-kotlinpoet = { module = "com.squareup:kotlinpoet", version.ref = "kotlinpoet" }
diktat-gradle-plugin = { module = "org.cqfn.diktat:diktat-gradle-plugin", version.ref = "diktat" }
Expand Down
1 change: 1 addition & 0 deletions save-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ kotlin {
implementation(libs.kotlinx.cli)
implementation(libs.ktoml.core)
implementation(libs.ktoml.file)
implementation(libs.ktoml.source)
implementation(projects.savePlugins.fixPlugin)
implementation(projects.savePlugins.fixAndWarnPlugin)
implementation(projects.savePlugins.warnPlugin)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ fun createPluginConfigListFromToml(testConfigPath: Path, fs: FileSystem): List<P
* @return all top level table nodes
*/
fun getTopLevelTomlTables(testConfigPath: Path, fs: FileSystem): List<TomlTable> = TomlParser(TomlInputConfig())
.parseStringsToTomlTree(fs.readLines(testConfigPath), TomlInputConfig())
.parseStringsToTomlTree(fs.readLines(testConfigPath).asSequence(), TomlInputConfig())
.children
.filterIsInstance<TomlTable>()
.filter { !it.isSynthetic }

0 comments on commit 711315f

Please sign in to comment.