1.6.2.txt 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ==========================
  2. Django 1.6.2 release notes
  3. ==========================
  4. *February 6, 2014*
  5. This is Django 1.6.2, a bugfix release for Django 1.6. Django 1.6.2 fixes
  6. several bugs in 1.6.1:
  7. * Prevented the base geometry object of a prepared geometry to be garbage
  8. collected, which could lead to crash Django
  9. (:ticket:`21662`).
  10. * Fixed a crash when executing the :djadmin:`changepassword` command when the
  11. user object representation contained non-ASCII characters
  12. (:ticket:`21627`).
  13. * The :djadmin:`collectstatic` command will raise an error rather than
  14. default to using the current working directory if :setting:`STATIC_ROOT` is
  15. not set. Combined with the ``--clear`` option, the previous behavior could
  16. wipe anything below the current working directory
  17. (:ticket:`21581`).
  18. * Fixed mail encoding on Python 3.3.3+
  19. (:ticket:`21093`).
  20. * Fixed an issue where when
  21. ``settings.DATABASES['default']['AUTOCOMMIT'] = False``, the connection
  22. wasn't in autocommit mode but Django pretended it was.
  23. * Fixed a regression in multiple-table inheritance ``exclude()`` queries
  24. (:ticket:`21787`).
  25. * Added missing items to ``django.utils.timezone.__all__``
  26. (:ticket:`21880`).
  27. * Fixed a field misalignment issue with ``select_related()`` and model
  28. inheritance
  29. (:ticket:`21413`).
  30. * Fixed join promotion for negated ``AND`` conditions
  31. (:ticket:`21748`).
  32. * Oracle database introspection now works with boolean and float fields
  33. (:ticket:`19884`).
  34. * Fixed an issue where lazy objects weren't actually marked as safe when passed
  35. through :func:`~django.utils.safestring.mark_safe` and could end up being
  36. double-escaped (:ticket:`21882`).
  37. Additionally, Django's vendored version of six, ``django.utils.six`` has been
  38. upgraded to the latest release (1.5.2).