1.5.5.txt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ==========================
  2. Django 1.5.5 release notes
  3. ==========================
  4. *October 23, 2013*
  5. Django 1.5.5 fixes a couple security-related bugs and several other bugs in the
  6. 1.5 series.
  7. Readdressed denial-of-service via password hashers
  8. --------------------------------------------------
  9. Django 1.5.4 imposes a 4096-byte limit on passwords in order to mitigate a
  10. denial-of-service attack through submission of bogus but extremely large
  11. passwords. In Django 1.5.5, we've reverted this change and instead improved
  12. the speed of our PBKDF2 algorithm by not rehashing the key on every iteration.
  13. Properly rotate CSRF token on login
  14. -----------------------------------
  15. This behavior introduced as a security hardening measure in Django 1.5.2 did
  16. not work properly and is now fixed.
  17. Bugfixes
  18. ========
  19. * Fixed a data corruption bug with ``datetime_safe.datetime.combine`` (#21256).
  20. * Fixed a Python 3 incompatibility in ``django.utils.text.unescape_entities()``
  21. (#21185).
  22. * Fixed a couple data corruption issues with ``QuerySet`` edge cases under
  23. Oracle and MySQL (#21203, #21126).
  24. * Fixed crashes when using combinations of ``annotate()``,
  25. ``select_related()``, and ``only()`` (#16436).
  26. Backwards incompatible changes
  27. ==============================
  28. * The undocumented ``django.core.servers.basehttp.WSGIServerException`` has
  29. been removed. Use ``socket.error`` provided by the standard library instead.