Skip to content

Commit

Permalink
Merge pull request #28 from alan-turing-institute/release-0.7.0
Browse files Browse the repository at this point in the history
Release 0.7.0
  • Loading branch information
jemrobinson authored Jan 10, 2025
2 parents d74dfc6 + d118344 commit 470d365
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
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"

0 comments on commit 470d365

Please sign in to comment.