Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.7.0 #28

Merged
merged 4 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ $ docker run -it \
ghcr.io/alan-turing-institute/guacamole-user-sync:$(version you want to use)
```

LDAP filter syntax is described here: https://ldap.com/ldap-filters/.
If you want a simple filter for testing, try `(objectClass=*)` which will match any LDAP object.

Similarly, LDAP distinguished names (DNs) are described here: https://ldap.com/ldap-dns-and-rdns/.
The user or group base DN will typically be the organisational unit (OU) that all objects of that type belong to.
For example, a simple user base DN might look something like `OU=users,DC=example,DC=com`.

## Environment variables

- `DEBUG`: Enable debug output (default: 'False')
Expand Down
2 changes: 1 addition & 1 deletion guacamole_user_sync/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.0"
__version__ = "0.7.0"
2 changes: 1 addition & 1 deletion tests/test_about.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ class TestAbout:
"""Test about.py."""

def test_version(self) -> None:
assert version == "0.6.0"
assert version == "0.7.0"
Loading