Skip to content

v0.3.2

Choose a tag to compare

@github-actions github-actions released this 16 Jul 12:29
· 970 commits to main since this release

Owlat v0.3.2

Self-hosted server

From the admin dashboard → Settings → System & Updates → "Update now", or:

owlat upgrade --version 0.3.2

Manual upgrade (fetch compose + SHA256, verify, apply):

curl -fsSL https://github.com/wolvesdotink/owlat/releases/download/v0.3.2/docker-compose-0.3.2.yml -o docker-compose.yml
curl -fsSL https://github.com/wolvesdotink/owlat/releases/download/v0.3.2/docker-compose-0.3.2.yml.sha256 -o docker-compose.yml.sha256
sha256sum -c <(sed "s|docker-compose-0.3.2.yml|docker-compose.yml|" docker-compose.yml.sha256)
docker compose pull && docker compose up -d
docker compose --profile deploy run --rm convex-deploy

Desktop app

Download the installer for your OS from the assets below (macOS .dmg,
Windows .msi/.exe, Linux .AppImage/.deb). Existing installs
auto-update to this version.

Supply-chain verification (recommended)

cosign verify ghcr.io/wolvesdotink/web:0.3.2 \
  --certificate-identity-regexp "https://github.com/wolvesdotink/owlat/.github/workflows/.*@.*" \
  --certificate-oidc-issuer "https://token.actions.githubusercontent.com"
gh attestation verify docker-compose.yml --repo wolvesdotink/owlat

Images: web, mta, updater, convex-deploy, imap, mail-sync, code-worker, setup — all ghcr.io/wolvesdotink/<name>:0.3.2

What's Changed

Other Changes

  • Make macOS Gatekeeper handling first-class: CI signing verification, unsigned-build warnings, docs by @marcelxpfeifer in #349
  • fix(desktop): boot into the app, not the marketing landing page by @marcelxpfeifer in #352

Full Changelog: v0.3.0...v0.3.2