1.4.9.txt 704 B

123456789101112131415161718192021
  1. ==========================
  2. Django 1.4.9 release notes
  3. ==========================
  4. *October 23, 2013*
  5. Django 1.4.9 fixes a security-related bug in the 1.4 series and one other
  6. data corruption bug.
  7. Readdressed denial-of-service via password hashers
  8. ==================================================
  9. Django 1.4.8 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.4.9, we've reverted this change and instead improved
  12. the speed of our PBKDF2 algorithm by not rehashing the key on every iteration.
  13. Bugfixes
  14. ========
  15. * Fixed a data corruption bug with ``datetime_safe.datetime.combine`` (#21256).