1.6.6.txt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ==========================
  2. Django 1.6.6 release notes
  3. ==========================
  4. *Under development*
  5. Django 1.6.6 fixes several bugs in 1.6.5.
  6. Bugfixes
  7. ========
  8. * Corrected email and URL validation to reject a trailing dash
  9. (:ticket:`22579`).
  10. * Prevented indexes on PostgreSQL virtual fields (:ticket:`22514`).
  11. * Prevented edge case where values of FK fields could be initialized with a
  12. wrong value when an inline model formset is created for a relationship
  13. defined to point to a field other than the PK (:ticket:`13794`).
  14. * Restored ``pre_delete`` signals for ``GenericRelation`` cascade deletion
  15. (:ticket:`22998`).
  16. * Fixed transaction handling when specifying non-default database in
  17. ``createcachetable`` and ``flush`` (:ticket:`23089`).
  18. * Fixed the "ORA-01843: not a valid month" errors when using Unicode
  19. with older versions of Oracle server (:ticket:`20292`).
  20. * Restored bug fix for sending unicode email with Python 2.6.5 and below
  21. (:ticket:`19107`).
  22. * Prevented ``UnicodeDecodeError`` in ``runserver`` with non-UTF-8 and
  23. non-English locale (:ticket:`23265`).
  24. * Fixed JavaScript errors while editing multi-geometry objects in the OpenLayers
  25. widget (:ticket:`23137`, :ticket:`23293`).
  26. * Prevented a crash on Python 3 with query strings containing unencoded
  27. non-ASCII characters (:ticket:`22996`).