This application is no longer supported.
To generate a diff for a specific service, use the following commands:
$ git tag --list 'authd-*' | sort -t '-' -k2V
Explanation:
--list 'authd-*': filter tags starting with authd-
sort -t '-' -k2V: sort by the second field (v2.X.Y) using version-aware sorting (-V)
After finding the appropriate tag, view the commits that will be included in the release:
$ git log --oneline authd-v2.100.11..master -- services/authd/
--oneline: displays each commit on a single line
authd-v2.100.11..master: show commits between the specified tag and master
-- services/authd/: limit to changes in the specified directory
You can also check commit counts between versions:
$ git rev-list --count admind-v2.102.1..master -- services/admind/ clients/web/admin
This tells you how many commits will be included in the release
Alternatively, check the new release process which automatically generates diffs:
View New Release Process DocumentationFor any questions or concerns, please contact:
slack://user?team=TFWMM6NAF&id=UMKAGKYSW