2015-07-10 14:51:16 +08:00
|
|
|
==========================
|
|
|
|
Django 1.8.4 release notes
|
|
|
|
==========================
|
|
|
|
|
|
|
|
*Under development*
|
|
|
|
|
|
|
|
Django 1.8.4 fixes several bugs in 1.8.3.
|
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
2015-07-10 14:59:45 +08:00
|
|
|
* Added the ability to serialize values from the newly added
|
|
|
|
:class:`~django.db.models.UUIDField` (:ticket:`25019`).
|
2015-07-12 01:15:38 +08:00
|
|
|
|
|
|
|
* Added a system check warning if the old ``TEMPLATE_*`` settings are defined
|
|
|
|
in addition to the new ``TEMPLATES`` setting.
|
2015-07-23 02:54:42 +08:00
|
|
|
|
|
|
|
* Fixed ``QuerySet.raw()`` so ``InvalidQuery`` is not raised when using the
|
|
|
|
``db_column`` name of a ``ForeignKey`` field with ``primary_key=True``
|
|
|
|
(:ticket:`12768`).
|
2015-07-27 00:42:21 +08:00
|
|
|
|
|
|
|
* Prevented an exception in ``TestCase.setUpTestData()`` from leaking the
|
|
|
|
transaction (:ticket:`25176`).
|
2015-08-04 08:47:58 +08:00
|
|
|
|
2015-08-08 01:06:56 +08:00
|
|
|
* Fixed ``has_changed()`` method in ``contrib.postgres.forms.HStoreField``
|
|
|
|
(:ticket:`25215`, :ticket:`25233`).
|
2015-08-07 09:12:00 +08:00
|
|
|
|
|
|
|
* Fixed the recording of squashed migrations when running the ``migrate``
|
|
|
|
command (:ticket:`25231`).
|
2015-07-24 19:51:40 +08:00
|
|
|
|
|
|
|
* Moved the :ref:`unsaved model instance assignment data loss check
|
|
|
|
<unsaved-model-instance-check-18>` to ``Model.save()`` to allow easier usage
|
|
|
|
of in-memory models (:ticket:`25160`).
|
2015-08-08 20:44:27 +08:00
|
|
|
|
|
|
|
* Prevented ``varchar_patterns_ops`` and ``text_patterns_ops`` indexes for
|
|
|
|
``ArrayField`` (:ticket:`25180`).
|