2018-12-04 22:59:37 +08:00
|
|
|
==========================
|
|
|
|
Django 2.1.5 release notes
|
|
|
|
==========================
|
|
|
|
|
|
|
|
*Expected January 1, 2019*
|
|
|
|
|
|
|
|
|
|
|
|
Django 2.1.5 fixes several bugs in 2.1.4.
|
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
2018-12-06 02:14:47 +08:00
|
|
|
* Fixed compatibility with mysqlclient 1.3.14 (:ticket:`30013`).
|
2018-12-07 00:37:43 +08:00
|
|
|
|
|
|
|
* Fixed a schema corruption issue on SQLite 3.26+. You might have to drop and
|
|
|
|
rebuild your SQLite database if you applied a migration while using an older
|
|
|
|
version of Django with SQLite 3.26 or later (:ticket:`29182`).
|
2018-12-08 08:55:47 +08:00
|
|
|
|
|
|
|
* Prevented SQLite schema alterations while foreign key checks are enabled to
|
|
|
|
avoid the possibility of schema corruption (:ticket:`30023`).
|
2018-12-20 17:02:45 +08:00
|
|
|
|
|
|
|
* Fixed a regression in Django 2.1.4 (which enabled keep-alive connections)
|
|
|
|
where request body data isn't properly consumed for such connections
|
|
|
|
(:ticket:`30015`).
|
2018-12-31 22:18:26 +08:00
|
|
|
|
|
|
|
* Fixed a regression in Django 2.1.4 where
|
|
|
|
``InlineModelAdmin.has_change_permission()`` is incorrectly called with a
|
|
|
|
non-``None`` ``obj`` argument during an object add (:ticket:`30050`).
|