summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-10-22[1.6.x] Bump version number for 1.6 release candidate.1.6c1James Bennett
2013-10-22[1.6.x] Fixed #21307 -- Moved TransRealMixin to django.test.utils.Ramiro Morales
51d2e1fb23 from master.
2013-10-22[1.6.x] Added 1.5.5 and 1.4.9 release notesTim Graham
Backport of 2eb8f15516 from master
2013-10-22[1.6.x] Fixed #21304 -- Typo in docs/topics/testing/advanced.txtTim Graham
Thanks joao at silvaneves.org for the report. Backport of 9704c49d59 from master
2013-10-22[1.6.x] Decode from UTF-8 explicitly when reading a text file in makemessages.Ramiro Morales
This shows itself with Python 3 under Windows where UTF-8 usually isn't the default file I/O encoding and caused one failure and three errors in our test suite under that platform setup. b5f52647fe from master.
2013-10-22[1.6.x] Fixed an I18N test class tearDown method.Ramiro Morales
a3690168cb from master.
2013-10-21[1.6.x] Fixed #21249 -- variable name typo in compiler.get_grouping()Anssi Kääriäinen
The typo could have consequences in exceptional cases, but I didn't figure out a way to actually produce such a case, so not tests. Report & patch by Michael Manfre. Backport of 86c248aa64 from master
2013-10-21[1.6.x] Added docs for the hasher's iteration count changes.Tim Graham
Backport of 28b70425afb2fb8bcbec09d249e37fa786f8a155 from master.
2013-10-21[1.6.x] Force update of the password on iteration count changes.Florian Apolloner
Backport of 7d0d0dbf26a3c0d16e9c2b930fd6d7b89f215946 from master.
2013-10-21[1.6.x] Fixed #21253 -- PBKDF2 with cached HMAC keyFlorian Apolloner
This gives a 2x speed increase compared to the existing implementation. Thanks to Steve Thomas for the initial patch and Tim Graham for finishing it. Backport of 1e4f53a6eb8d1816e51eb8bd8f95e704f6b89ead from master.
2013-10-21[1.6.x] Fixed #21296 -- Added docs for PostgreSQL and unix domains sockets.Riccardo Magliocchetti
Backport of 1e39982b6e from master
2013-10-19[1.6.x] Fixed #21291 -- Ensured inactive users cannot reset their passwordsClaude Paroz
Thanks kz26 for the report and the suggested fix. Refs #19758. Backport of 5f5259036 from master.
2013-10-19[1.6.x] Cleaned formatting/comments in PasswordResetFormTestClaude Paroz
Backport of 59a880863 from master.
2013-10-18[1.6.x] Fixed #21212 -- Documented the reverse name for OneToOneField.Juergen Schackmann
Thanks bjb at credil.org for the report. Backport of f8632572ad from master
2013-10-18[1.6.x] Added a warning regarding session security and subdomains.Tim Graham
Backport of a3372f67cb from master
2013-10-18[1.6.x] Fixed ReST error in 1.6. release notes.Tim Graham
Backport of 651bb73ab3 from master
2013-10-18[1.6.x] Fixed bug causing CSRF token not to rotate on login.Tim Graham
Thanks Gavin McQuillan for the report. Backport of ac4fec5ca2 from master
2013-10-18[1.6.x] Fixed #21284 -- Prevented KeyError swallowing in fetch_commandClaude Paroz
Thanks wildfire for the report. Backport of 3514bcb251 from master.
2013-10-17[1.6.x] Removed 1.6 release note text regarding password limit length.Tim Graham
This changed was reverted in 5d74853e156105ea02a41f4731346dbe272c2412. Backport of d97bec5ee3 from master
2013-10-17[1.6.x] Fixed #21282 -- Made HttpResponse.serialize_headers accept latin-1Claude Paroz
Thanks Raphaël Barrois for the report and the initial patch and Aymeric Augustin for the review. Backport of a14f087233 from master.
2013-10-15[1.6.x] Improvement on InlineFormSet doc, refs #21006Tianyi Wang
Backport of 944a2bb7c1 from master
2013-10-15[1.6.x] Fixed #21006 -- Added example code for overriding methods on an ↵Tianyi Wang
InlineFormSet. Thanks treysta at gmail.com for the suggestion. Backport of 9bfe66164e from master
2013-10-14[1.6.x] Fixed #21223 -- Added form.id_for_label to topic guide.Sorcha Bowler
Thanks ebertti at yahoo.com.br for the suggestion. Backport of 018e2c055a from master
2013-10-14[1.6.x] Fixed #21269 -- Don't crash when CommandError contains non-asciiClaude Paroz
Thanks kontakt@eikefoken.de for the report. Backport of 42a67ec1cd from master.
2013-10-14[1.6.x] Fixed #20962 -- Documented that template tag render() may raise ↵Bouke Haarsma
exceptions. Thanks Keryn Knight for the report. Backport of e077224f4a from master
2013-10-14[1.6.x] Clarfied the ModelForm docs with respect to generated vs. declared ↵Loic Bistuer
fields. The ModelForm docs suggested that fields defined declaratively override default fields generated from the form Meta. This is conceptually wrong, especially with inheritance in mind. Meta is usually defined on the topmost ModelForm subclass, while fields can come from anywhere in the MRO, especially base classes; therefore we suggested that something defined in a base class override something from a subclass. This patch rephrases the docs around the idea that Meta is used to generate *missing* fields. Refs #8620, #19617. Thanks @mjtamlyn and @timgraham for the review. Backport of 54cd930baf from master
2013-10-14[1.6.x] Fixed #21210 -- Documented when runserver doesn't auto-restart.Bouke Haarsma
Thanks gergely at polonkai.eu for the suggestion. Backport of 9b7d38ed5a from master
2013-10-14[1.6.x] Fixed #21264 -- Incorrect RST usage in docsBouke Haarsma
Backport of 8fc63087f6 from master
2013-10-14[1.6.x] Fixed #21027 -- Updated tutorial 5 docs to link to management shell ↵Max Vizard
command page. Backport of 13ddf0e002 from master
2013-10-14[1.6.x] Imported custom user classes in tests depending on itClaude Paroz
Without those imports, affected test files cannot be run independently. Refs #21164. Backport of ef22d512b5 from master.
2013-10-13[1.6.x] Fixed #21256 -- Error in datetime_safe.datetime.combine.Aymeric Augustin
Backport of d9b6fb8 from master
2013-10-13Fixed #21198 -- Prevented invalid use of @python_2_unicode_compatible.Aymeric Augustin
Thanks jpic for the report and chmodas for working on a patch. Reverts 2ea80b94. Refs #19362. Conflicts: tests/utils_tests/test_encoding.py
2013-10-13[1.6.x] Fixed #19560 -- Identified field in warning for naive datetime.Aymeric Augustin
Thanks gcc for the report and vajrasky for the patch. Backport of 570d9c2678d6cc564f9c70138554af8f7ce9ec49 from master.
2013-10-12[1.6.x] Forms docs: More emphasis in 'id' value customizability.Ramiro Morales
18ea1c473b form master.
2013-10-11[1.6.x] Fixed #15582 -- Documented how TransactionTestCase.multi_db affects ↵Tim Graham
fixtures. Thanks slinkp for the suggestion. Backport of dd839a2dfd from master
2013-10-11[1.6.x] Minor edits to docs/topics/db/queries.txt.Cody Scott
Backport of 8bfc7cc64c from master
2013-10-10[1.6.x] Small improvements to docs/topics/db/models.txtCody Scott
Backport of 695bc0d191 from master
2013-10-09[1.6.x] Updated auth translation templateClaude Paroz
2013-10-09[1.6.x] Fixed grammar/typos in auth customization docsClaude Paroz
Backport of 1b9c72fc4f from master.
2013-10-09[1.6.x] Fixed #21243 -- Corrected exception message in multiple database tests.Russell Keith-Magee
Thanks to vajrasky for the report and patch. Backport of a971d19 from trunk.
2013-10-08[1.6.x] Fix grammatical errors in email documentationDan Loewenherz
Backport of 43f213e475 from master
2013-10-08[1.6.x] Fixed #21164 -- Added documentation for issue with test users.Russell Keith-Magee
The package renaming restores the older package names (which were also the documented package names). This doesn't affect test discovery because the module in question doesn't contain any tests. Thanks to Carl for the design discussion. Backport of ddb5385 from master.
2013-10-08[1.6.x] Refs #21197 -- Clarified upgrade check message.Russell Keith-Magee
Thanks to Carl and Shai for the discussion. Backport of 8ff4303 from master.
2013-10-07[1.6.x] Re-added link to SQLite notes from DB section of install doc.Ramiro Morales
67f5dffbec from master.
2013-10-07[1.6.x] Fixed #21235 -- Disabled savepoints for old versions of SQLite.Aymeric Augustin
Thanks Ramiro for the report. Backport of 91547772 from master.
2013-10-03[1.6.x] Fixed #21165 -- Fix test for syndication feed timestamp field on ↵Ramiro Morales
Windows. Thanks Michael Manfre for the report, Raphaël Barrois for the patch and Claude Paroz, Aymeric Augustin for the reviews. Refs #7936 62dfd79f8b from master.
2013-10-03[1.6.x] Fixed #21218 -- Typo on docs/howto/upgrade-version.txtTim Graham
Thanks ryan at ryangallen.com for the report. Backport of 36e220f923 from master
2013-10-02[1.6.x] Fixed #21122 -- Improved clean up of test temp directory on WindowsKevin Christopher Henry
- Fixed test that didn't close the files it opened - Caught and handled exception when temp directory cannot be removed Backport of 978e1351a6 of master
2013-10-02[1.6.x] Fixed #10913 -- Documented how related_name affects QuerySet filteringTim Graham
Thanks neithere for the suggestion. Backport of 75bb6ba966 from master
2013-10-02[1.6.x] Clarified session replay attack differences with cookie backend.Tim Graham
Backport of 00a0d3de02 from master