CHANGES 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. v1.2 - 2014-04-10
  2. -----------------
  3. - django-auth-ldap now provides experimental Python 3 support. Python 2.5 was
  4. dropped.
  5. To sum up, django-auth-ldap works with Python 2.6, 2.7, 3.3 and 3.4.
  6. Since python-ldap isn't making progress toward Python 3, if you're using
  7. Python 3, you need to install a fork::
  8. $ pip install git+https://github.com/rbarrois/python-ldap.git@py3
  9. Thanks to `Aymeric Augustin <https://myks.org/en/>`_ for making this happen.
  10. v1.1.8 - 2014-02-01
  11. -------------------
  12. * Fix `#43`_: Update :class:`~django_auth_ldap.config.LDAPSearchUnion` to work for
  13. group searches in addition to user searches.
  14. * Tox no longer supports Python 2.5, so our tests now run on 2.6 and 2.7 only.
  15. .. _#43: https://bitbucket.org/psagers/django-auth-ldap/issue/43/
  16. v1.1.7 - 2013-11-19
  17. -------------------
  18. * Bug fix: :setting:`AUTH_LDAP_GLOBAL_OPTIONS` could be ignored in some cases
  19. (such as :func:`~django_auth_ldap.backend.LDAPBackend.populate_user`).
  20. v1.1.5 - 2013-10-25
  21. -------------------
  22. * Fix `#41`_: Support POSIX group permissions with no gidNumber attribute.
  23. * Support multiple group DNs for \*_FLAGS_BY_GROUP.
  24. .. _#41: https://bitbucket.org/psagers/django-auth-ldap/issue/41/
  25. v1.1.4 - 2013-03-09
  26. -------------------
  27. * Add support for Django 1.5's custom user models.
  28. v1.1.3 - 2013-01-05
  29. -------------------
  30. * Fix `#33`_: Reject empty passwords by default.
  31. Unless :setting:`AUTH_LDAP_PERMIT_EMPTY_PASSWORD` is set to True,
  32. LDAPBackend.authenticate() will immediately return None if the password is
  33. empty. This is technically backwards-incompatible, but it's a more secure
  34. default for those LDAP servers that are configured such that binds without
  35. passwords always succeed.
  36. * Fix `#39`_: Add support for pickling LDAP-authenticated users.
  37. .. _#33: https://bitbucket.org/psagers/django-auth-ldap/issue/33/
  38. .. _#39: https://bitbucket.org/psagers/django-auth-ldap/issue/39/
  39. .. vim: ft=rst nospell tw=80