2013-11-09 19:36:10 +08:00
|
|
|
==========================
|
|
|
|
Django 1.6.1 release notes
|
|
|
|
==========================
|
|
|
|
|
|
|
|
*Under development*
|
|
|
|
|
|
|
|
This is Django 1.6.1, a bugfix release for Django 1.6.
|
|
|
|
|
|
|
|
...
|
|
|
|
|
|
|
|
Bug fixes
|
|
|
|
=========
|
|
|
|
|
|
|
|
* Fixed ``BCryptSHA256PasswordHasher`` with py-bcrypt and Python 3 (#21398).
|
2013-11-14 01:24:15 +08:00
|
|
|
* Fixed a regression that prevented a ``ForeignKey`` with a hidden reverse
|
|
|
|
manager (``related_name`` ending with '+') from being used as a lookup for
|
|
|
|
``prefetch_related`` (#21410).
|
2013-11-15 06:13:20 +08:00
|
|
|
* Fixed :meth:`Queryset.datetimes<django.db.models.query.QuerySet.datetimes>`
|
|
|
|
raising ``AttributeError`` in some situations (#21432).
|
|
|
|
* Fixed :class:`~django.contrib.auth.backends.ModelBackend` raising
|
|
|
|
``UnboundLocalError`` if :func:`~django.contrib.auth.get_user_model`
|
|
|
|
raised an error (#21439).
|
2013-11-13 03:35:52 +08:00
|
|
|
* Fixed a regression that prevented editable ``GenericRelation`` subclasses
|
|
|
|
from working in ``ModelForms``.
|
2013-11-18 04:22:06 +08:00
|
|
|
* Fixed ``django.contrib.humanize`` translations where the unicode sequence
|
|
|
|
for the non-breaking space was returned verbatim (#21415).
|
2013-11-18 21:05:59 +08:00
|
|
|
* Fixed :djadmin:`loaddata` error when fixture file name contained any dots
|
|
|
|
non related to file extensions (#21457).
|
2013-11-21 04:34:29 +08:00
|
|
|
* Fixed display of inline instances in formsets when parent has 0 for primary
|
|
|
|
key (#21472).
|
2013-11-22 05:18:52 +08:00
|
|
|
* Fixed a regression where custom querysets for foreign keys were overwritten
|
|
|
|
if ``ModelAdmin`` had ordering set (#21405).
|