]> git.ipfire.org Git - thirdparty/pdns.git/blobdiff - build-scripts/git-to-changelog
Merge pull request #8917 from Habbie/bind-packages-docs
[thirdparty/pdns.git] / build-scripts / git-to-changelog
index a474dbb87d77b5557a18a1db4a5e59bdd559f278..a9f7d6a75a158594fb4d55c1c43ae3233c163add 100755 (executable)
@@ -3,6 +3,6 @@
 if [ "$1" = "-" ]; then
   cat
 else
-  git log --pretty=format:'- [commit %h](https://github.com/PowerDNS/pdns/commit/%h): %s' "$@" |\
-    sed -r 's!#([[:digit:]]+)![ticket #\1](https://github.com/PowerDNS/pdns/issues/\1)!g;'
+  git log --no-merges --pretty=format:'- [commit %h](https://github.com/PowerDNS/pdns/commit/%h): %s (%an)' "$@" |\
+    perl -pe 's!#([[:digit:]]+)![ticket #\1](https://github.com/PowerDNS/pdns/issues/\1)!g;'
 fi