October 3, 2015
Django 1.8.5 fixes several bugs in 1.8.4.
AssertionError
in some delete queries with a model containing a
field that is both a foreign and primary key (#%s24951).AssertionError
in some complex queries (#%s24525).GenericForeignKey
(#%s25040).translation.override()
clear the overridden language when a
translation isn’t initially active (#%s25295).ModelAdmin.list_display
that clashed
with a reverse field on the model (#%s25299).argparse
management commands
(#%s25372).from django.db import migrations,
models
statement in newly created migrations (#%s25384).Count
queries to execute COUNT(*)
instead of COUNT('*')
as versions of Django before 1.8 did (#%s25377). This may fix a
performance regression on some databases.values()
and values_list()
(#%s20625).Model.save()
(#%s25160).set_autocommit(False)
(#%s24921).manage.py test --keepdb
option on Oracle (#%s25421).related_name
set to ‘+’ (#%s24505,
#%s25486).SimpleLazyObject
wrapping a model (#%s25389).Sep 26, 2023