release 0.9

This commit is contained in:
Benjamin Dauvergne 2016-03-02 13:27:12 +01:00
parent 6333c06f92
commit 5585368307
1 changed files with 59 additions and 0 deletions

View File

@ -8,6 +8,8 @@ Helper modules to work with LDAP directories and test LDAP tools against OpenLDA
- `ldaptools.synchronize`: synchronization class to synchronize a source of LDAP records with a target
- `ldaptools.paged`: an LDAPObject implementating paged search requests
- `ldaptools.ldapsync`: a command line client to the Synchronize class
- `ldaptools.slapd`: launch a standalone slapd server, manipulate its configuration, it helps
in writing tests against OpenLDAP.
ldapsync
========
@ -85,3 +87,60 @@ Synchronize tree of organizational units and people between two LDAP directories
--target-bind-password password
--target-base-dn o=myorganization,dc=otherorganization,dc=fr \
--verbose
Changelog
=========
0.9
---
* paged: fix paged search when the response contains no paged result extended control
* improvements to tox script
0.8
---
* improve display of actions and errors
* lowercase attributes in dn of LDIF sources
* fix bug when removing attributes from source outside the permitted attributes
* allow specifying case insensitive attributes for compare
0.7
---
* ldapsync: add a --source-filter parameter
0.6
---
* add empty attribute to new entry if attribute is present in target entry
* remove attributes outside of the specified attributes from source entries
* return an empty list of target base DN does no exist
* convert attribute names to istr
* fix typo
0.5
---
* setup.py: add long description
0.4
---
* remove debugging print
0.3
---
* setup.py: add dependency on setuptools
0.2
---
* improvements to tox script
0.1
---
* initial release