mirror of
https://github.com/django/django.git
synced 2025-08-09 21:38:18 +00:00
[1.6.x] Fixed #22486 -- Restored the ability to reverse views created using functools.partial.
Regression in8b93b31487
. Thanks rcoup for the report. Backport of3c06b2f2a3
from master
This commit is contained in:
parent
c5306d4af1
commit
6915220ff9
7 changed files with 54 additions and 1 deletions
14
docs/releases/1.4.12.txt
Normal file
14
docs/releases/1.4.12.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
===========================
|
||||
Django 1.4.12 release notes
|
||||
===========================
|
||||
|
||||
*Under development*
|
||||
|
||||
Django 1.4.12 fixes a regression in the 1.4.11 security release.
|
||||
|
||||
Bugfixes
|
||||
========
|
||||
|
||||
* Restored the ability to :meth:`~django.core.urlresolvers.reverse` views
|
||||
created using :func:`functools.partial()`
|
||||
(`#22486 <http://code.djangoproject.com/ticket/22486>`_)
|
14
docs/releases/1.5.7.txt
Normal file
14
docs/releases/1.5.7.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
==========================
|
||||
Django 1.5.7 release notes
|
||||
==========================
|
||||
|
||||
*Under development*
|
||||
|
||||
Django 1.5.7 fixes a regression in the 1.5.6 security release.
|
||||
|
||||
Bugfixes
|
||||
========
|
||||
|
||||
* Restored the ability to :meth:`~django.core.urlresolvers.reverse` views
|
||||
created using :func:`functools.partial()`
|
||||
(`#22486 <http://code.djangoproject.com/ticket/22486>`_)
|
|
@ -12,3 +12,7 @@ Bugfixes
|
|||
* Added backwards compatibility support for the :mod:`django.contrib.messages`
|
||||
cookie format of Django 1.4 and earlier to facilitate upgrading to 1.6 from
|
||||
1.4 (`#22426 <http://code.djangoproject.com/ticket/22426>`_).
|
||||
|
||||
* Restored the ability to :meth:`~django.core.urlresolvers.reverse` views
|
||||
created using :func:`functools.partial()`
|
||||
(`#22486 <http://code.djangoproject.com/ticket/22486>`_)
|
||||
|
|
|
@ -33,6 +33,7 @@ Final releases
|
|||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
1.5.7
|
||||
1.5.6
|
||||
1.5.5
|
||||
1.5.4
|
||||
|
@ -46,6 +47,7 @@ Final releases
|
|||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
1.4.12
|
||||
1.4.11
|
||||
1.4.10
|
||||
1.4.9
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue