From 926f13e7b0052cd9ed0f93699eb8721df6e4c509 Mon Sep 17 00:00:00 2001 From: Yura Lazarev Date: Fri, 8 May 2026 15:52:58 +0200 Subject: [PATCH] fix(adr): use full slug in ADR-0005 superseded-by link (#183) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit log4brains parses the bracketed link text as the slug of the superseding ADR. `[0006]` is not a known slug, so `toAdr` is called without a superseder and throws "You forgot to pass the superseder", aborting the ADR site build and leaving `adr-site/` unwritten — which then breaks the Pages deploy at the `cp -r adr-site deploy/adr` step. Same shape as commit 77b5a3a; the fix is to spell out the full slug `0006-standard-builtindata-formats-with-json-type-dispatch` inside the brackets. --- doc/adr/0005-custom-builtindata-text-encoding-for-test-cases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/adr/0005-custom-builtindata-text-encoding-for-test-cases.md b/doc/adr/0005-custom-builtindata-text-encoding-for-test-cases.md index df000349..35b59860 100644 --- a/doc/adr/0005-custom-builtindata-text-encoding-for-test-cases.md +++ b/doc/adr/0005-custom-builtindata-text-encoding-for-test-cases.md @@ -1,6 +1,6 @@ # Custom BuiltinData Text Encoding for Test Cases -- Status: superseded by [0006](0006-standard-builtindata-formats-with-json-type-dispatch.md) +- Status: superseded by [0006-standard-builtindata-formats-with-json-type-dispatch](0006-standard-builtindata-formats-with-json-type-dispatch.md) - Date: 2025-08-20 - Tags: testing, builtin-data, parsing, unified-test-system