v2026.8.3
·
114 commits
to main
since this release
Immutable
release. Only release title and notes can be modified.
Installation
Homebrew (macOS)
brew install vouch-sh/tap/vouchTo start the agent automatically:
brew services start vouchwinget (Windows)
winget install SmokeTurner.VouchAPT Repository (Debian/Ubuntu)
curl -fsSL https://packages.vouch.sh/gpg/vouch.asc \
| gpg --dearmor \
| sudo tee /usr/share/keyrings/vouch-archive-keyring.gpg > /dev/null
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/vouch-archive-keyring.gpg] https://packages.vouch.sh/apt stable main" \
| sudo tee /etc/apt/sources.list.d/vouch.list > /dev/null
sudo apt-get update && sudo apt-get install -y vouchYUM/DNF Repository (Fedora/RHEL)
sudo tee /etc/yum.repos.d/vouch.repo << 'EOF'
[vouch]
name=Vouch
baseurl=https://packages.vouch.sh/rpm/$basearch/
gpgcheck=1
gpgkey=https://packages.vouch.sh/gpg/vouch.asc
enabled=1
EOF
sudo dnf install -y vouchDEB Package (Debian/Ubuntu)
# amd64
gh release download v2026.8.3 --repo vouch-sh/vouch --pattern "vouch_2026.8.3_amd64.deb"
sudo dpkg -i vouch_2026.8.3_amd64.deb
# arm64
gh release download v2026.8.3 --repo vouch-sh/vouch --pattern "vouch_2026.8.3_arm64.deb"
sudo dpkg -i vouch_2026.8.3_arm64.debRPM Package (Fedora/RHEL)
# x86_64
gh release download v2026.8.3 --repo vouch-sh/vouch --pattern "vouch-2026.8.3-1.x86_64.rpm"
sudo rpm -i vouch-2026.8.3-1.x86_64.rpm
# aarch64
gh release download v2026.8.3 --repo vouch-sh/vouch --pattern "vouch-2026.8.3-1.aarch64.rpm"
sudo rpm -i vouch-2026.8.3-1.aarch64.rpmBinary Downloads
Download the appropriate binary for your platform from the release assets below.
| Platform | Architecture | Archive |
|---|---|---|
| Linux | x86_64 | vouch-v2026.8.3-x86_64-unknown-linux-musl.tar.gz |
| Linux | aarch64 | vouch-v2026.8.3-aarch64-unknown-linux-musl.tar.gz |
| macOS | Apple Silicon | vouch-v2026.8.3-aarch64-apple-darwin.tar.gz |
| Windows | x86_64 | vouch-v2026.8.3-x86_64-pc-windows-msvc.zip |
| Windows | ARM64 | vouch-v2026.8.3-aarch64-pc-windows-msvc.zip |
Verify integrity
sha256sum -c SHA256SUMS.txtVerify provenance
gh attestation verify vouch-v2026.8.3-aarch64-apple-darwin.tar.gz --owner vouch-shUsing Helm (OCI)
helm install vouch-server oci://ghcr.io/vouch-sh/charts/vouch-server \
--version 2026.8.3 \
--namespace vouch-server \
--create-namespaceUsing Helm (from release assets)
helm install vouch-server \
https://github.com/vouch-sh/vouch/releases/download/v2026.8.3/vouch-server-2026.8.3.tgz \
--namespace vouch-server \
--create-namespaceContainer Image
docker pull ghcr.io/vouch-sh/vouch:v2026.8.3Verify Attestations
# Container image
gh attestation verify oci://ghcr.io/vouch-sh/vouch:v2026.8.3 \
--owner vouch-sh
# Binary archives
gh attestation verify vouch-v2026.8.3-aarch64-apple-darwin.tar.gz --owner vouch-shWhat's Changed
- fix(server): record FIDO2 token issuance; repair cargo-deny skips by @jplock in #884
- feat(server): replace CEL with Dogwood policy engine by @jplock in #886
- feat(server): guided rule builder for /admin/policies (#887) by @jplock in #888
- ci: bump the actions group with 4 updates by @dependabot[bot] in #889
- fix(server): reject NUL bytes in client-supplied index values (#883) by @jplock in #890
- docs: correct stale active-policy total in policies.md by @detail-app[bot] in #892
- docs: correct posture attribute paths in policies guide by @detail-app[bot] in #891
- fix(server): require key possession before releasing enroll sessions by @jplock in #894
- chore(server): remove unused SessionCache::invalidate_all by @detail-app[bot] in #893
- fix(cli): print SSH certificate serials without precision loss by @jplock in #895
Full Changelog: v2026.8.2...v2026.8.3