From 9a5f7895dfcfdd0dde2db0449939a840e06f7f72 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Mon, 18 Dec 2023 15:11:33 -0500 Subject: [PATCH] v66 --- changelog/gen.sh | 4 ++-- changelog/v66.md | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 changelog/v66.md diff --git a/changelog/gen.sh b/changelog/gen.sh index 66d1b96b..05655853 100755 --- a/changelog/gen.sh +++ b/changelog/gen.sh @@ -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 diff --git a/changelog/v66.md b/changelog/v66.md new file mode 100644 index 00000000..994789f9 --- /dev/null +++ b/changelog/v66.md @@ -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 |