Skip to content

Commit 7b69599

Browse files
feat(changelog): Improve whitespace in changelog
Ensure there is at least one blank line separating old and new content. We already separate the log entries for each release with blank lines, so separate pre-existing content from the first release with a blank line as well. If the pre-existing content ends in a blank line, then don't add an extra one.
1 parent f8c617e commit 7b69599

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

commitizen/changelog.py

+3
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,9 @@ def incremental_build(new_content: str, lines: List[str], metadata: Dict) -> Lis
275275

276276
output_lines.append(line)
277277
if not isinstance(latest_version_position, int):
278+
if output_lines and output_lines[-1].strip():
279+
# Ensure at least one blank line between existing and new content.
280+
output_lines.append("\n")
278281
output_lines.append(new_content)
279282
return output_lines
280283

tests/commands/test_changelog_command.py

+24
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,30 @@ def test_changelog_multiple_incremental_do_not_add_new_lines(
320320
assert out.startswith("#")
321321

322322

323+
@pytest.mark.usefixtures("tmp_commitizen_project")
324+
def test_changelog_incremental_newline_separates_new_content_from_old(
325+
mocker, changelog_path
326+
):
327+
"""Test for https://github.com/commitizen-tools/commitizen/issues/509"""
328+
with open(changelog_path, "w") as f:
329+
f.write("Pre-existing content that should be kept\n")
330+
331+
create_file_and_commit("feat: add more cat videos")
332+
333+
testargs = ["cz", "changelog", "--incremental"]
334+
335+
mocker.patch.object(sys, "argv", testargs)
336+
cli.main()
337+
338+
with open(changelog_path, "r") as f:
339+
out = f.read()
340+
341+
assert (
342+
out
343+
== "Pre-existing content that should be kept\n\n## Unreleased\n\n### Feat\n\n- add more cat videos\n"
344+
)
345+
346+
323347
def test_changelog_without_revision(mocker, tmp_commitizen_project):
324348
changelog_file = tmp_commitizen_project.join("CHANGELOG.md")
325349
changelog_file.write(

0 commit comments

Comments
 (0)