diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 68647098..afca1146 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -1,5 +1,5 @@ object Versions { - const val kotlin = "1.6.21" + const val kotlin = "1.8.0" const val kotlinLogging = "4.0.2" const val logbackClassic = "1.3.3" const val junit = "5.7.0" diff --git a/modules/core/src/main/kotlin/datamaintain/core/step/executor/Executor.kt b/modules/core/src/main/kotlin/datamaintain/core/step/executor/Executor.kt index 44d3e104..50a4f44a 100644 --- a/modules/core/src/main/kotlin/datamaintain/core/step/executor/Executor.kt +++ b/modules/core/src/main/kotlin/datamaintain/core/step/executor/Executor.kt @@ -102,6 +102,8 @@ class Executor(private val context: Context) { if (!context.config.porcelain) { logger.info { "${script.name} would have been executed" } } ScriptAction.MARK_AS_EXECUTED -> if (!context.config.porcelain) { logger.info { "${script.name} would have been only marked as executed (so not executed)" } } + ScriptAction.OVERRIDE_EXECUTED -> + if (!context.config.porcelain) { logger.info { "${script.name}'s execution would have been overridden in database" } } } return buildSimulatedExecutedScript(script, ExecutionStatus.OK, context.config.flags)