- Nothing changed yet.
- Don't fail if PAS_PLUGINS_LDAP_SKIP_GROUP_PROPERTIES environment variable isn't set. [enfold-josh]
- Use environment variable to skip getting properties for groups [enfold-josh]
- Fix typo. [enfold-josh]
- Add option to skip getting properties for groups. [enfold-josh]
- Add plugin activated check back. [enfold-josh]
- Restore python2 support. [enfold-josh]
- Add some logging to the cache. [enfold-josh]
- Don't check if the plugin is activated. [enfold-josh]
- Don't fail if login missing from attrs and log that it is missing. [enfold-josh]
- use exact_match when searching for a single user or group by id. [enfold-josh]
- Fix import for plone 5.2 [frapell]
- Support for Redis cache in addition to Memcached [dataflake]
- Drop support for Python 2.7 [dataflake]
Features:
- Support for nested groups in AD using LDAP_MATCHING_RULE_IN_CHAIN. [pbauer]
- Support for plugin-external group DNs when using memberOf attribute. [jensens]
Bug fixes:
- Use the plugin ID as the property sheet ID instead of the user ID. Fixes issue #95. [reinhardt]
- Grant the Member role to all LDAP users. [reinhardt]
- Fixed error display for /plone_ldapcontrolpanel when a wrong value is provided for the "Groups container DN" field. [alecghica]
- Fixed error adding a Plone user group. [iulianpetchesi]
- Log LDAP-errors as level error, to get them i.e. into Sentry. [jensens]
- Make timeout of LDAP-errors logging configurable with environment variable
PAS_PLUGINS_LDAP_ERROR_LOG_TIMEOUT
. [jensens] - Log long running LDAP/ pas.plugin.ldap operations as error.
Threshold can be controlled with environment variable
PAS_PLUGINS_LDAP_LONG_RUNNING_LOG_THRESHOLD
. [jensens]
- Remove broken old import step from base profile. Fixes issue #74. [maurits]
- Remove deprecation warning for removal of time.clock() which will break Python 3.8 support. [fredvd]
- Require python-ldap 3.2.0. Fixes "initialize() got an unexpected keyword argument 'bytes_strictness'". [reinhardt]
- Pimp ZMI view to look better on Zope 4. [jensens]
- Fixes #71, node.ext.ldap version-requirement wrong [jensens]
Fix inspector: In Python 3 JSON dumps does not accept bytes as keys. [jensens, 2silver]
Explicitly set the ID on the property sheet instead of write on read. [jensens, 2silver]
Less verbose plugin logging of pseudo errors. [jensens, 2silver]
Enable partial search for users if no exact match was asked. [jensens]
Add bundle on request for latest YAFOWIL. [jensens]
Drop Plone 4.3 support. [jensens]
Convert plugin.py doctests to unittests. [jensens]
Black code style. [jensens]
Fix #51: plone_ldapinspector broken with UnicodeDecodeError [dmunico]
Make bind user and password optional. [thet, jensens]
Python 3 support:
- fixed imports
- text/encoding fixes
- fixed exception handling
- mangled doctests using Py23DocChecker from node.ext.ldap
- simplified object_classes expressions in yaml config
[reinhardt]
- Remove manual LDAP search pagination on UGM principal
search
calls. This is done in downstream API as ofnode.ext.ldap
1.0b7. [rnix] - Fix testing: register plugin type of PlonePAS. [jensens, fredvd, mauritsvanrees]
- Overhaul of test setup (travis). [jensens]
- Set the memcached TTW setting in the form definition to unicode, so that you can save the controlpanel form if you change this field. [fredvd]
- Improve README [svx]
- Fix: TTW setting of
page_size
resulted in float value. Now set form datattype to integer. Thanks @datakurre for reporting! [jensens]
- No changes.
- GroupEnumeration paged. [jensens]
- UserEnumeration paged. [jensens]
- Add page_size server property. [jensens]
- Fix LDAP check. [jensens]
- Split profiles for Plone 4 and 5. [jensens]
- fix tests for Plone 5 [jensens]
- Fixed LDAP errors not handled. This prevent leave the site broken just after the installation of the plugin [keul]
- Adopt LDAP instector to use DN instead of RDN for node identification. [rnix]
- Add dummy
defaults
setting toUsersConfig
andGroupsConfig
adapters. These defaults are used to set child creation defaults, thus concrete implementation is postponed until user and group creation is supported through plone UI. [rnix] - Add
ignore_cert
setting toLDAPProps
adapter. [rnix] - Remove
check_duplicates
setting which is not available any more in node.ext.ldap. [rnix] - Use node.ext.ldap 1.0b1. [rnix]
- major speedup expected by using node.ext.ldap >=1.0a1 [jensens]
- use implementer decorator for better readability. [jensens]
- Fix setuptools to v7.0. [jensens]
- Feature: Alternative volatile cache for UGM tree on plugin. [jensens]
- overhaul test setup [jensens]
- introduce pluggable caching mechanism on ugm-tree level, defaults to
caching on request. Can be overruled by providing an adapter implementing
pas.plugins.ldap.interfaces.IPluginCacheHandler
. [jensens] - log how long it takes to build up a users or groups tree. [jensens]
- Small fixes in inspector. [rnix]
- Fix dependency versions. [rnix]
- Raise
RuntimeError
instead ofKeyError
when password change method couldn't locate the user in LDAP tree. Maybe it's a local user andProducts.PlonePAS.pas.userSetPassword
expects aRuntimeError
to be raised in this case. [saily]
add property
check_duplicates
. Adds ability to disable duplicates check for keys in ldap in order to avoid failure if ldap strcuture is not perfect.Add new property to disable duplicate primary/secondary key checking in LDAP trees. This allows pas.plugins.ldap to read LDAP tree and ignore duplicated items instead of raising:
Traceback (most recent call last): ... RuntimeError: Key not unique: <key>='<value>'.
- ldap errors dont block that much if ldap is not reachable, timeout blocked in past the whole zope. now default timeout for retry is 300s - and some code cleanup [jensens]
- use more modern base for testing [jensens]
- Add URL example to widget help information how to specify an ldap uri. [saily]
- Add new bootstrap v2 [saily]
- sometimes ldap returns an empty string as portrait. take this as no portrait. [jensens, 2013-09-11]
- because of passwordreset problem we figured out that pas searchUsers calls plugins search with both login and name, which was passed to ugm and returned always an empty result [benniboy]
- make it work.
- base work done so far in
bda.pasldap
andbda.plone.ldap
was merged.