Live data from Hacker News

Ask HN: How do you decide what goes in a changelog vs. internal notes?

news.ycombinator.com

1–5 of 5 posts

Re: Ask HN: How do you decide what goes in a changelog vs. internal notes?

#2
changelogs are for consumers, internal notes are for the team. Ideally, nobody should be making this decision manually at release time. If you use semantic versioning and Conventional Commits, you can completely automate changelogs generation. This shifts the responsibility to individual developers to write properly scoped commit messages

Re: Ask HN: How do you decide what goes in a changelog vs. internal notes?

#3

changelogs are for consumers, internal notes are for the team. Ideally, nobody should be making this decision manually at release time. If you use semantic versioning and Conventional Commits, you can completely automate changelogs generation. This shifts the responsibility to individual developers to write properly scoped commit messages

[flagged]

Re: Ask HN: How do you decide what goes in a changelog vs. internal notes?

#5

changelogs are for consumers, internal notes are for the team. Ideally, nobody should be making this decision manually at release time. If you use semantic versioning and Conventional Commits, you can completely automate changelogs generation. This shifts the responsibility to individual developers to write properly scoped commit messages

exactly. a good commit message apart from keeping track of what shipped, also lets u automate the changelog/release note generation. i built commitposts.com around this idea.