-
Notifications
You must be signed in to change notification settings - Fork 8
Release Notes v1.8.2
Release Date: January 10, 2026
Status: ✅ STABLE - Production Ready
Download: GitHub Releases
Problem: Previous versions (v1.8.3 and v1.8.1) forced nginx installation due to a bug in the GitHub Actions workflow, even though UCM includes a built-in HTTPS server.
Root Cause: The build workflow generated its own package control file with nginx hardcoded in Depends:, ignoring the repository's correct configuration.
Solution:
- Fixed
.github/workflows/build-deb.ymlto match repository configuration - Depends: python3, python3-pip, python3-venv, systemd (essentials only)
- Recommends: python3-flask-caching, python3-redis (performance)
- Suggests: nginx, apache2, certbot, python3-gunicorn (optional)
wget https://github.com/NeySlim/ultimate-ca-manager/releases/download/v1.8.2/ucm_1.8.2_all.deb
sudo dpkg -i ucm_1.8.2_all.deb
# ✅ No nginx installation required!docker pull ghcr.io/neyslim/ultimate-ca-manager:1.8.2
# or
docker pull ghcr.io/neyslim/ultimate-ca-manager:latestwget https://github.com/NeySlim/ultimate-ca-manager/releases/download/v1.8.2/ucm-1.8.2-1.el9.noarch.rpm
sudo dnf install ucm-1.8.2-1.el9.noarch.rpmUCM is flexible - choose what works for you:
Perfect for testing, homelab, small deployments.
# UCM runs on built-in HTTPS server (port 8443)
sudo systemctl start ucmAccess: https://your-server:8443
Recommended for production environments.
# Install UCM
sudo dpkg -i ucm_1.8.2_all.deb
# Install nginx (optional)
sudo apt install nginx
# Configure nginx as reverse proxy
# See: Nginx Configuration GuideBenefits:
- Load balancing
- SSL/TLS termination
- Serve multiple applications
- Caching and compression
Perfect for containers and orchestration.
docker run -d \
--name ucm \
-p 8443:8443 \
-v ucm-data:/app/backend/data \
ghcr.io/neyslim/ultimate-ca-manager:1.8.2sudo apt remove ucm
sudo apt autoremove # Remove nginx if it was auto-installedwget https://github.com/NeySlim/ultimate-ca-manager/releases/download/v1.8.2/ucm_1.8.2_all.deb
sudo dpkg -i ucm_1.8.2_all.deb
sudo systemctl restart ucmData Migration: Not required - all data preserved!
All features from v1.8.3-beta are preserved:
- Full CA management (Root, Intermediate, Sub-CA)
- Certificate lifecycle (create, sign, revoke, renew, export)
- CRL & CDP (Certificate Revocation Lists)
- OCSP Responder (RFC 6960)
- ACME (RFC 8555) - Let's Encrypt compatible
- SCEP (RFC 8894) - Device auto-enrollment
- OCSP - Real-time certificate status
- CRL/CDP - Revocation list distribution
- mTLS Authentication - Client certificate auth
- WebAuthn/FIDO2 - Hardware security keys (YubiKey, etc.)
- JWT Sessions - Secure token-based auth
- Export Authentication - All exports require JWT tokens
- 8 Themes - Light & dark variants (Sentinel, Amber, Blossom, Nebula)
- Visual Theme Previews - 2×4 grid with live previews
- HTMX-Powered - No page reloads
- Responsive Design - Desktop, tablet, mobile
- Complete JWT-authenticated API
- Certificate operations
- CA management
- OCSP/SCEP/ACME endpoints
-
.github/workflows/build-deb.yml- Removed nginx from hard dependencies - Package description enhanced with complete feature list
- Documentation clarity on deployment options
- Package metadata with all protocols listed
All v1.8.3-beta features preserved and working.
Test that nginx is NOT required:
# Download package
wget https://github.com/NeySlim/ultimate-ca-manager/releases/download/v1.8.2/ucm_1.8.2_all.deb
# Inspect dependencies
dpkg-deb -I ucm_1.8.2_all.deb | grep Depends:
# Should show: python3, pip, venv, systemd (NO nginx!)
# Install
sudo dpkg -i ucm_1.8.2_all.deb
# ✅ SUCCESS - No nginx dependency error!- README.md - Updated to v1.8.2
- UPGRADE.md - Updated upgrade instructions
- DOCKER_QUICKSTART.md - Updated Docker examples
- CHANGELOG.md - Added v1.8.2 and v1.8.3-beta entries
- GitHub Release: https://github.com/NeySlim/ultimate-ca-manager/releases/tag/v1.8.2
- Docker Image: ghcr.io/neyslim/ultimate-ca-manager:1.8.2
- Installation Guide: Installation-Guide
- Quick Start: Quick-Start
- Previous Release: v1.8.3-beta
- Issues: https://github.com/NeySlim/ultimate-ca-manager/issues
- Wiki: https://github.com/NeySlim/ultimate-ca-manager/wiki
- Discussions: https://github.com/NeySlim/ultimate-ca-manager/discussions
Previous: v1.8.3-beta
Next: v1.9.0 (TBD)