mirror of
https://github.com/django/django.git
synced 2024-11-24 11:48:10 +01:00
4aae864463
Thanks James Gillard for the report.
Regression in 729266c6f2
.
30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
==========================
|
|
Django 5.0.1 release notes
|
|
==========================
|
|
|
|
*Expected January 2, 2024*
|
|
|
|
Django 5.0.1 fixes several bugs in 5.0.
|
|
|
|
Bugfixes
|
|
========
|
|
|
|
* Reallowed, following a regression in Django 5.0, using a foreign key to a
|
|
model with a primary key that is not ``AutoField`` in
|
|
:attr:`.ModelAdmin.list_filter` (:ticket:`35020`).
|
|
|
|
* Fixed a long standing bug in handling the ``RETURNING INTO`` clause that
|
|
caused a crash when creating a model instance with a ``GeneratedField`` which
|
|
``output_field`` had backend-specific converters (:ticket:`35024`).
|
|
|
|
* Fixed a regression in Django 5.0 that caused a crash of ``Model.save()`` for
|
|
models with both ``GeneratedField`` and ``ForeignKey`` fields
|
|
(:ticket:`35019`).
|
|
|
|
* Fixed a bug in Django 5.0 that caused a migration crash on Oracle < 23c when
|
|
adding a ``GeneratedField`` with ``output_field=BooleanField``
|
|
(:ticket:`35018`).
|
|
|
|
* Fixed a regression in Django 5.0 where admin fields on the same line could
|
|
overflow the page and become non-interactive (:ticket:`35012`).
|