February 6, 2014
This is Django 1.6.2, a bugfix release for Django 1.6. Django 1.6.2 fixes several bugs in 1.6.1:
changepassword
command when the
user object representation contained non-ASCII characters
(#%s21627).collectstatic
command will raise an error rather than
default to using the current working directory if STATIC_ROOT
is
not set. Combined with the --clear
option, the previous behavior could
wipe anything below the current working directory
(#%s21581).settings.DATABASES['default']['AUTOCOMMIT'] = False
, the connection
wasn’t in autocommit mode but Django pretended it was.exclude()
queries
(#%s21787).django.utils.timezone.__all__
(#%s21880).select_related()
and model
inheritance
(#%s21413).AND
conditions
(#%s21748).mark_safe()
and could end up being
double-escaped (#%s21882).Additionally, Django’s vendored version of six, django.utils.six
has been
upgraded to the latest release (1.5.2).
Sep 26, 2023