2.2.8.txt 896 B

12345678910111213141516171819202122232425
  1. ==========================
  2. Django 2.2.8 release notes
  3. ==========================
  4. *Expected December 2, 2019*
  5. Django 2.2.8 fixes several bugs in 2.2.7 and adds compatibility with Python
  6. 3.8.
  7. Bugfixes
  8. ========
  9. * Fixed a data loss possibility in the admin changelist view when a custom
  10. :ref:`formset's prefix <formset-prefix>` contains regular expression special
  11. characters, e.g. `'$'` (:ticket:`31031`).
  12. * Fixed a regression in Django 2.2.1 that caused a crash when migrating
  13. permissions for proxy models with a multiple database setup if the
  14. ``default`` entry was empty (:ticket:`31021`).
  15. * Fixed a data loss possibility in the
  16. :meth:`~django.db.models.query.QuerySet.select_for_update()`. When using
  17. ``'self'`` in the ``of`` argument with :ref:`multi-table inheritance
  18. <multi-table-inheritance>`, a parent model was locked instead of the
  19. queryset's model (:ticket:`30953`).