- Added an option to use a bearer token with the HTTP backend. This makes it
possible to use e.g. Google Cloud Storage as a secondary storage backend. +
- [small]#_[contributed by Delgan]_#
+ [small]#_[contributed by an anonymous user]_#
- Added support for caching standard output from the compiler. +
[small]#_[contributed by Luboš Luňák and Joel Rosdahl]_#
#!/bin/sh
+anonymous="^(6d5CfLQ3dYAb|Delgan|luzpaz|RW|vsplesk)$"
+
if [ -d .git ]; then
# Fetch full Git history if needed, e.g. when run via CI.
git fetch --unshallow 2>/dev/null
# a "Co-authored-by:" in the commit message.
(git log | grep -Po "(?<=Co-authored-by: )(.*)(?= <)"; \
git log --format="%aN") \
+ | grep -Ev "$anonymous" \
| sed 's/^/* /' \
| LANG=en_US.utf8 sort -uf \
| perl -00 -p -i -e 's/^\*.*/<STDIN> . "\n"/es' doc/AUTHORS.adoc