1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00
This commit is contained in:
downtownallday 2023-12-18 15:11:33 -05:00
parent 8cb2decb51
commit 9a5f7895df
2 changed files with 12 additions and 2 deletions

View File

@ -40,13 +40,13 @@ tag_from_git() {
# the argument is a negative number (or blank). return the nth
# tag from bottom of the list given by `git tag`
-* | "" )
TAG=$(git tag | tail ${1:--1} | head -1)
TAG=$(git tag | grep -v -- -kj | tail ${1:--1} | head -1)
code=$?
;;
# else, return the tag prior to the tag given
* )
TAG=$(git tag | grep -B1 -F "$1" | head -1)
TAG=$(git tag | grep -v -- -kj | grep -B1 -F "$1" | head -1)
code=$?
esac

10
changelog/v66.md Normal file
View File

@ -0,0 +1,10 @@
## Commits for v66
| COMMIT | DATE | AUTHOR | TITLE |
| ------ | ---- | ------ | ----- |
| [8cb2dec](https://github.com/downtownallday/mailinabox-ldap/commit/8cb2decb5130724a3b2305f4ea65fb418d3ecff5) | 2023-12-18 | _downtownallday_ | Update QA tests for Nextcloud 28 |
| [8e4e9ad](https://github.com/downtownallday/mailinabox-ldap/commit/8e4e9add78c6744057e9c4f5b80f4beb9f10f8cc) | 2023-12-17 | _Joshua Tauberer_ | Version 66 |
| [fa8c7dd](https://github.com/downtownallday/mailinabox-ldap/commit/fa8c7ddef59d5ae84c31ca50d1c3ec6b5f85f428) | 2023-12-04 | _KiekerJan_ | Upgrade roundcube to 1.6.5 (#2329) |
| [6d6ce25](https://github.com/downtownallday/mailinabox-ldap/commit/6d6ce25e03a42ea91888f9b99fcc31163917c5bb) | 2023-12-04 | _bilogic_ | Allow specifying another repo to install from in bootstrap.sh (#2334) |
| [371f5bc](https://github.com/downtownallday/mailinabox-ldap/commit/371f5bc1b236de40a1ed5d9118140ee13fddf5dc) | 2023-11-28 | _Joshua Tauberer_ | Fix virtualenv creation reported in #2335 |
| [d976a8b](https://github.com/downtownallday/mailinabox-ldap/commit/d976a8b838f60e28a063145bc0a9010b013e8090) | 2023-11-05 | _KiekerJan_ | upgrade roundcube to 1.6.5 |
| [2b63804](https://github.com/downtownallday/mailinabox-ldap/commit/2b638042cb072e8fcc79440c20b8c0fac430bc0a) | 2023-11-01 | _downtownallday_ | Reduce retained slapd logs from 1 year to 3 months |