Skip to content

v2.211-rc1

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 15 Aug 18:02
· 149 commits to main since this release
πŸ“œ Recent release history (last 2 versions)

[2.210] - 2026-08-14

Added

  • ACME client accounts: multiple accounts can share the same CA directory URL β€” administrative separation for dns-persist-01 and multi-domain setups (#276)
  • DNS providers: Tencent Cloud DNSPod (#284, contributed by @wxtewx)

Fixed

  • ACME CA account form: the directory URL field is no longer marked required, and an empty URL defaults to Let's Encrypt Production β€” the helper text and the form now agree (#276)
  • ACME account key import now documents the accepted legacy PEM envelopes β€” SEC1/X9.62 (BEGIN EC PRIVATE KEY) and PKCS#1 (BEGIN RSA PRIVATE KEY) already worked but the UI/helper only mentioned PKCS#8 (#285)

[2.209] - 2026-08-14

Added

  • SCEP profiles: Microsoft Intune challenge validation β€” live per-device challenge validation against Intune's ScepActions API with Entra app registration, forced auto-approve, and success/failure notification before issuance (#228, contributed by @Hemsby)
  • ACME client accounts: import the private key of an existing account at creation (algorithm derived from the key) (#277)
  • ACME client accounts: deactivate an account upstream (RFC 8555 Β§7.3.6) β€” permanent and removes the local record (#278)

Fixed

  • Certificate, SSH certificate, user certificate, and discovered-certificate lists now search the entire inventory (server-side) instead of only the current page (#280)

Full history: CHANGELOG.md


Installation

Docker (Recommended)

# From Docker Hub
docker pull neyslim/ultimate-ca-manager:2.211-rc1

# Or from GitHub Container Registry
docker pull ghcr.io/neyslim/ultimate-ca-manager:2.211-rc1

# Run
docker run -d -p 8443:8443 \
  -e SECRET_KEY=$(openssl rand -hex 32) \
  --name ucm neyslim/ultimate-ca-manager:2.211-rc1

Debian/Ubuntu

wget https://github.com/NeySlim/ultimate-ca-manager/releases/download/v2.211-rc1/ucm_2.211.rc1_all.deb
sudo dpkg -i ucm_2.211.rc1_all.deb
sudo apt-get install -f

Fedora/RHEL

wget https://github.com/NeySlim/ultimate-ca-manager/releases/download/v2.211-rc1/ucm-2.211.rc1-1.fc43.noarch.rpm
sudo dnf install ./ucm-2.211.rc1-1.fc43.noarch.rpm

Silent/Automated Install

# Skip firewall prompts for CI/automation
sudo UCM_PORT=8443 UCM_FIREWALL=no dpkg -i ucm_2.211.rc1_all.deb

Default Credentials

  • Username: admin
  • Password: changeme123

Change the password immediately after first login!

Documentation