From 81f43a069a7f554b0be30b75c9a3be84e9ade2f5 Mon Sep 17 00:00:00 2001 From: Johannes Battjes Date: Wed, 19 Aug 2026 12:09:55 +0200 Subject: [PATCH 1/2] a --- changelog/2026/08-19-release-2026.8.18.md | 9 +++++++++ src/css/custom.css | 18 +++++++++++++++--- 2 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 changelog/2026/08-19-release-2026.8.18.md diff --git a/changelog/2026/08-19-release-2026.8.18.md b/changelog/2026/08-19-release-2026.8.18.md new file mode 100644 index 0000000..419f8f1 --- /dev/null +++ b/changelog/2026/08-19-release-2026.8.18.md @@ -0,0 +1,9 @@ +--- +slug: "2026.8.18" +title: "2026.8.18: DRC 1.7 additions" +--- + +| Component | Summary (english) | Relevance for consumers (English) | Relevance for end users (Dutch) | Relevance for system administration (Dutch) | +| --------- | ----------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ------------------------------------------- | +| DRC | DRC updated with standard version 1.6 and 1.7 additions | Field `tonenAanInitiator` added (default: false). `trefwoorden` added to the PATCH operation. `Verzenddatum` no longer required for outgoing documents. Authorization for documents with `alleenIsGereedVoorPublicatie` = true added (works together with AC standard 1.1.0). By default, responses still use DRC 1.5; to test the 1.7 behavior, send the `1.7` API version header. DRC 1.7 will become the default once all 1.7 changes are implemented. | | | +| NRC/BRC | Migrated internal object mapping from AutoMapper to Mapster | | | | diff --git a/src/css/custom.css b/src/css/custom.css index c08db99..a431020 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -124,18 +124,30 @@ * Make wide changelog/doc tables fit the viewport instead of showing a * horizontal scrollbar. Infima sets table { display: block; overflow: auto } * so it can scroll instead of overflowing the page; override that back to a - * real table layout, fixed to the container width, and let long cell - * content wrap instead. + * real table layout, constrained to the container width. table-layout: auto + * (rather than fixed) lets columns size to their content -- wider text gets + * more space -- while wrapping keeps the total width from ever exceeding + * the container, so no horizontal scrollbar appears. */ .markdown table { display: table; overflow: visible; - table-layout: fixed; + table-layout: auto; width: 100%; + max-width: 100%; } .markdown table th, .markdown table td { overflow-wrap: break-word; word-wrap: break-word; + min-width: 0; +} + +@media (max-width: 768px) { + .markdown table th, + .markdown table td { + font-size: 0.85rem; + padding: 0.5rem; + } } From cd320eb21061733488add84047bc72d339c62e71 Mon Sep 17 00:00:00 2001 From: Johannes Battjes Date: Wed, 19 Aug 2026 12:11:53 +0200 Subject: [PATCH 2/2] Update 08-19-release-2026.8.18.md --- changelog/2026/08-19-release-2026.8.18.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/changelog/2026/08-19-release-2026.8.18.md b/changelog/2026/08-19-release-2026.8.18.md index 419f8f1..e86117d 100644 --- a/changelog/2026/08-19-release-2026.8.18.md +++ b/changelog/2026/08-19-release-2026.8.18.md @@ -3,7 +3,7 @@ slug: "2026.8.18" title: "2026.8.18: DRC 1.7 additions" --- -| Component | Summary (english) | Relevance for consumers (English) | Relevance for end users (Dutch) | Relevance for system administration (Dutch) | -| --------- | ----------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ------------------------------------------- | +| Component | Summary (english) | Relevance for consumers (English) | Relevance for end users (Dutch) | Relevance for system administration (Dutch) | +| --------- | ----------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ------------------------------------------- | | DRC | DRC updated with standard version 1.6 and 1.7 additions | Field `tonenAanInitiator` added (default: false). `trefwoorden` added to the PATCH operation. `Verzenddatum` no longer required for outgoing documents. Authorization for documents with `alleenIsGereedVoorPublicatie` = true added (works together with AC standard 1.1.0). By default, responses still use DRC 1.5; to test the 1.7 behavior, send the `1.7` API version header. DRC 1.7 will become the default once all 1.7 changes are implemented. | | | -| NRC/BRC | Migrated internal object mapping from AutoMapper to Mapster | | | | +| NRC/BRC | Migrated internal object mapping from AutoMapper to Mapster | | | |