You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cli/changelog/render.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,13 @@ The `render` command automatically discovers and merges `.amend-*.yaml` files wi
62
62
: When disabled (default), entries are rendered as flattened bulleted lists with PR/issue links inline and Impact/Action sections indented.
63
63
: This flag only affects markdown output; AsciiDoc output always uses its standard format.
64
64
65
+
`--no-descriptions`
66
+
: Optional: Hide changelog record descriptions from output.
67
+
: Defaults to false (descriptions are shown).
68
+
: When enabled, entry titles, PR/issue links, Impact and Action sections remain visible.
69
+
: Bundle-level descriptions (release intro text) are unaffected.
70
+
: Works with both markdown and asciidoc output formats.
71
+
65
72
`--title <string?>`
66
73
: Optional: The title to use for section headers, directories, and anchors in output files.
67
74
: Defaults to the version in the first bundle. When omitted, ISO date targets are formatted for display the same way as the `{changelog}` directive (e.g., `2026-05-04` becomes "May 4, 2026", `2026-05` becomes "May 2026"), while directory names and heading anchors continue to use the raw target slug.
/// <param name="output">Optional: Output directory for rendered files. Defaults to current directory</param>
1154
1154
/// <param name="subsections">Optional: Group entries by area/component in subsections. For breaking changes with a subtype, groups by subtype instead of area. Defaults to false</param>
1155
1155
/// <param name="dropdowns">Optional: Render separated types (breaking changes, deprecations, known issues, highlights) as MyST dropdowns. When false (default), renders as flattened bulleted lists. Defaults to false</param>
1156
+
/// <param name="noDescriptions">Optional: Hide changelog record descriptions from output. When enabled, entry titles, PR/issue links, Impact and Action sections remain visible. Bundle-level descriptions are unaffected. Defaults to false</param>
1156
1157
/// <param name="title">Optional: Title to use for section headers in output files. Defaults to version from first bundle</param>
1157
1158
/// <param name="ctx"></param>
1158
1159
[Command("render")]
@@ -1164,6 +1165,7 @@ public async Task<int> Render(
1164
1165
string?output=null,
1165
1166
boolsubsections=false,
1166
1167
booldropdowns=false,
1168
+
boolnoDescriptions=false,
1167
1169
string?title=null,
1168
1170
Cancelctx=default
1169
1171
)
@@ -1196,6 +1198,7 @@ public async Task<int> Render(
0 commit comments