diff --git a/build.gradle.kts b/build.gradle.kts index 97a1e39..1d2cbf6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ group = "de.hoennig" // bump at least the patch version for every deployment — and only then, not per commit — // so the UI footer (BuildProperties), --version and the release notes identify what is // actually running; a deployment bundles whatever was committed since the last one -version = "0.9.20" +version = "0.9.21" java { toolchain { diff --git a/src/main/resources/templates/releases.html b/src/main/resources/templates/releases.html index dc27171..84e5a80 100644 --- a/src/main/resources/templates/releases.html +++ b/src/main/resources/templates/releases.html @@ -7,6 +7,20 @@
atTimes slot is likewise reported
+ once per slot.trigger block says when the
diff --git a/src/test/kotlin/de/hoennig/gittally/watcher/WatcherTest.kt b/src/test/kotlin/de/hoennig/gittally/watcher/WatcherTest.kt
index 1251573..f30e474 100644
--- a/src/test/kotlin/de/hoennig/gittally/watcher/WatcherTest.kt
+++ b/src/test/kotlin/de/hoennig/gittally/watcher/WatcherTest.kt
@@ -1,5 +1,6 @@
package de.hoennig.gittally.watcher
+import ch.qos.logback.classic.Level
import ch.qos.logback.classic.Logger
import ch.qos.logback.classic.spi.ILoggingEvent
import ch.qos.logback.core.read.ListAppender
@@ -773,11 +774,16 @@ class WatcherTest : FunSpec() {
}
}
-/** Collects this spec's [Watcher] log messages; the returned lambda reads them at any point. */
+/**
+ * Collects this spec's [Watcher] log messages; the returned lambda reads them at any point.
+ * The level is lowered explicitly — the test JVM logs at WARN, which would drop the very
+ * INFO line that says the fetch recovered.
+ */
private fun captureWatcherLog(): () -> List