Multiple entries in changelog from one version to another

Author: StfBauerCreated Nov 20, 2024Updated Jun 26, 2026

I am running the following command:

bash
npx conventional-changelog -n ./.versionrc.json -i CHANGELOG.md -s -r 0 --tag-prefix 'htwoo-core-v' -p conventionalcommits

with the following configuration:

json
{
    "header": "# hTWOo Core - Changelog\n\nChanges in hTWOo core as they happen\n",
    "types": [
      {
        "type": "feat",
        "section": "Features"
      },
      {
        "type": "fix",
        "section": "Bug Fixes"
      },
      {
        "type": "chore",
        "hidden": true
      },
      {
        "type": "docs",
        "hidden": true
      },
      {
        "type": "style",
        "hidden": true
      },
      {
        "type": "refactor",
        "section": "Refactoring"
      },
      {
        "type": "perf",
        "hidden": true
      },
      {
        "type": "test",
        "hidden": true
      }
    ],
    "commitUrlFormat": "https://github.com/n8design/htwoo/commit/{{hash}}",
    "compareUrlFormat": "https://github.com/n8design/htwoo/compare/{{previousTag}}...{{currentTag}}",
    "tagPrefix": "htwoo-core-v"
  }

in the changelog I get entries like this and have no explaination for that:

markdown
## [2.6.0](https://github.com/n8design/htwoo/compare/htwoo-core-v2.6.0...htwoo-core-v2.6.0) (2024-11-20)
## [2.6.0](https://github.com/n8design/htwoo/compare/htwoo-core-v2.5.2...htwoo-core-v2.6.0) (2024-11-07)

.....

## [2.5.1](https://github.com/n8design/htwoo/compare/htwoo-core-v2.4.1...htwoo-core-v2.5.1) (2024-06-18)
## [2.5.0](https://github.com/n8design/htwoo/compare/htwoo-core-v2.4.0...htwoo-core-v2.5.0) (2024-06-14)
## [2.4.1](https://github.com/n8design/htwoo/compare/htwoo-core-v2.5.0...htwoo-core-v2.4.1) (2024-06-17)

I already banged my head against the wall and haven't found any reason where this is coming from. I even tried to cleanup the repo but without any luck. Does one of you have an explaination for that.

Source: conventional-changelog/conventional-changelog