Skip to content
This repository has been archived by the owner on Jan 27, 2021. It is now read-only.

Commit

Permalink
Automated changelog update [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
refs committed Jul 27, 2020
1 parent adb8689 commit c01ce16
Showing 1 changed file with 48 additions and 23 deletions.
71 changes: 48 additions & 23 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# Changelog for [unreleased] (UNRELEASED)

The following sections list the changes in ocis-glauth unreleased.

[unreleased]: https://github.com/owncloud/ocis-glauth/compare/v0.5.0...master

## Summary

* Bugfix - Query numeric attribute values without quotes: [#28](https://github.com/owncloud/ocis-glauth/issues/28)

## Details

* Bugfix - Query numeric attribute values without quotes: [#28](https://github.com/owncloud/ocis-glauth/issues/28)

Some LDAP properties like `uidnumber` and `gidnumber` are numeric. When an OS tries to look up a
user it will not only try to lookup the user by username, but also by the `uidnumber`:
`(&(objectclass=posixAccount)(uidnumber=20000))`. The accounts backend for glauth was
sending that as a string query `uid_number eq '20000'` in the ListAccounts query. This PR
changes that to `uid_number eq 20000`. The removed quotes allow the parser in ocis-accounts to
identify the numeric literal.

https://github.com/owncloud/ocis-glauth/issues/28
https://github.com/owncloud/ocis-glauth/pull/29
https://github.com/owncloud/ocis-accounts/pull/68

# Changelog for [0.5.0] (2020-07-23)

The following sections list the changes in ocis-glauth 0.5.0.
Expand Down Expand Up @@ -47,7 +72,7 @@ The following sections list the changes in ocis-glauth 0.5.0.

The following sections list the changes in ocis-glauth 0.4.0.

[0.4.0]: https://github.com/owncloud/ocis-glauth/compare/v0.3.0...v0.4.0
[0.4.0]: https://github.com/owncloud/ocis-glauth/compare/v0.2.0...v0.4.0

## Summary

Expand Down Expand Up @@ -87,49 +112,49 @@ The following sections list the changes in ocis-glauth 0.4.0.

https://github.com/owncloud/ocis-glauth/pull/12

# Changelog for [0.3.0] (2020-03-17)
# Changelog for [0.2.0] (2020-03-17)

The following sections list the changes in ocis-glauth 0.3.0.
The following sections list the changes in ocis-glauth 0.2.0.

[0.3.0]: https://github.com/owncloud/ocis-glauth/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/owncloud/ocis-glauth/compare/v0.3.0...v0.2.0

## Summary

* Change - Use physicist demo users: [#5](https://github.com/owncloud/ocis-glauth/issues/5)
* Change - Default to config based user backend: [#6](https://github.com/owncloud/ocis-glauth/pull/6)

## Details

* Change - Use physicist demo users: [#5](https://github.com/owncloud/ocis-glauth/issues/5)
* Change - Default to config based user backend: [#6](https://github.com/owncloud/ocis-glauth/pull/6)

Demo users like admin, demo and test don't allow you to tell a story. Which is why we changed the
set of hard coded demo users to `einstein`, `marie` and `feynman`. You should know who they are.
This also changes the ldap domain from `dc=owncloud,dc=com` to `dc=example,dc=org` because
that is what these users use as their email domain. There are also `konnectd` and `reva` for
technical purposes, eg. to allow konnectd and reva to bind to glauth.
We changed the default configuration to use the config file backend instead of the ownCloud
backend.

https://github.com/owncloud/ocis-glauth/issues/5
The config backend currently only has two hard coded users: demo and admin. To switch back to the
ownCloud backend use `GLAUTH_BACKEND_DATASTORE=owncloud`

# Changelog for [0.2.0] (2020-03-17)
https://github.com/owncloud/ocis-glauth/pull/6

The following sections list the changes in ocis-glauth 0.2.0.
# Changelog for [0.3.0] (2020-03-17)

[0.2.0]: https://github.com/owncloud/ocis-glauth/compare/v0.1.0...v0.2.0
The following sections list the changes in ocis-glauth 0.3.0.

[0.3.0]: https://github.com/owncloud/ocis-glauth/compare/v0.1.0...v0.3.0

## Summary

* Change - Default to config based user backend: [#6](https://github.com/owncloud/ocis-glauth/pull/6)
* Change - Use physicist demo users: [#5](https://github.com/owncloud/ocis-glauth/issues/5)

## Details

* Change - Default to config based user backend: [#6](https://github.com/owncloud/ocis-glauth/pull/6)

We changed the default configuration to use the config file backend instead of the ownCloud
backend.
* Change - Use physicist demo users: [#5](https://github.com/owncloud/ocis-glauth/issues/5)

The config backend currently only has two hard coded users: demo and admin. To switch back to the
ownCloud backend use `GLAUTH_BACKEND_DATASTORE=owncloud`
Demo users like admin, demo and test don't allow you to tell a story. Which is why we changed the
set of hard coded demo users to `einstein`, `marie` and `feynman`. You should know who they are.
This also changes the ldap domain from `dc=owncloud,dc=com` to `dc=example,dc=org` because
that is what these users use as their email domain. There are also `konnectd` and `reva` for
technical purposes, eg. to allow konnectd and reva to bind to glauth.

https://github.com/owncloud/ocis-glauth/pull/6
https://github.com/owncloud/ocis-glauth/issues/5

# Changelog for [0.1.0] (2020-02-28)

Expand Down

0 comments on commit c01ce16

Please sign in to comment.