1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #23370 -- defer() + select_related() crashed with inherited models.

This commit is contained in:
Akis Kesoglou
2014-08-29 17:01:21 +03:00
committed by Tim Graham
parent 66757fee7e
commit 6613ea6e3f
4 changed files with 46 additions and 5 deletions

View File

@@ -4,10 +4,13 @@ Django 1.6.7 release notes
*Under development*
Django 1.6.7 fixes a regression in the 1.6.6 security release.
Django 1.6.7 fixes several bugs in 1.6.6, including a regression related to
a security fix in that release.
Bugfixes
========
* Allowed inherited and m2m fields to be referenced in the admin
:ticket:`23329`
(:ticket:`23329`).
* Fixed a crash when using ``QuerySet.defer()`` with ``select_related()``
(:ticket:`23370`).