From 997e0cacd88a2488fe77c03ae89dc5a75551814b Mon Sep 17 00:00:00 2001 From: krakenhavoc Date: Tue, 14 Jul 2026 03:13:59 +0000 Subject: [PATCH] =?UTF-8?q?docs:=20promote=20chain=20endpoint=20release=20?= =?UTF-8?q?in=20CHANGELOG=20=E2=80=94=20weekly=20documentation=20audit=202?= =?UTF-8?q?026-07-14?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Supersedes #90. No new PRs merged since the 2026-06-30 audit. docs/CHANGELOG.md still has the GET /certs/tls/:id/chain endpoint under [Unreleased] despite PR #79 having shipped. Carries forward the same fix: promote to a dated release section and reset [Unreleased]. --- docs/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 556135f..b80a44e 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -8,6 +8,10 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). Dates a ## [Unreleased] +--- + +## [2026-05-28] — Certificate Chain + ### Added - `GET /certs/tls/:id/chain` — returns intermediate CA chain details: per-entry subject, issuer, fingerprint, notAfter; plus `chainPem` (intermediates only) and `fullChainPem` (leaf + intermediates) fields. New `chainPem` column added to `tls_cert` table via migration. New shared types: `TlsCertChainEntry`, `TlsCertChainInfo`. (PR #79)