Open nfantone opened 4 years ago
After further digging, I realised that the reason why 0.4.0
, 0.3.0
and 0.2.0
are not being considered is because those are tagging merge commits.
This seems to be linked to #375. However, after trying out the fixed proposed there, I get back the exact complement of what I'm seeing here: only merge commits, which produces an almost empty CHANGELOG.md
containing [0.4.0]
, [0.3.0]
and [0.2.0]
headers exclusively.
I need exactly the same thing here. We have a large mono repo in our business and we would definitely like to have a changelog between the versions as they were made in the past. We figure having this option would be also helpful in cases where something went wrong in the past or where configuration changed over time.
Anyone figure out a workaround for this issue?
We'd like to use this tool but all of our tags are on merge commits so the generated notes do not have any tags.
Betway
I have a clean repository for which I need to generate a new changelog. Here are the all current tags on it:
"version"
onpackage.json
to0.4.0
(latest) and run:I get back a
CHANGELOG.md
file containing all changes correctly listed for all versions up to[0.1.21]
, for some reason. Tags0.2.0
,0.3.0
and0.4.0
are ignored.package.json
to a"version"
newer than0.4.0
(say0.5.0
) and run the same thing, the resultingCHANGELOG.md
now holds a header reading[0.5.0]
which englobes all changes since0.1.21
, once again ignoring all versions in between.It looks as though the parsing is failing to detect
0.4.0
,0.2.0
and0.3.0
tags.Am I doing anything wrong here?