This is an automated email from the ASF dual-hosted git repository. joergrade pushed a commit to branch ISIS-3043 in repository https://gitbox.apache.org/repos/asf/isis.git
commit df2decfd4969845735045dc7482737144f7346d9 Author: Jörg Rade <[email protected]> AuthorDate: Mon Aug 8 15:06:51 2022 +0200 ISIS-3043 upgrade kotlin, kvision --- incubator/clients/kroviz/gradle.properties | 6 +++--- .../kotlin/org/apache/isis/client/kroviz/core/event/LogEntry.kt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/incubator/clients/kroviz/gradle.properties b/incubator/clients/kroviz/gradle.properties index 07251666a0..254632ec36 100644 --- a/incubator/clients/kroviz/gradle.properties +++ b/incubator/clients/kroviz/gradle.properties @@ -18,10 +18,10 @@ # javaVersion=1.8 #Plugins -systemProp.kotlinVersion=1.6.10 -serializationVersion=1.3.0 +systemProp.kotlinVersion=1.7.0 +serializationVersion=1.3.3 #Dependencies -systemProp.kvisionVersion=5.8.3 +systemProp.kvisionVersion=5.12.0 coroutinesVersion=1.5.2 kotlin.mpp.stability.nowarn=true diff --git a/incubator/clients/kroviz/src/main/kotlin/org/apache/isis/client/kroviz/core/event/LogEntry.kt b/incubator/clients/kroviz/src/main/kotlin/org/apache/isis/client/kroviz/core/event/LogEntry.kt index ef2024b1ef..e118ce6966 100644 --- a/incubator/clients/kroviz/src/main/kotlin/org/apache/isis/client/kroviz/core/event/LogEntry.kt +++ b/incubator/clients/kroviz/src/main/kotlin/org/apache/isis/client/kroviz/core/event/LogEntry.kt @@ -58,7 +58,7 @@ data class LogEntry( val request: String = "", @Contextual val createdAt: Date = Date(), ) { - val url: String = rs?.url + val url: String = rs.url //?. is required, otherwise Tabulator.js/EventLogTable shows no entries val subType = rs?.subType
