| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-05-19 | Fixed #22638 -- Changed CookieWizardView to ignore invalid cookies | Erik Romijn | |
| 2014-05-19 | Revert "Fixed #20477: Allowed settings.FORMAT_MODULE_PATH to be a list of ↵ | Tim Graham | |
| modules." This reverts commit 950b6de16ac2f8135612f2ed5984c090dd8e4dcf. | |||
| 2014-05-19 | Fixed #20477: Allowed settings.FORMAT_MODULE_PATH to be a list of modules. | Martin Brochhaus | |
| Previously the FORMAT_MODULE_PATH setting only accepted one string (dotted module path). This is useful when using several reusable third party apps that define new formats. We can now use them all and we can even override some of the formats by providing a project-wide format module. | |||
| 2014-05-18 | Fixed #21799 - Modified loaddata --ignorenonexistent to ignore models. | Esau Rodriguez | |
| 2014-05-16 | Fixed #16245 -- Included traceback in send_robust()'s response | Unai Zalakain | |
| Exceptions from the (receiver, exception) tuples returned by ``send_robust()`` now have always their traceback attached as their ``__traceback__`` argument. | |||
| 2014-05-16 | Added stub release notes for 1.6.6. | Tim Graham | |
| 2014-05-16 | Fixed #15716 - Authentication backends can short-circuit authorization. | Jorge C. Leitão | |
| Authorization backends can now raise PermissionDenied in "has_perm" and "has_module_perms" to short-circuit authorization process. | |||
| 2014-05-16 | Remove old compatibility shims from d.c.gis. | Marc Tamlyn | |
| 2014-05-15 | Minor edits to latest release notes. | Tim Graham | |
| 2014-05-14 | Added release notes for 1.4.13, 1.5.8, 1.6.5. | Jacob Kaplan-Moss | |
| 2014-05-13 | Removed an unnecessary anchor in the docs. | Tim Graham | |
| 2014-05-13 | Fixed spelling mistake and added a word to the word list. | Tim Graham | |
| 2014-05-13 | Fixed #22533 -- Added label_suffix parameter to form fields. | Julen Ruiz Aizpuru | |
| Fields can now receive the `label_suffix` attribute, which will override a form's `label_suffix`. This enhances the possibility to customize form's `label_suffix`, allowing to use such customizations while using shortcuts such as `{{ form.as_p }}`. Note that the field's own customization can be overridden at runtime by using the `label_prefix` parameter to `BoundField.label_tag()`. Refs #18134. | |||
| 2014-05-12 | Added 1.6.5 release note for refs #22508. | Tim Graham | |
| 2014-05-11 | Fixed #20936 -- When logging out/ending a session, don't create a new, empty ↵ | Matt Robenolt | |
| session. Previously, when logging out, the existing session was overwritten by a new sessionid instead of deleting the session altogether. This behavior added overhead by creating a new session record in whichever backend was in use: db, cache, etc. This extra session is unnecessary at the time since no session data is meant to be preserved when explicitly logging out. | |||
| 2014-05-10 | Fixed a few release notes typos. | Ramiro Morales | |
| 2014-05-07 | Updated some docs for the delayed deprecation of legacy table creation; refs ↵ | Tim Graham | |
| #22340. | |||
| 2014-05-07 | Forward ported docs of security issues from df81625da6. | Tim Graham | |
| 2014-05-06 | Improve docs around deconstruction/serialisation (refs #22337) | Andrew Godwin | |
| 2014-05-05 | Fixed #22429 -- Incorrect SQL when using ~Q and F | Anssi Kääriäinen | |
| 2014-05-02 | Fixed #22565 -- Prevented pgettext_lazy crash with bytestring input | Claude Paroz | |
| Thanks ygbo for the report. | |||
| 2014-05-01 | Fixed #22551 -- Made oracle backend method Python 3 compatible | Claude Paroz | |
| Thanks fatal10110 at gmail.com for the report. The fix is 1.6-only because that code has been refactored in 1.7 (6983201cfb). 'Docs-only' forward port of 120a98120 from 1.6.x. | |||
| 2014-04-30 | Fixed #19195 -- Allow explicit ordering by a relation `_id` field. | Simon Charette | |
| Thanks to chrisedgemon for the report and shaib, akaariai and timgraham for the review. | |||
| 2014-04-30 | Fixed #22442 -- Provided additional documentation regarding id fields clashing. | Tim Graham | |
| Thanks benjaoming for raising the issue and Loic for the examples. | |||
| 2014-04-28 | Added stub release notes for 1.6.5. | Tim Graham | |
| 2014-04-28 | Added dates to release notes of today's release. | Tim Graham | |
| 2014-04-28 | Revert "Fixed #15179 -- middlewares not applied for test client login()" | Tim Graham | |
| This reverts commit 4fdd51b73240bf9c8d9472fcc45df699f0714755. See the ticket for concerns with this implementation; it will be revisited. | |||
| 2014-04-27 | Improved formatting and links of migration docs. | Tim Graham | |
| 2014-04-27 | Fixed #22526 -- Added note about check() method to 1.7 release notes. | Tim Graham | |
| Thanks kevin-brown for the report. | |||
| 2014-04-26 | Fixed #3214 -- Stopped parsing SQL with regex. | Aymeric Augustin | |
| Avoided introducing a new regex-based SQL splitter in the migrations framework, before we're bound by backwards compatibility. Adapted this change to the legacy "initial SQL data" feature, even though it's already deprecated, in order to facilitate the transition to migrations. sqlparse becomes mandatory for RunSQL on some databases (all but PostgreSQL). There's no API to provide a single statement and tell Django not to attempt splitting. Since we have a more robust splitting implementation, that seems like a good tradeoff. It's easier to add a new keyword argument later if necessary than to remove one. Many people contributed to both tickets, thank you all, and especially Claude for the review. Refs #22401. | |||
| 2014-04-26 | Updated doc links to point to Python 3 documentation | Claude Paroz | |
| 2014-04-26 | Fixed #22328 -- Added --exclude option to compilemessages and makemessages. | Ana Krivokapic | |
| 2014-04-25 | Fixed a confusing heading in applications docs. | Aymeric Augustin | |
| Refs #22422. | |||
| 2014-04-25 | Fixed #22422 -- Moved information about the application loading process to ↵ | Víðir Valberg Guðmundsson | |
| refs/applications.txt. | |||
| 2014-04-25 | Fixed #22515 -- Fixed the object_id of the LogEntry that's created after a ↵ | Tim Graham | |
| user password change in the admin. Thanks ross at servercode.co.uk for the report. | |||
| 2014-04-23 | Fixed #22486 -- Restored the ability to reverse views created using ↵ | Preston Timmons | |
| functools.partial. Regression in 8b93b31487d6d3b0fcbbd0498991ea0db9088054. Thanks rcoup for the report. | |||
| 2014-04-23 | Various documentation typo/spelling fixes | Marti Raudsepp | |
| Errors detected by Topy (https://github.com/intgr/topy), all changes verified by hand. | |||
| 2014-04-22 | Added 1.6.4 release note stub. | Tim Graham | |
| 2014-04-21 | Added information on resolved security issues to release notes. | Erik Romijn | |
| 2014-04-19 | Fixed #22417 -- Added additional documentation for refs #16969. | Tim Graham | |
| Thanks Jon Foster for the report. | |||
| 2014-04-18 | Added some missing items to the 1.6.3 release notes. | Tim Graham | |
| 2014-04-18 | Added missing versionadded annotation and tweaked release note; refs #22465. | Tim Graham | |
| 2014-04-18 | Fixed #22465 -- New assertion assertJSONNotEqual | amatellanes | |
| 2014-04-17 | Fixed #22444 -- Marked initial SQL/fixture loading as deprecated. | Tim Graham | |
| Thanks Karen Tracey for the report. | |||
| 2014-04-16 | Revert "Fixed #22401 -- Deprecated regular expression parsing of initial SQL ↵ | Tim Graham | |
| in favor of installing sqlparse." This reverts commit 071c9337750b296d198cced56f3ffad0e176afb6. This introduced a regression on MySQL and custom SQL is deprecated. | |||
| 2014-04-14 | Fixed #22369 -- Added count parameter to assertTemplateUsed | Jacob R. Rothenbuhler | |
| 2014-04-13 | Fixed #21760 -- prefetch_related used an inefficient query for reverse FK. | valtron | |
| Regression introduced by commit 9777442. Refs #21410. | |||
| 2014-04-10 | Fixed #22364 -- Sanitized getpass input in changepassword. | John Paulett | |
| Python 2 getpass on Windows does not accept unicode, even when containing on ASCII characters. Related #190807. | |||
| 2014-04-10 | Documentation fixes for the select_for_update change. | Shai Berger | |
| Refs #22343; thanks Tim Graham for the fixes. | |||
| 2014-04-10 | Fixed #22343 -- Disallowed select_for_update in autocommit mode | Shai Berger | |
| The ticket was originally about two failing tests, which are fixed by putting their queries in transactions. Thanks Tim Graham for the report, Aymeric Augustin for the fix, and Simon Charette, Tim Graham & Loïc Bistuer for review. | |||
