diff --git a/changelog.md b/changelog.md index 25a04d9..d8831d8 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,12 @@ # Changelog +## 2026-02-16 - 6.2.0 - feat(ts_web) +add Certificate Management documentation and ops-view-certificates reference + +- Adds a new 'Certificate Management' section to ts_web/readme.md describing domain-centric overview, certificate sources (ACME/provision/static), expiry monitoring, per-domain backoff, and one-click reprovisioning +- Adds ops-view-certificates.ts entry to the ops UI file list +- Documents new route mapping '/certificates' in the readme navigation + ## 2026-02-16 - 6.1.0 - feat(certs) integrate smartacme v9 for ACME certificate provisioning and add certificate management features, docs, dashboard views, API endpoints, and per-domain backoff scheduler diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 953eb63..92091d2 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/dcrouter', - version: '6.1.0', + version: '6.2.0', description: 'A multifaceted routing service handling mail and SMS delivery functions.' } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 953eb63..92091d2 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/dcrouter', - version: '6.1.0', + version: '6.2.0', description: 'A multifaceted routing service handling mail and SMS delivery functions.' } diff --git a/ts_web/readme.md b/ts_web/readme.md index 1878551..6efeaa7 100644 --- a/ts_web/readme.md +++ b/ts_web/readme.md @@ -34,6 +34,13 @@ For reporting bugs, issues, or security vulnerabilities, please visit [community - **Security** — Security incidents from email processing - Bounce record management and suppression list controls +### 🔐 Certificate Management +- Domain-centric certificate overview with status indicators +- Certificate source tracking (ACME, provision function, static) +- Expiry date monitoring and alerts +- Per-domain backoff status for failed provisions +- One-click reprovisioning per domain + ### 📜 Log Viewer - Real-time log streaming - Filter by log level (error, warning, info, debug) @@ -77,6 +84,7 @@ ts_web/ ├── ops-view-overview.ts # Overview statistics ├── ops-view-network.ts # Network monitoring ├── ops-view-emails.ts # Email queue management + ├── ops-view-certificates.ts # Certificate overview & reprovisioning ├── ops-view-logs.ts # Log viewer ├── ops-view-config.ts # Configuration display ├── ops-view-security.ts # Security dashboard @@ -132,6 +140,7 @@ removeFromSuppressionAction(email) // Remove from suppression list /emails/sent → Sent emails /emails/failed → Failed emails /emails/security → Security incidents +/certificates → Certificate management /logs → Log viewer /configuration → System configuration /security → Security dashboard