summaryrefslogtreecommitdiff
path: root/docs/releases/1.6.1.txt
Commit message (Collapse)AuthorAgeFilesLines
* Changed some words to use inline markup.David Smith2022-03-101-1/+2
|
* Capitalized Unicode in docs, strings, and comments.Jon Dufresne2020-04-201-1/+1
|
* Copied 1.6.1 release notes from stable/1.6.x branch.Tim Graham2013-12-121-9/+19
|
* Fixed #21510 -- Readded search reset link in changelist search barClaude Paroz2013-12-111-0/+2
| | | | | Thanks moritz.pfeiffer at alp-phone.ch for the report and Tim Graham for the initial patch.
* Fixed #21551 -- Reenabled loading fixtures from subdirectoryClaude Paroz2013-12-071-1/+2
| | | | | | This was a regression in Django 1.6 that was only partially restored in 839940f27f. Thanks Jonas Haag for the report.
* Fixed #21568 -- Added missing ModelMultipleChoiceField to_python methodClaude Paroz2013-12-071-0/+3
| | | | | Thanks dibrovsd at gmail.com for the report and Simon Charette for the review.
* Added fix for #21530 to 1.6.1 release notes.Baptiste Mispelon2013-12-071-0/+2
|
* Fixed #21535 -- Fixed password hash iteration upgrade.Tim Graham2013-11-301-0/+1
| | | | Thanks jared_mess for the report.
* Fixed #21496 -- Fixed crash when GeometryField uses TextInputClaude Paroz2013-11-281-0/+1
| | | | Thanks Rhett Garber for the report and initial patch.
* Fixed #21448 -- Fixed test client logout with cookie-based sessionsClaude Paroz2013-11-261-0/+2
| | | | Thanks Gunnar Scherf for the report and the suggested patch.
* Fixed #21486 -- Prevented settings config in signal connectionClaude Paroz2013-11-231-0/+2
| | | | | | This was particularly problematic in the chain get_wsgi_application -> db.connections import -> signal connection -> settings configuration. Thanks Jon Dufresne for the report.
* Fixed #21488 -- Multiple locales treatment in i18n commands.Ramiro Morales2013-11-231-0/+5
| | | | | | | | | | | Removed multiple locales separated by commas variation (that wasn't working as documented) in favor of simply allowing use of the ``--locale``/``-l`` options more than once for ``makemessages`` and ``compilemessages``. Thanks Romain Beylerian for the report and Claude, Simon for their help. 8750296918072c97a51f6809d19828ce3f1b8d40 from stable/1.6.x.
* Fixed #21405 -- Prevented queryset overwrite in BaseModelAdminClaude Paroz2013-11-211-0/+2
| | | | | Thanks guido@20tab.com for the report and Tim Graham for the analyze.
* Fixed #21472 -- Fixed inline formsets display when parent pk is 0Claude Paroz2013-11-201-0/+2
| | | | Thanks agale031176@gmail.com for the report.
* Fixed #21457 -- Allowed fixture file name to contain dotsClaude Paroz2013-11-181-0/+2
| | | | Thanks Keryn Knight for the report.
* Updated 1.6.1 release notesClaude Paroz2013-11-171-0/+2
| | | | Partial forward port of e85baa813f.
* Fixed #21428 -- editable GenericRelation regressionAnssi Kääriäinen2013-11-161-0/+2
| | | | | | | | | | | | The GenericRelation refactoring removed GenericRelations from model._meta.many_to_many. This had the side effect of disallowing editable GenericRelations in ModelForms. Editable GenericRelations aren't officially supported, but if we don't fix this we don't offer any upgrade path for those who used the ability to set editable=True in GenericRelation subclass. Thanks to Trac alias joshcartme for the report and stephencmd and Loic for working on this issue.
* Added backported fixes to 1.6.1 release notes.Baptiste Mispelon2013-11-141-0/+5
|
* Added release note for #21410; thanks Loic.Tim Graham2013-11-131-0/+3
|
* Fixed #21398 -- Fixed BCryptSHA256PasswordHasher with py-bcrypt and Python 3.Tim Graham2013-11-091-0/+14
Thanks arjan at anymore.nl for the report.