2015-05-02 04:51:26 +08:00
|
|
|
|
==========================
|
|
|
|
|
Django 1.8.2 release notes
|
|
|
|
|
==========================
|
|
|
|
|
|
|
|
|
|
*Under development*
|
|
|
|
|
|
|
|
|
|
Django 1.8.2 fixes several bugs in 1.8.1.
|
|
|
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
|
========
|
|
|
|
|
|
2015-05-04 22:55:03 +08:00
|
|
|
|
* Fixed check for template engine alias uniqueness (:ticket:`24685`).
|
2015-05-05 19:11:58 +08:00
|
|
|
|
|
|
|
|
|
* Fixed crash when reusing the same ``Case`` instance in a query
|
|
|
|
|
(:ticket:`24752`).
|
2015-05-11 15:02:41 +08:00
|
|
|
|
|
|
|
|
|
* Corrected join promotion for ``Case`` expressions. For example, annotating a
|
|
|
|
|
query with a ``Case`` expression could unexpectedly filter out results
|
|
|
|
|
(:ticket:`24766`).
|
2015-05-05 19:44:33 +08:00
|
|
|
|
|
|
|
|
|
* Fixed incorrect GROUP BY clause generation on MySQL when the query's model
|
|
|
|
|
has a self-referential foreign key (:ticket:`24748`).
|
2015-05-13 05:04:56 +08:00
|
|
|
|
|
|
|
|
|
* Implemented ``ForeignKey.get_db_prep_value()`` so that ``ForeignKey``\s
|
|
|
|
|
pointing to :class:`~django.db.models.UUIDField` and inheritance on models
|
|
|
|
|
with ``UUIDField`` primary keys work correctly (:ticket:`24698`,
|
|
|
|
|
:ticket:`24712`).
|
2015-05-13 21:52:19 +08:00
|
|
|
|
|
|
|
|
|
* Fixed ``isnull`` lookup for ``HStoreField`` (:ticket:`24751`).
|
2015-05-13 23:40:57 +08:00
|
|
|
|
|
|
|
|
|
* Fixed a MySQL crash when a migration removes a combined index (unique_together
|
|
|
|
|
or index_together) containing a foreign key (:ticket:`24757`).
|
2015-05-14 14:22:42 +08:00
|
|
|
|
|
|
|
|
|
* Fixed session cookie deletion when using :setting:`SESSION_COOKIE_DOMAIN`
|
|
|
|
|
(:ticket:`24799`).
|
2015-05-15 01:27:31 +08:00
|
|
|
|
|
|
|
|
|
* On PostgreSQL, when no access is granted for the ``postgres`` database,
|
|
|
|
|
Django now falls back to the default database when it normally requires a
|
|
|
|
|
"no database" connection (:ticket:`24791`).
|
2015-05-18 19:53:41 +08:00
|
|
|
|
|
|
|
|
|
* Fixed display of ``contrib.admin``’s ``ForeignKey`` widget when it's used
|
|
|
|
|
in a row with other fields (:ticket:`24784`).
|