1.5.1.txt 1.0 KB

12345678910111213141516171819202122232425262728
  1. ==========================
  2. Django 1.5.1 release notes
  3. ==========================
  4. *March 28, 2013*
  5. This is Django 1.5.1, a bugfix release for Django 1.5. It's completely backwards
  6. compatible with Django 1.5, but includes a handful of fixes.
  7. The biggest fix is for a memory leak introduced in Django 1.5. Under certain
  8. circumstances, repeated iteration over querysets could leak memory - sometimes
  9. quite a bit of it. If you'd like more information, the details are in
  10. `our ticket tracker`__ (and in `a related issue`__ in Python itself).
  11. __ https://code.djangoproject.com/ticket/19895
  12. __ http://bugs.python.org/issue17468
  13. If you've noticed memory problems under Django 1.5, upgrading to 1.5.1 should
  14. fix those issues.
  15. Django 1.5.1 also includes a couple smaller fixes:
  16. * Module-level warnings emitted during tests are no longer silently hidden
  17. (`#18985`__).
  18. * Prevented filtering on password hashes in the user admin (`#20078`__).
  19. __ https://code.djangoproject.com/ticket/18985
  20. __ https://code.djangoproject.com/ticket/20078