I've just finished setting up semantic-release for my node project and made the first release with it:
It seems that only commits with type fix or feat are added to the release notes... I want to be able to show improvement type as well.
Is there a way to configure/add it? Thanks!

The changelog text is generated by conventional-changelog-angular by default and it's over there that the type of commit to include in the change log are determined.
See https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/conventional-changelog-angular/writer-opts.js#L45
If you want to include other type of commit in the changelog you can create your own preset (based on
conventional-changelog-angular) that would include all the commits type.Alternatively you can use the conventional-changelog-conventionalcommits preset which support the
typesoption to define new types and if they should be included in the release note.You semantic-release config would be:
I added the
releaseRulesconfig for@semantic-release/commit-analyzeras I assume you want to create a minor releases forimprovementcommits.