How To Automatically Generate A Helpful Changelog From Your Git Commit Messages
Creating a changelog is a usual task if a new software version is going to be released. It contains all the changes which were made since the last release and is helpful to remember what has changed in the code and to be able to inform the users of our code.
In many projects, creating the changelog is a manual process that is often undesired, error-prone, and time-consuming. This article describes some tools that can help to automate the changelog creation based on the Git history.
Let's start with some basics.
Semantic Versioning
Semantic Versioning (SemVer) is a de facto standard for code versioning. It specifies that a version number always contains these three parts:
- MAJOR: is incremented when you add breaking changes, e.g. an incompatible API change
- MINOR: is incremented when you add backward compatible functionality
- PATCH: is incremented when you add backward compatible bug fixes
Conventional Commits
The Conventional Commits specification proposes introducing a standardized lightweight convention on top of commit messages. This convention dovetails with SemVer, asking software developers to describe in commit messages, features, fixes, and breaking changes that they make.
Developers tend to write commit messages that serve no purpose. Usually, the message does not describe where changes were made, what was changed, and what was the motivation for making the changes.
So I recommend writing commit messages using the Conventional Commits specification:
An example of such a message:
The commit type <type>
can take one of these value:
fix:
a commit of this type patches a bug in your codebase and correlates with the patch version in semantic versioningfeat:
a commit of this type introduces a new feature to the codebase and correlates with a minor version in semantic versioningBREAKING CHANGE:
a commit that has the textBREAKING CHANGE:
at the beginning of its optional body or footer section introduces a breaking API change and correlates with a major version in semantic versioning. A breaking change can be part of commits of any type. e.g., afix:
,feat:
&chore:
types would all be valid, in addition to any other type.
Other types like chore:
, docs:
, style:
, refactor:
, perf:
, test:
are recommended by the
Angular convention. These
types have no implicit effect on semantic versioning and are not part of the conventional commit specification.
I also recommend reading How to Write Good Commit Messages: A Practical Git Guide.
Auto-Generate Changelog
Now we can start to automate the changelog creation.
- Follow the Conventional Commits Specification in your repository. We will use @commitlint/config-conventional to enforce this via Git hooks.
- Use standard-version, a utility for versioning using SemVer and changelog generation powered by Conventional Commits.
I will demonstrate the usage based on this demo project which
was initialized running npm init
and git init
.
The next step is to install husky, which sets up your Git hooks:
Then install commitlint with a config, which will be used to lint your commit message:
As we are using config-conventional
we are automatically following the Angular commit convention.
Now we need to tell Husky to run commitlint
during the Git commit hook. Therefore, we need to add a commit-msg
file to the .husky
folder:
Finally, we create a .commitlintrc.json
file which extends the rules from config-conventional:
Running git commit
with an invalid message will now cause an error:
and valid commits will work:
Now we are safe and can guarantee that only valid commit messages are in our repository.
Generate Changelog
Finally, we can create our changelog from our Git history. First step is to install standard-version:
Now we can create some npm scripts in our package.json
:
The changelog generation can be configured via a .versionrc.json
file or placing a standard-version
stanza in your package.json
.
In our demo we use a .versionrc.json
file based on the Conventional Changelog Configuration Spec:
An array of type
objects represents the explicitly supported commit message types, and whether they should show up in the generated changelog file.
commitUrlFormat
is an URL representing a specific commit at a hash and compareUrlFormat
is an URL representing the comparison between two git shas.
The first release can be created by running npm run release -- --first-release
in the terminal:
An exemplary CHANGELOG.md
could look similar to this one:
What I like is that the changelog is divided by the type of commit, it contains links to the specific commits and link to the diff of the version.
Of course, you can always edit the auto-generated changelog to make it more readable though. The generated changelog Markdown text can be pasted into GitHub releases so that it shows up next to each release tag. There are a lot more options in the tools to customize linting commits or the changelog generation.
Conclusion
For lazy developers like me, an automatic changelog generation is a nice tool that saves me a lot of time. Additionally, we have better commit messages in our code repository as they follow an established specification.
It needs some time to get used to the commit convention. You could encounter some discussions in your team as all code contributors need to follow the convention. The Git hook solution should catch the wrong messages as early as possible but you could also add a guard in your CI/CD pipeline.
In my opinion, it is worth the effort to introduce the Git commit convention and the changelog generation in projects. We as developers do not need to invest much time & brain capacity for the changelog generation and have a helpful document where we can look up what has changed between our software releases. Additionally, we can easily share this with the users of our software so that they also see what they can expect from each new release.
How I Built A Self-Updating README On My Github Profile
On Hacker News I discovered the article Building a self-updating profile README for GitHub. I was very fascinated about this new GitHub feature and wanted to build something similar for my GitHub profile.
Monitoring Spring Boot Application With Micrometer, Prometheus And Grafana Using Custom Metrics
It is important to monitor an application's metrics and health which helps us to improve performance, manage the app in a better way, and notice unoptimized behavior. Monitoring each service is important to be able to maintain a system that consists of many microservices.