summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-26[1.5.x] Correct final element of version tuple.1.5James Bennett
2013-02-26[1.5.x] Update trove classifier for 1.5 final release.James Bennett
2013-02-26[1.5.x] Add release date to 1.5 release notes.James Bennett
2013-02-26[1.5.x] Bump version numbers for Django 1.5 release.James Bennett
2013-02-25[1.5.x] Fixed #19634 -- Added proper __hash__ methods.Aymeric Augustin
Classes overriding __eq__ need a __hash__ such that equal objects have the same hash. Thanks akaariai for the report and regebro for the patch. Backport of e76147a from master.
2013-02-25[1.5.x] Fixed #6195 -- Documented caching options for javascript_catalog.Aymeric Augustin
Backport of 0836670 from master
2013-02-25[1.5.x] Fixed #18144 -- Restored compatibility with SHA1 hashes with empty salt.Aymeric Augustin
Thanks dahool for the report and initial version of the patch. Backport of 633d8de from master.
2013-02-25[1.5.x] Updated translationsClaude Paroz
2013-02-25[1.5.x] Fixed #19903 -- Fixed unbalanced setUp/tearDown calls in ↵Claude Paroz
LiveServerAddress test Backport of 6d52bcbb7c from master.
2013-02-25[1.5.x] Minor edits to some recently-added admin docs.Carl Meyer
Backport of 8f839aaa180f from master.
2013-02-25[1.5.x] Changed testing strategy used in 6b03179e.Aymeric Augustin
Avoid polluting the app cache as it causes unrelated test failures. Refs #19688. Backport of 7b49da1 from master.
2013-02-24[1.5.x] Fixed #19688 -- Allow model subclassing with a custom metaclass ↵Simon Charette
using six.with_metaclass Backport of 6b03179e126d4df01623dccc162c1579f349e41e from master. Although we're post RC 2, I'm backporting this because it's arguably a major bug in a new feauture that will prevent several well-known third-party apps from being ported to Python 3.
2013-02-24[1.5.x] Fixed #19394 --Added note about auth forms and custom user models.Ben Konrath
2013-02-23[1.5.x] Made a small clarification in tutorial.Preston Holmes
refs #19889
2013-02-23[1.5.X] Added an example of "default" database dictionary left blank; refs ↵Tim Graham
#19775. Thanks wsmith323 for the patch. Backport of cf890c110e from master
2013-02-23[1.5.X] Fixed #19402 - Clarified purpose of CustomUser.REQUIRED_FIELDSTim Graham
Thanks pydanny for the report and ptone for the patch. Backport of 24a2bcbcdd from master
2013-02-23[1.5.x] Fixed #19895 -- Made second iteration over invalid queryset raise an ↵Grzegorz Nosek
exception too When iteration over a queryset raised an exception, the result cache remained initialized with an empty list, so subsequent iterations returned an empty list instead of raising an exception Backport of 2cd0edaa477b327024e4007c8eaf46646dcd0f21 from master.
2013-02-23[1.5.X] Fixed #19579 - Documented that "providing_args" is purely ↵Tim Graham
documentational. Backport of 4c05fdb467 from master
2013-02-23[1.5.X] Fixed #19880 - Fixed an error in the form wizard initial_dict example.Tim Graham
Thanks almalki for the report. Backport of 9b97f01dea from master
2013-02-23[1.5.X] Fixed #19775 - Clarified requirements of the "default" database.Tim Graham
Thanks monkut for the report and wsmith323 for the patch. Backport of 31bcb102b2 from master
2013-02-23[1.5.X] Updated example to use staticfiles static template tag, thanks ↵Tim Graham
reinout for the suggestion, refs #19675. Backport of f3ae67a62f from master
2013-02-23[1.5.x] Fixed #19752 - Changed Postgres version numbers to 9.x to avoid ↵Tim Graham
having to update them each minor release. Backport of 8d17114899 from master.
2013-02-23[1.5.X] Updated static file example in overview to use static template tag, ↵Tim Graham
refs #19675. Thanks jezdez for the note. Backport of 9e959e8d58 from master
2013-02-23[1.5.X] Fixed #19675 - Added mention of static files to overview.Tim Graham
Thanks Dwight Gunning for the patch. Backport of a61dbd6219 from master
2013-02-23[1.5.x] Fixed #19887 - Noted when callables may be used in ModelAdmin.fields ↵Tim Graham
and ModelAdmin.fieldset. Thanks Patrick Strasser for the suggestion and Zbigniew Siciarz for the patch. Backport of 722683f508 from master.
2013-02-23[1.5.x] Changed "mysite/mytemplates/" -> "mysite/templates" in tutorial.Tim Graham
Thanks James Pic. Backport of 1b7fb29dfb from master.
2013-02-23[1.5.x] Fixed #17094 - Typo in class-based views doc.Tim Graham
Thanks alej0 for the report. Backport of c89717fabe from master.
2013-02-23[1.5.X] Fixed #19850 -- Use configured staticfiles storage to find the URL ↵Jannis Leidel
of a static file in the admin.
2013-02-23[1.5.x] Fixed Oracle regression in last_executed_query() with unicode stringsAnssi Kääriäinen
The regression was likely caused by the fix in #19606 which adjusted Oracle's unicode detection, though it seems this would have been an issue in some configurations even before. Backpatch of ce094e570e0ff085b88b2303e25124331f558e45
2013-02-23[1.5.x] Fixed empty strings + to_field regression on OracleAnssi Kääriäinen
Querying the reverse side of nullable to_field relation, where both sides can contain null values resulted in incorrect results. The reason was not detecting '' as NULL. Refs #17541, backpatch of 09fcb70c804b76fccc8fc0ac545873e5ab30c00a.
2013-02-20[1.5.x] Fixed #19868 -- Clarified purpose of custom user examplePreston Holmes
2013-02-21[1.5.x] Made a couple of selenium tests wait for page loadedAnssi Kääriäinen
The admin_widgets tests were issuing click() to the browser but didn't wait for the effects of those clicks. This caused the resulting request to be processed concurrently with the test case. When using in-memory SQLite this caused weird failures. Also added wait_page_loaded() to admin selenium tests for code reuse. Fixed #19856, backpatch of 50677b29af39ca670274fb45087415c883c78b04
2013-02-20[1.5.x] Fixed #19672 -- Error in negated Q() filteringAnssi Kääriäinen
There was a variable overwrite error in negated join filtering. This happened when add_filter() was adding the IS NULL condition to the WHERE clause. This is not a backport from master as there have been some other refactorings which made this patch irrelevant. The patch is from Ian Kelly.
2013-02-19[1.5.x] Fixed #19857 -- Fixed broken docs link in project template.Carl Meyer
2013-02-19Don't characterize XML vulnerabilities as DoS-only.Carl Meyer
2013-02-19[1.5.X] Fixed #19728 - Updated API stability doc to reflect current meaning ↵Tim Graham
of "stable". Backport of 132d5822b0 from master
2013-02-19[1.5.X] Fixed typo in docs/topics/class-based-views/generic-display.txtStefan "hr" Berder
Backport of 22d5e4b4af from master
2013-02-19[1.5.x] Bump version numbers for security release.1.5c2James Bennett
2013-02-19[1.5.x] Update 1.5 release notes for XML and formset fixes.Carl Meyer
2013-02-19[1.5.x] Added a default limit to the maximum number of forms in a formset.Aymeric Augustin
This is a security fix. Disclosure and advisory coming shortly.
2013-02-19[1.5.x] Checked object permissions on admin history view.Carl Meyer
This is a security fix. Disclosure and advisory coming shortly. Patch by Russell Keith-Magee.
2013-02-19[1.5.x] Restricted the XML deserializer to prevent DoS attacks.Carl Meyer
This is a security fix. Disclosure and advisory coming shortly.
2013-02-19[1.5.x] Added a new required ALLOWED_HOSTS setting for HTTP host header ↵Carl Meyer
validation. This is a security fix; disclosure and advisory coming shortly.
2013-02-18[1.5.X] Fixed #19717 - Removed mentions of "root QuerySet" in docs.Tim Graham
Thanks julien.aubert.mail@ for the report and James Pic for the patch. Backport of 64d0f89ab1 from master
2013-02-18[1.5.x] Corrected INSTALLED_APPS syntax in 1.5 release notes.Simon Meers
Backport of 9c2066d5 from master.
2013-02-16[1.5.x] Fixed #19824 - Corrected the class described for Field.primary_key ↵Tim Graham
from IntegerField to AutoField. Thanks Keryn Knight. Backport of 218bbef0c4 from master
2013-02-16[1.5.x] Fixed #19812 - Removed a duplicate phrase in the widget docs.Tim Graham
Thanks diegueus9 for the report and itsallvoodoo for the draft patch. Backport of 7a80904b00 from master
2013-02-16[1.5.x] Fixed #19719 - Removed misleading example from ModelForm documentationAlex Hunley
Backport of 976dc07baf from master
2013-02-16[1.5.x] Fixed #19833 -- Fixed import parameter encoding in get_runnerClaude Paroz
Thanks Danilo Bargen for the report. Backport of 63236161 from master.
2013-02-16[1.5.x] Refs #14881 -- Document that User models need to have an integer ↵Russell Keith-Magee
primary key. Thanks to Kaloian Minkov for the reminder about this undocumented requirement. (cherry picked from commit 91c26eadc9b4efa5399ec0f6c84b56a3f8eb84f4)