diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f585531e0..637029bb45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,11 @@ The following sections list the changes in ocis-accounts unreleased. ## Summary * Bugfix - Add write mutexes: [#71](https://github.com/owncloud/ocis-accounts/pull/71) +* Bugfix - Atomic Requests: [#82](https://github.com/owncloud/ocis-accounts/pull/82) * Bugfix - Fix the accountId and groupId mismatch in DeleteGroup Method: [#60](https://github.com/owncloud/ocis-accounts/pull/60) * Bugfix - Fix index mapping: [#73](https://github.com/owncloud/ocis-accounts/issues/73) * Bugfix - Use NewNumericRangeInclusiveQuery for numeric literals: [#28](https://github.com/owncloud/ocis-glauth/issues/28) +* Bugfix - Unescape value for prefix query: [#76](https://github.com/owncloud/ocis-accounts/pull/76) * Bugfix - Prevent segfault when no password is set: [#65](https://github.com/owncloud/ocis-accounts/pull/65) * Bugfix - Update account return value not used: [#70](https://github.com/owncloud/ocis-accounts/pull/70) * Bugfix - Build docker images with alpine:latest instead of alpine:edge: [#64](https://github.com/owncloud/ocis-accounts/pull/64) @@ -37,6 +39,13 @@ The following sections list the changes in ocis-accounts unreleased. https://github.com/owncloud/ocis-accounts/pull/71 +* Bugfix - Atomic Requests: [#82](https://github.com/owncloud/ocis-accounts/pull/82) + + Operations on the file system level are now atomic. This happens only on the provisioning API. + + https://github.com/owncloud/ocis-accounts/pull/82 + + * Bugfix - Fix the accountId and groupId mismatch in DeleteGroup Method: [#60](https://github.com/owncloud/ocis-accounts/pull/60) We've fixed a bug in deleting the groups. @@ -70,6 +79,14 @@ The following sections list the changes in ocis-accounts unreleased. https://github.com/owncloud/ocis-glauth/pull/29 +* Bugfix - Unescape value for prefix query: [#76](https://github.com/owncloud/ocis-accounts/pull/76) + + Prefix queries also need to unescape token values like `'some ''ol string'` to `some 'ol + string` before using it in a prefix query + + https://github.com/owncloud/ocis-accounts/pull/76 + + * Bugfix - Prevent segfault when no password is set: [#65](https://github.com/owncloud/ocis-accounts/pull/65) Passwords are stored in a dedicated child struct of an account. We fixed several segfault