Get changes between two tags
Hi,
we have a build setup that is building releases based on tags in git while using tags as branches. Additionally, we generate a release notes document out of the comments of the commits with some logic. The problem that I have, is the change log you get when you build on tags. I need a diff between two tags (the current one and a given one which acts as the previous version). Is there a way to generate the change log between these two builds based on different tags?
Regards,
Frank
Please sign in to leave a comment.
Hi Frank,
I assume you are requesting some automated functionality. This isn't directly available, but you can probably script your way through it by requesting the changes in builds between the tags through the REST API.
Otherwise, you could rather simply go to the Change log tab of the build configuration overview, and use the advanced search, although you would need to find the build numbers.
Hi Denis,
thanks for your reply. I generated this changelog now completely on the git level wit "git log" commands. This works quite good for my purpose.