1.11.5.txt 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. ===========================
  2. Django 1.11.5 release notes
  3. ===========================
  4. *Under development*
  5. Django 1.11.5 fixes several bugs in 1.11.4.
  6. Bugfixes
  7. ========
  8. * Fixed GEOS version parsing if the version has a commit hash at the end (new
  9. in GEOS 3.6.2) (:ticket:`28441`).
  10. * Added compatibility for ``cx_Oracle`` 6 (:ticket:`28498`).
  11. * Fixed select widget rendering when option values are tuples (:ticket:`28502`).
  12. * Django 1.11 inadvertently changed the sequence and trigger naming scheme on
  13. Oracle. This causes errors on INSERTs for some tables if
  14. ``'use_returning_into': False`` is in the ``OPTIONS`` part of ``DATABASES``.
  15. The pre-1.11 naming scheme is now restored. Unfortunately, it necessarily
  16. requires an update to Oracle tables created with Django 1.11.[1-4]. Use the
  17. upgrade script in :ticket:`28451` comment 8 to update sequence and trigger
  18. names to use the pre-1.11 naming scheme.
  19. * Added POST request support to ``LogoutView``, for equivalence with the
  20. function-based ``logout()`` view (:ticket:`28513`).
  21. * Omitted ``pages_per_range`` from ``BrinIndex.deconstruct()`` if it's ``None``
  22. (:ticket:`25809`).
  23. * Fixed a regression where ``SelectDateWidget`` localized the years in the
  24. select box (:ticket:`28530`).