Skip to content

v0.23.0

Choose a tag to compare

@github-actions github-actions released this 05 Sep 07:18
· 14 commits to main since this release
5527c85

Deploying

Three supported paths — see docs/deployment.md. The short
version: use waxwing-stalwart-v0.23.0.zip for a Stalwart
Application (recommended, same-origin, no CORS), and
waxwing-web-v0.23.0.tar.gz behind your own web server.

Verify what you downloaded before deploying it. The two checks answer different
questions and the second is the stronger one:

# Did the file survive the network and the hoster intact?
# (--ignore-missing: SHA256SUMS lists all three artefacts, you downloaded one.)
sha256sum -c SHA256SUMS --ignore-missing

# Was it built by this repository's release workflow, from THIS TAG?
# (SHA256SUMS cannot answer that: anyone who can replace the zip can regenerate it.
#  --source-ref is required: without it a build from any branch of this repository
#  passes too, and this workflow makes those deliberately as rehearsals.)
gh attestation verify waxwing-stalwart-v0.23.0.zip \
  --repo Heiko-W/waxwing \
  --source-ref refs/tags/v0.23.0

Configuration lives in config.json next to index.html and needs no rebuild —
docs/configuration.md is the reference.

What's Changed

  • docs: Befundbericht aus dem Code-Review vom 01.09.2026 by @Heiko-W in #55
  • fix(web,sync): Entwuerfe gehen verloren, bleiben als Leichen liegen oder wechseln das Konto by @Heiko-W in #56
  • fix(web,sync): Termine wechseln die Zeitzone, Occurrences frieren ein, der Wartungspass loescht den offenen Monat by @Heiko-W in #57
  • fix(web,jmap): Liste laedt nach einem Ordnerwechsel nichts mehr nach, Anhaenge scheitern lautlos by @Heiko-W in #58
  • fix(sync,web): Outbox-Fehlerpfade treffen die falsche Zeile, Wiederholen tut nichts, ein zweiter Tab uebernimmt mitten im Senden by @Heiko-W in #59
  • fix(web): OAuth-Rueckkehr verliert den Ort, zwei Tabs loeschen sich das Token, Escape meldet ab by @Heiko-W in #60
  • fix(web): Namenskorrektur wirft Kontaktfelder weg, Vorschau zeigt die falsche Datei, Listen rechnen zu viel by @Heiko-W in #61
  • fix(mail-html,jscontact,jmap): Regex friert den Tab ein, Sprungmarken oeffnen die App, Kontaktfelder gehen beim Import verloren by @Heiko-W in #62
  • fix(web): Vollbild per Tastatur war nie erreichbar, Escape schliesst den falschen Layer, ein verdeckter Tab meldet doppelt by @Heiko-W in #63
  • fix(web,jmap): Plus-Adressen werden rot, IME-Eingaben zu Empfaengern, ein Fehl-Chip sperrt das Senden by @Heiko-W in #64
  • fix(docs,ci,e2e,mail-html): Tote Anmeldung in den Proxy-Rezepten, verschwundene Tests, nicht vergleichbare Release-Archive by @Heiko-W in #65
  • fix(web,sync,jscontact,docs): Die Nebenbefunde aus der Abarbeitung, und der Abschlussvermerk zum Review by @Heiko-W in #66
  • fix(web): the three open compose side findings (N-01 … N-03) by @Heiko-W in #69
  • fix(web): the remaining side findings, and the R-27 decision (N-04 … N-10) by @Heiko-W in #70
  • feat(web): opened offline, the app opens the mailbox (FR-OFF-01) by @Heiko-W in #71
  • feat(web): "Select all 300" reaches the folder, not just the window (FR-LST-04) by @Heiko-W in #72
  • fix(e2e): the focus sweep never started at the top, because body.focus() moves nothing by @Heiko-W in #74
  • chore(release): v0.23.0 by @Heiko-W in #73

Full Changelog: v0.22.0...v0.23.0