absolute-version / commit-and-tag-version

Fork of the excellent standard-version. Automate versioning and CHANGELOG generation, with semver.org and conventionalcommits.org :trophy:
ISC License
360 stars 33 forks source link

Include all commits in CHANGELOG #127

Open cbou opened 5 months ago

cbou commented 5 months ago

Something I'm interested in from standard-version: https://github.com/conventional-changelog/standard-version/issues/870

Hey,

I'm adding standard-version to our pipeline for internal app and I was wondering if there's an option to include every commit in CHANGELOG file for given release?

Like, having a config file:

// .versionrc.json

  "type": [
    {"type": "feat", "section": "Features"},
    {"type": "fix", "section": "Fixes"},
    {"type":  "*", "section":  "Others"}
  ]

would put every commit that is not feat or fix into Others group?