From 55441ea0c5f8306a3ce50245732dc566d4faf8d5 Mon Sep 17 00:00:00 2001 From: Luke Wilkinson <95864695+krakenhavoc@users.noreply.github.com> Date: Mon, 8 Jun 2026 23:19:58 -0400 Subject: [PATCH] =?UTF-8?q?docs:=20weekly=20audit=20=E2=80=94=20promote=20?= =?UTF-8?q?chain=20endpoint=20to=20dated=20release=20in=20CHANGELOG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Promote GET /certs/tls/:id/chain from [Unreleased] to [2026-05-28] — Certificate Chain. Suggested tag: v0.4.0 --- docs/CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 556135f..97d7176 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -8,8 +8,12 @@ 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) +- `GET /certs/tls/:id/chain` — returns intermediate CA chain details for any issued certificate: 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) ---