summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-02-06Bump version number for 1.6.2.1.6.2Jacob Kaplan-Moss
2014-02-06Updated 1.6.2 release notes for release (and linkified tickets).Jacob Kaplan-Moss
2014-02-05[1.6.x] Added missing items to 1.6.2 release notes.Tim Graham
Backport of b17c75564f from master
2014-02-05[1.6.x] Added previous commit to 1.6.2 release notes.Baptiste Mispelon
Backport of 2dd88f0687c2bc9c457816a011bf5e46f6bf84ad from master.
2014-02-05[1.6.x] Revert "Fixed #20296 -- Allowed SafeData and EscapeData to be lazy"Baptiste Mispelon
This reverts commit 2ee447fb5f8974b432d3dd421af9a242215aea44. That commit introduced a regression (#21882) and didn't really do what it was supposed to: while it did delay the evaluation of lazy objects passed to mark_safe(), they weren't actually marked as such so they could end up being escaped twice. Refs #21882. Backport of a878bf9b093bf15d751b070d132fec52a7523a47 from master.
2014-02-04[1.6.x] Fixed #21748 -- join promotion for negated AND conditionsAnssi Kääriäinen
Made sure Django treats case .filter(NOT (a AND b)) the same way as .filter((NOT a OR NOT b)) for join promotion. Heavily modified backpatch of 35cecb1ebd0ccda0be7a518d1b7273333d26fbae from master. Conflicts: django/db/models/sql/query.py tests/queries/tests.py
2014-02-04[1.6.x] Fixed #21413 -- resolve_columns fields misalignmentAnssi Kääriäinen
Backpatch of 9918c11114ac3ec9622631558ef26ebf3919cb69 from master. Conflicts: django/db/models/sql/compiler.py tests/model_inheritance_regress/tests.py
2014-01-30[1.6.x] Made Oracle introspect FloatFields correctlyShai Berger
Broke InspectDBTestCase.test_field_types in two: - a test_number_field_types, which now passes on Oracle too - a test_field_types, for all non-numeric fields, which is still expected to fail Also made some pep8 fixes in the tests file. Refs #19884 Thanks Tim Graham for review. Backport of e9d12ba from master
2014-01-30[1.6.x] Made Oracle introspect boolean fieldsShai Berger
Refs #19884 Backport of ad975c64fc from master
2014-01-29[1.6.x] Fix typo CRSF -> CSRFIan Foote
Backport of af64f829d7 from master
2014-01-26[1.6.x] Added release note stubs for 1.5.6 and 1.4.11.Tim Graham
Backport of dfa28981ce from master
2014-01-26[1.6.x] Added missing items to 1.6.2 release notes.Tim Graham
Backport of 2cbe1e28fb from master
2014-01-26[1.6.x] Fixed #21823 -- Upgraded six to 1.5.2Tim Graham
Backport of 780ae7e9f8 from master.
2014-01-26[1.6.x] Fixed #21880 -- Added missing items to django.utils.timezone.__all__.Aymeric Augustin
Thanks Wim for the report. Backport of 2b154ae from master.
2014-01-26[1.6.x] Fixed typo. Refs #21836.Aymeric Augustin
Backport of 8e1fc03 from master
2014-01-25[1.6.x] Fixed #21836 -- Improved transaction docs about autocommit modeChris Jerdonek
Clarified that queries in autocommit mode are committed immediately only if a transaction has not already been started. Added to the main transaction docs that Django's TestCase class implicitly wraps its tests in transactions. Backport of 798fd59f from master.
2014-01-24[1.6.x] Fixed #21869 -- Fixed docs building with Sphinx 1.2.1.Tim Graham
Thanks tragiclifestories for the report. Backport of e1d18b9d2e from master
2014-01-24[1.6.x] Fixed #21824 -- Added reference to LTS in docs/internals/security.txtJames Turley
Backport of 4d8209431d from master
2014-01-24[1.6.x] Fixed #21787 -- regression in MTI .exclude() queriesAnssi Kääriäinen
Backpatch of 78a2617703bc1dada409f126db5c3db214913ff4 from master.
2014-01-23[1.6.x] Fixed some punctuation; thanks Chris Jerdonek.Tim Graham
Backport of 81830ce34f from master
2014-01-22[1.6.x] Always use parentheses when documenting a method with no arguments.Baptiste Mispelon
Backport of 05d36dc06e6d767bb28993c65a54b703f319a386 from master.
2014-01-22[1.6.x] Don't show `self` in the list of arguments of a method.Baptiste Mispelon
This is consistent with Python's official documentation and it's a sphinx recommendation too[1]. [1] http://sphinx-doc.org/markup/desc.html#dir-method Refs #21855. Backport of 79e1d6ebd70898d514a44b85648e3d24104c4243 from master.
2014-01-22[1.6.x] Fixed #20834 -- Described how caching of user permissions works.Tim Graham
Thanks Giggaflop and Jennifer Casavantes. Backport of 5f9790072d from master
2014-01-22[1.6.x] Added a link to the 1.6 release notes which also fixed a rendering ↵Tim Graham
issue. Backport of 2171341162 from master
2014-01-22[1.6.x] Fixed #21529 -- Noted that {% url %} encodes its output (refs #13260).Tim Graham
Backport of dfc092622e from master
2014-01-22[1.6.x] Fixed #21726 -- Clarified that password should not be included in ↵Tim Graham
REQUIRED_FIELDS. Thanks russellm for the report. Backport of 6f06c749b7 from master
2014-01-20[1.6.x] Fixed #21834 -- Clarifed usage of template_name in tutorial part 4.Tim Graham
refs #21195 on master.
2014-01-19[1.6.x] Added a note about LTS releases.Jacob Kaplan-Moss
Backport of a44cbca2a5f1388c6511dad48443877fa660845a from master.
2014-01-17[1.6.x] Fixed #18942 -- Clarified usage of {% get_static_prefix %}.Tim Graham
Thanks Aymeric for the suggestion. Backport of bc7668eb51 from master
2014-01-17[1.6.x] Fixed #13116 -- Described scope of variables created by {% url ... ↵Tim Graham
as var %} syntax. Thanks leif_p for the suggestion. Backport of 4a5aac47a6 from master
2014-01-17[1.6.x] Fixed #20052 -- Discouraged use of Jython given the current state of ↵Tim Graham
django-jython. Thanks Josh Juneau (maintainer of django-jython) for the review. Backport of a67e327db5 from master
2014-01-16[1.6.x] Fixed #18285 -- Documented that bulk_create doesn't work with M2M ↵Tim Graham
relationships. Backport of 9173d2cb74 from master
2014-01-16[1.6.x] Fixed #21768 -- Corrected TemplateView context section.Tim Graham
Thanks nedbatchelder for the report and claudep for the patch. Backport of c05b2f58e7 from master
2014-01-16[1.6.x] Fixed #21727 -- Added some links to help clarify topics/auth/default.txtTim Graham
Thanks daGrevis for the suggestion. Backport of d35f2bfd5b from master
2014-01-16[1.6.x] Fixed #21747 -- Added {% elif %} to template topics guide.Tim Graham
Thanks gcc for the suggestion. Backport of 9e5033b302 from master
2014-01-15[1.6.x] Fixed typo in storage docsKevin Wood
Backport of 82f466b571 from master
2014-01-12[1.6.x] Fixed a test that was failing with PostGIS.Aymeric Augustin
Fixed #21452 again.
2014-01-12[1.6.x] Fixed #21452 -- Non-autocommit connections to PostgreSQL.Aymeric Augustin
When settings.DATABASES['default']['AUTOCOMMIT'] = False, the connection wasn't in autocommit mode but Django pretended it was. Thanks Anssi for analysing this issue. Refs #17062. Backport of 1afe7488 from master
2014-01-12[1.6.x] Fixed a test isolation issue. Refs #17062.Aymeric Augustin
This test could change settings.DATABASES['default']['TIME_ZONE'] and didn't restore the previous value. Backport of 1c24096f from master.
2014-01-11[1.6.x] Fixed #21750 -- Fixed regression introduced by 4befb30.Loic Bistuer
Validating STATIC_ROOT in StaticFilesStorage.__init__ turned out to be problematic - especially with tests - because the storage refuses to work even if there are no actual interactions with the file system, which is backward incompatible. Originally the validation happened in the StaticFilesStorage.path method, but that didn't work as expected because the call to FileSystemStorage.__init__ replaced the empty value by a valid path. The new approach is to move back the check to the StaticFilesStorage.path method, but ensure that the location attribute remains None after the call to super. Refs #21581. Backport of 1e9e7351f8 from master
2014-01-10[1.6.x] Fixed docstring typo in django/forms/forms.py.Marc Sibson
Backport of 81bb8d1220 from master
2014-01-10[1.6.x] Fixed typo in docstrings of MonthArchiveViews.Michael Blatherwick
Backport of 270c9fe488 from master
2014-01-04[1.6.x] Fixed #21730 -- Removed superfluous db_index in custom auth docsClaude Paroz
Thanks rafalp for the report. Backport of c717ebbfec from master.
2014-01-03[1.6.x] Fixed a sentence in the session security docs; thanks claudep.Tim Graham
Backport of 4d27d311f6 from master
2014-01-03[1.6.x] Fixed #21728 -- Corrected an inadvertent path change in ↵Tianyi Wang
docs/intro/contributing.txt. Backport of e6800ea136 from master
2014-01-02[1.6.x] Fixed #21319 -- Added documentation for the Form.fields attribute.Vajrasky Kok
Thanks pydanny for the report. Also, added documentation about base_fields attribute and its difference with fields attribute. Backport of ea83102d0f from master
2014-01-02[1.6.x] Fixed #21722 -- Added a warning for avoiding XSS vulnerabilities ↵Tim Graham
when reusing built-in filters. Thanks Stephen McDonald for the suggestion. Backport of 07711e9997 from master
2014-01-02[1.6.x] Fixed typos. Changed grammar.Frank Tobia
Backport of 6dd8631617 from master
2014-01-02[1.6.x] Fixed minor typos.Nathan Smith
Backport of 44d40ba521 from master
2014-01-01[1.6.x] Fixed set literals for python 2.6Florian Apolloner