v2026.6.2
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.6.2 --repo vouch-sh/vouch --pattern "vouch_2026.6.2_amd64.deb"
sudo dpkg -i vouch_2026.6.2_amd64.deb
# arm64
gh release download v2026.6.2 --repo vouch-sh/vouch --pattern "vouch_2026.6.2_arm64.deb"
sudo dpkg -i vouch_2026.6.2_arm64.debRPM Package (Fedora/RHEL)
# x86_64
gh release download v2026.6.2 --repo vouch-sh/vouch --pattern "vouch-2026.6.2-1.x86_64.rpm"
sudo rpm -i vouch-2026.6.2-1.x86_64.rpm
# aarch64
gh release download v2026.6.2 --repo vouch-sh/vouch --pattern "vouch-2026.6.2-1.aarch64.rpm"
sudo rpm -i vouch-2026.6.2-1.aarch64.rpmBinary Downloads
Download the appropriate binary for your platform from the release assets below.
| Platform | Architecture | Archive |
|---|---|---|
| Linux | x86_64 | vouch-v2026.6.2-x86_64-unknown-linux-musl.tar.gz |
| Linux | aarch64 | vouch-v2026.6.2-aarch64-unknown-linux-musl.tar.gz |
| macOS | Apple Silicon | vouch-v2026.6.2-aarch64-apple-darwin.tar.gz |
| Windows | x86_64 | vouch-v2026.6.2-x86_64-pc-windows-msvc.zip |
| Windows | ARM64 | vouch-v2026.6.2-aarch64-pc-windows-msvc.zip |
Verify integrity
sha256sum -c SHA256SUMS.txtVerify provenance
gh attestation verify vouch-v2026.6.2-aarch64-apple-darwin.tar.gz --owner vouch-shUsing Helm (OCI)
helm install vouch-server oci://ghcr.io/vouch-sh/charts/vouch-server \
--version 2026.6.2 \
--namespace vouch-server \
--create-namespaceUsing Helm (from release assets)
helm install vouch-server \
https://github.com/vouch-sh/vouch/releases/download/v2026.6.2/vouch-server-2026.6.2.tgz \
--namespace vouch-server \
--create-namespaceContainer Image
docker pull ghcr.io/vouch-sh/vouch:v2026.6.2Verify Attestations
# Container image
gh attestation verify oci://ghcr.io/vouch-sh/vouch:v2026.6.2 \
--owner vouch-sh
# Binary archives
gh attestation verify vouch-v2026.6.2-aarch64-apple-darwin.tar.gz --owner vouch-shWhat's Changed
- docs: add anthropic and openai to available credential types in README by @detail-app[bot] in #455
- ci: bump github/codeql-action from 4.36.1 to 4.36.2 in the actions group by @dependabot[bot] in #457
- Security evaluation: prioritized remediation list by @jplock in #458
- security: remediate P1 + P2 findings from security evaluation by @jplock in #459
- ui(keys): server-render the security-keys page (SSR + form POST) by @jplock in #460
- docs: add resolution status to security finding titles by @detail-app[bot] in #461
- various fixes by @jplock in #462
- fable5 updates by @jplock in #463
- docs(security): second-pass evaluation addendum by @jplock in #469
- fix(server): SSRF egress guard for client-controlled JWKS/request_uri fetches by @jplock in #470
- Targeted cleanup for long functions and high-arity signatures by @jplock in #471
- Code-quality batch: audit helper, explicit re-exports, type safety, function decomposition, IPC timeouts by @jplock in #472
- docs(server): fix stale WebauthnChallengeClaim comment references by @jplock in #475
- docs: fix stale file references after vouch-common refactor by @detail-app[bot] in #474
- docs: update SECURITY_EVALUATION.md and file locations for SSRF fix by @detail-app[bot] in #473
- Fix Detail bug reports: registration origin gate, SSRF doc claim, SSH pub-key migration by @jplock in #479
- Add manually-dispatched test AMI build workflow by @jplock in #481
- Enable FIPS crypto-policy in the attestable AMI by @jplock in #480
Full Changelog: v2026.6.1...v2026.6.2