summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2012-10-17[1.4.x] Bump ALL the version numbers.1.4.2James Bennett
2012-10-17Fixed a security issue related to password resetsPreston Holmes
Full disclosure and new release are forthcoming backport from master
2012-10-13[1.4.x] Fixed #18881 -- Made the context option in {% trans %} and {% ↵Julien Phalip
blocktrans %} accept literals wrapped in single quotes. Thanks to lanyjie for the report.
2012-10-04[1.4.X] Fixed #19051 - Fixed Selenium tearDownClass method; thanks glarrain ↵Tim Graham
for the report. Backport of a1a5c0854f from master
2012-09-30[1.4.x] -- Fixed Python 2.5 compatibility issuesAnssi Kääriäinen
2012-09-27[1.4.x] Fixed #18979 -- Avoid endless loop caused by "val in PermLookupDict"Anssi Kääriäinen
Fixed by defining __iter__ which raises TypeError. This was done to PermWrapper earlier. Backport of 50d573d2c0b3e17cbf1aa240b03b52e4ad0c32cd
2012-09-15[1.4.X] Fixed #18530 -- Fixed a small regression in the admin filters where ↵Julien Phalip
wrongly formatted dates passed as url parameters caused an unhandled ValidationError. Thanks to david for the report.
2012-09-07[1.4.x] [py3] Added forwards-compatible aliases.Aymeric Augustin
Related documentation will go to the master branch, since there's no Python 3 documentation in the 1.5 branch.
2012-09-02[1.4.x] Fixed #17788 -- Added batch_size argument to qs.bulk_create()Anssi Kääriäinen
The qs.bulk_create() method did not work with large batches together with SQLite3. This commit adds a way to split the bulk into smaller batches. The default batch size is unlimited except for SQLite3 where the batch size is limited to 999 SQL parameters per batch. Thanks to everybody who participated in the discussions at Trac. Backpatch of 29132ebdef0e0b9c09e456b05f0e6a22f1106a4f from master (with documentation changes removed).
2012-09-01[1.4.x] Fixed #18212 -- Standardized arguments of GenericIPAddressFieldClaude Paroz
Unlike other model fields, the newly introduced (1.4) GenericIPAddressField did not accept verbose_name and name as the first positional arguments. This commit fixes it. Thanks Dan McGee for the report and the patch. Backport of 306d34873cff2 from master.
2012-08-16[1.4.x] Fixed #18239 -- Subclassed HTMLParser only for selected Python versionsRaphaël Hertzog
Only Python versions affected by http://bugs.python.org/issue670664 should patch HTMLParser.
2012-07-30[1.4.x] Bump version numbers for security release.1.4.1James Bennett
2012-07-30[1.4.x] Fixed a security issue in http redirects. Disclosure and new release ↵Florian Apolloner
forthcoming. Backport of 4129201c3e0fa057c198bdefcb34686a23b4a93c from master.
2012-07-30[1.4.x] Fixed second security issue in image uploading. Disclosure and ↵Florian Apolloner
release forthcoming. Backport of b1d463468694f2e91fde67221b7996e9c52a9720 from master.
2012-07-30[1.4.x] Fixed a security issue in image uploading. Disclosure and release ↵Florian Apolloner
forthcoming. Backport of dd16b17099b7d86f27773df048c5014cf439b282 from master.
2012-07-22[1.4.x] Made LiveServerTestCase to restore state on exit.Ramiro Morales
The piece of state is DB connections' allow_thread_sharing attribute which gets munged when test are run when in-memory SQLite databases. Thanks Anssi for suggesting the possible root cause and Julien for implementing the fix. Backport of ea667ee3aeed33bce1dd681d9c0ea42f9926db5a from master.
2012-07-07[1.4.x] Fixed #17978 -- Fixed a minor layout issue when an inline contains a ↵Julien Phalip
filter horizontal widget. Thanks to Aymeric Augustin for the report.
2012-06-03[1.4.X] Fixed #18379 -- Made the sensitive_variables decorator work with ↵Julien Phalip
object methods.
2012-05-27[1.4.x] Fixed #18135 -- Close connection used for db version checkingMichael Newman
On MySQL when checking the server version, a new connection could be created but never closed. This could result in open connections on server startup. Backport of 4423757c0c50afbe2470434778c8d5e5b4a70925.
2012-05-15[1.4.x] Fixed #18019 -- Use threaded runserver only when database supports it.Claude Paroz
2012-05-10[1.4.X] Set the post process cache when finished instead of one by one.Jannis Leidel
This should prevent a race condition if running collectstatic is canceled or its cache is accessed from other processes, leaving the cache in a corrupt state.
2012-05-08[1.4.x] Fixed #17976 -- Made forms.BooleanField pickleable.Aymeric Augustin
Backport of 9350d1d59c1a4e6a9ac246a808f55da35de0df69 from master. This was a regression in Django 1.4. Thanks bronger for the report and claudep for the patch.
2012-04-11[1.4.X] Fixed #18104 -- Added missing parentheses around two-lines ↵Claude Paroz
deprecation string. Thanks Roy Smith for the report. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.4.X@17897 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-10[1.4.X] Fixed #18090 -- Applied filters when running prefetch_related ↵Aymeric Augustin
backwards through a one-to-one relation. Backport of r17888 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.4.X@17889 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-09[1.4.X] Fixed #18086 -- Restored '-pk' as the default order in the admin ↵Julien Phalip
changelist. This rectifies a slight change in behavior introduced in Django 1.4 and r17635. Backport of r17881 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.4.X@17882 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-31[1.4.X] Fixed #17972 -- Ensured that admin filters on a foreign key respect ↵Julien Phalip
the to_field attribute. This fixes a regression introduced in [14674] and Django 1.3. Thanks to graveyboat and Karen Tracey for the report. Backport of r17854 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.4.X@17858 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-29[1.4.X] Make auth test pass even when LANGUAGE_CODE is not 'en'. Refs ↵Claude Paroz
#17980. Thanks wassup for the report. Backport of r17811 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.4.X@17819 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-29[1.4.X] Fixed #17733 -- Discouraged setting TIME_ZONE to None when USE_TZ is ↵Claude Paroz
True. Thanks berdario for the report. Backport of r17809 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.4.X@17818 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Minor correction in the version tuple.James Bennett
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17800 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Bump trunk to 1.4.1.4James Bennett
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17799 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Fixed #17810 (again). Catch session key errors.Aymeric Augustin
The previous commit didn't work with PyLibMC. This solution appears to be the best compromise at this point in the 1.4 release cycle. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17797 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Fixed an incompatibility with Python 2.5 in the changes done in r17795. Refs ↵Jannis Leidel
#17810. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17796 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Fixed #17810. Catch session key errors.Paul McMillan
Catches memcached session key errors related to overly long session keys. This is a long-standing bug, but severity was exacerbated by the addition of cookie-backed session storage, which generates long session values. If an installation switched from cookie-backed session store to memcached, users would not be able to log in because of the server error from overly long memcached keys. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17795 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled sites translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17794 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled sessions translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17793 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled redirects translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17792 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled messages translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17791 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled localflavor translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17790 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled humanize translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17789 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled gis translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17788 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled formtools translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17787 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled flatpages translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17786 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled contenttypes translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17785 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled comments translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17784 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled auth translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17783 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled admindocs translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17782 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled admin translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17781 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Pulled core translations updates from Transifex. Refs #17822.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17780 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-23Reverted the introduction of a translation string in r17775 as it happened ↵Jannis Leidel
after string freeze. Refs #17944. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17779 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-22Used SortedDict instead of dict to avoid random errors that may occur when ↵Aymeric Augustin
dict randomization is enabled in Python. Refs #17758. Thanks Łukasz Rekucki. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17777 bcc190cf-cafb-0310-a4f2-bffc1f526a37