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

Fixed #24958 -- Fixed inline forms using UUID-PK parents with auto-PK children.

This commit is contained in:
Jason Hoos
2015-06-05 15:04:24 -05:00
committed by Tim Graham
parent 0cc39e50e1
commit a50b66da30
4 changed files with 89 additions and 4 deletions

View File

@@ -85,3 +85,7 @@ Bugfixes
* Reallowed non-ASCII values for ``ForeignKey.related_name`` on Python 3 by
fixing the false positive system check (:ticket:`25016`).
* Fixed inline forms that use a parent object that has a ``UUIDField`` primary
key and a child object that has an ``AutoField`` primary key
(:ticket:`24958`).