Skip to content
Merged

a #139

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions changelog/2026/08-19-release-2026.8.18.md
Original file line number Diff line number Diff line change
@@ -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 | | | |
18 changes: 15 additions & 3 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}