mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Update changelog for 11.0.9.13
This commit is contained in:
parent
a179b3dbf0
commit
8e1e29bbd4
2 changed files with 17 additions and 2 deletions
13
debian/changelog
vendored
13
debian/changelog
vendored
|
@ -1,3 +1,16 @@
|
|||
yunohost (11.0.9.13) stable; urgency=low
|
||||
|
||||
- [fix] defaultapp: domain may not exist in app_map dict output (efe0e601)
|
||||
- [fix] regenconf: fix a stupid issue with slapcat displaying an error message because grep -q breaks the pipe (503b9031)
|
||||
- [fix] regenconf: add a timeout to curl inside dnsmasq regenconf to prevent being stuck too long when no network on the machine (b77e8114)
|
||||
- [fix] ynh_delete_file_checksum with non-existing option in helpers/config ([#1501](https://github.com/YunoHost/yunohost/pull/1501))
|
||||
- [i18n] Translations updated for Basque, Galician, Slovak
|
||||
|
||||
Thanks to all contributors <3 ! (José M, Jose Riha, tituspijean, xabirequejo)
|
||||
|
||||
-- Alexandre Aubin <alex.aubin@mailoo.org> Sat, 03 Sep 2022 23:27:56 +0200
|
||||
|
||||
|
||||
yunohost (11.0.9.12) stable; urgency=low
|
||||
|
||||
- [fix] postinstall: check all partitions (not only physical ones) ([#1497](https://github.com/YunoHost/yunohost/pull/1497))
|
||||
|
|
|
@ -5,7 +5,9 @@ REPO_URL=$(git remote get-url origin)
|
|||
ME=$(git config --global --get user.name)
|
||||
EMAIL=$(git config --global --get user.email)
|
||||
|
||||
LAST_RELEASE=$(git tag --list 'debian/11.*' | tail -n 1)
|
||||
LAST_RELEASE=$(git tag --list 'debian/11.*' --sort="v:refname" | tail -n 1)
|
||||
|
||||
echo $LAST_RELEASE
|
||||
|
||||
echo "$REPO ($VERSION) $RELEASE; urgency=low"
|
||||
echo ""
|
||||
|
@ -23,7 +25,7 @@ TRANSLATIONS=$(git log $LAST_RELEASE... -n 10000 --pretty=format:"%s" \
|
|||
|
||||
echo ""
|
||||
CONTRIBUTORS=$(git logc $LAST_RELEASE... -n 10000 --pretty=format:"%an" \
|
||||
| sort | uniq | grep -v "$ME" \
|
||||
| sort | uniq | grep -v "$ME" | grep -v 'yunohost-bot' | grep -vi 'weblate' \
|
||||
| tr '\n' ', ' | sed -e 's/,$//g' -e 's/,/, /g')
|
||||
[[ -z "$CONTRIBUTORS" ]] || echo " Thanks to all contributors <3 ! ($CONTRIBUTORS)"
|
||||
echo ""
|
||||
|
|
Loading…
Add table
Reference in a new issue