2014-02-10 23:05:01 +08:00
|
|
|
==========================
|
|
|
|
Django 1.6.3 release notes
|
|
|
|
==========================
|
|
|
|
|
|
|
|
*Under development*
|
|
|
|
|
|
|
|
This is Django 1.6.3, a bugfix release for Django 1.6. Django 1.6.3 fixes
|
|
|
|
several bugs in 1.6.2:
|
|
|
|
|
2014-02-10 22:55:57 +08:00
|
|
|
* Content retrieved from the GeoIP library is now properly decoded from its
|
|
|
|
default ``iso-8859-1`` encoding
|
|
|
|
(`#21996 <http://code.djangoproject.com/ticket/21996>`_).
|
2014-02-15 10:04:44 +08:00
|
|
|
|
|
|
|
* Fixed ``AttributeError`` when using
|
|
|
|
:meth:`~django.db.models.query.QuerySet.bulk_create` with ``ForeignObject``
|
|
|
|
(`#21566 <http://code.djangoproject.com/ticket/21566>`_).
|
2014-03-01 09:42:56 +08:00
|
|
|
|
|
|
|
* Fixed crash of ``QuerySet``\s that use ``F() + timedelta()`` when their query
|
|
|
|
was compiled more once
|
|
|
|
(`#21643 <http://code.djangoproject.com/ticket/21643>`_).
|
2014-03-13 23:55:38 +08:00
|
|
|
|
|
|
|
* Prevented custom ``widget`` class attribute of
|
|
|
|
:class:`~django.forms.IntegerField` subclasses from being overwritten by the
|
|
|
|
code in their ``__init__`` method
|
|
|
|
(`#22245 <http://code.djangoproject.com/ticket/22245>`_).
|
2014-03-22 19:25:26 +08:00
|
|
|
|
|
|
|
* Improved :func:`~django.utils.html.strip_tags` accuracy (but it still cannot
|
|
|
|
guarantee an HTML-safe result, as stated in the documentation).
|
2014-03-24 19:33:04 +08:00
|
|
|
|
|
|
|
Additionally, Django's vendored version of six, :mod:`django.utils.six` has been
|
|
|
|
upgraded to the latest release (1.6.1).
|