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) #531

Merged
merged 4 commits into from
May 15, 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
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
Copy link
Member

Choose a reason for hiding this comment

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

kotlin.native.cacheKind.linuxX64=none
Copy link
Member

Choose a reason for hiding this comment

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

think it's okay
build failed with caches

# 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 }
Loading