2015-08-19 01:52:45 +02:00
|
|
|
==========================
|
|
|
|
Django 1.8.5 release notes
|
|
|
|
==========================
|
|
|
|
|
2015-10-04 01:31:45 +02:00
|
|
|
*October 3, 2015*
|
2015-08-19 01:52:45 +02:00
|
|
|
|
|
|
|
Django 1.8.5 fixes several bugs in 1.8.4.
|
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
2015-08-05 11:07:36 +02:00
|
|
|
* Made the development server's autoreload more robust (:ticket:`24704`).
|
|
|
|
|
2015-08-05 21:52:11 +02:00
|
|
|
* Fixed ``AssertionError`` in some delete queries with a model containing a
|
|
|
|
field that is both a foreign and primary key (:ticket:`24951`).
|
2015-08-22 14:50:49 +02:00
|
|
|
|
2015-08-20 18:46:14 +02:00
|
|
|
* Fixed ``AssertionError`` in some complex queries (:ticket:`24525`).
|
|
|
|
|
2015-08-22 14:50:49 +02:00
|
|
|
* Fixed a migrations crash with ``GenericForeignKey`` (:ticket:`25040`).
|
2015-08-24 17:52:58 +02:00
|
|
|
|
2015-08-21 14:09:29 +02:00
|
|
|
* Made ``translation.override()`` clear the overridden language when a
|
|
|
|
translation isn't initially active (:ticket:`25295`).
|
2015-08-24 17:52:58 +02:00
|
|
|
|
|
|
|
* Fixed crash when using a value in ``ModelAdmin.list_display`` that clashed
|
|
|
|
with a reverse field on the model (:ticket:`25299`).
|
2015-09-09 15:38:33 +02:00
|
|
|
|
|
|
|
* Fixed autocompletion for options of non-``argparse`` management commands
|
|
|
|
(:ticket:`25372`).
|
2015-09-12 04:04:27 +02:00
|
|
|
|
|
|
|
* Alphabetized ordering of imports in ``from django.db import migrations,
|
|
|
|
models`` statement in newly created migrations (:ticket:`25384`).
|
2015-09-12 21:06:35 +02:00
|
|
|
|
|
|
|
* Fixed migrations crash on MySQL when adding a text or a blob field with an
|
|
|
|
unhashable default (:ticket:`25393`).
|
2015-09-10 18:07:09 +02:00
|
|
|
|
|
|
|
* Changed ``Count`` queries to execute ``COUNT(*)`` instead of ``COUNT('*')``
|
|
|
|
as versions of Django before 1.8 did (:ticket:`25377`). This may fix a
|
|
|
|
performance regression on some databases.
|
2015-09-01 22:23:06 +02:00
|
|
|
|
|
|
|
* Fixed custom queryset chaining with ``values()`` and ``values_list()``
|
|
|
|
(:ticket:`20625`).
|
2015-09-19 13:36:38 +02:00
|
|
|
|
|
|
|
* Moved the :ref:`unsaved model instance assignment data loss check
|
|
|
|
<unsaved-model-instance-check-18>` on reverse relations to ``Model.save()``
|
|
|
|
(:ticket:`25160`).
|
2015-09-19 14:23:55 +02:00
|
|
|
|
|
|
|
* Readded inline foreign keys to form instances when validating model formsets
|
|
|
|
(:ticket:`25431`).
|
2015-09-21 20:53:10 +02:00
|
|
|
|
|
|
|
* Allowed using ORM write methods after disabling autocommit with
|
|
|
|
:func:`set_autocommit(False) <django.db.transaction.set_autocommit>`
|
|
|
|
(:ticket:`24921`).
|
2015-09-25 22:35:36 +02:00
|
|
|
|
|
|
|
* Fixed the ``manage.py test --keepdb`` option on Oracle (:ticket:`25421`).
|
2015-10-01 00:46:11 +02:00
|
|
|
|
|
|
|
* Fixed incorrect queries with multiple many-to-many fields on a model with the
|
|
|
|
same 'to' model and with ``related_name`` set to '+' (:ticket:`24505`,
|
|
|
|
:ticket:`25486`).
|
2015-09-12 08:06:25 +02:00
|
|
|
|
|
|
|
* Fixed pickling a ``SimpleLazyObject`` wrapping a model (:ticket:`25389`).
|