From ec6fc5ad32a8aaf145b759dbfa62ec70a13c6b0c Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Thu, 23 Jul 2020 14:14:34 +0000 Subject: [PATCH] Automated changelog update [skip ci] --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 286440c49..f08c8bc8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,20 @@ The following sections list the changes in ocis-glauth unreleased. ## Summary +* Bugfix - Ignore case when comparing objectclass values: [#26](https://github.com/owncloud/ocis-glauth/pull/26) * Bugfix - Build docker images with alpine:latest instead of alpine:edge: [#24](https://github.com/owncloud/ocis-glauth/pull/24) * Enhancement - Implement group queries: [#22](https://github.com/owncloud/ocis-glauth/issues/22) ## Details +* Bugfix - Ignore case when comparing objectclass values: [#26](https://github.com/owncloud/ocis-glauth/pull/26) + + The LDAP equality comparison is specified as case insensitive. We fixed the comparison for + objectclass properties. + + https://github.com/owncloud/ocis-glauth/pull/26 + + * Bugfix - Build docker images with alpine:latest instead of alpine:edge: [#24](https://github.com/owncloud/ocis-glauth/pull/24) ARM builds were failing when built on alpine:edge, so we switched to alpine:latest instead.