summaryrefslogtreecommitdiff
path: root/docs/releases
AgeCommit message (Collapse)Author
2014-05-19Fixed #22638 -- Changed CookieWizardView to ignore invalid cookiesErik Romijn
2014-05-19Revert "Fixed #20477: Allowed settings.FORMAT_MODULE_PATH to be a list of ↵Tim Graham
modules." This reverts commit 950b6de16ac2f8135612f2ed5984c090dd8e4dcf.
2014-05-19Fixed #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-18Fixed #21799 - Modified loaddata --ignorenonexistent to ignore models.Esau Rodriguez
2014-05-16Fixed #16245 -- Included traceback in send_robust()'s responseUnai Zalakain
Exceptions from the (receiver, exception) tuples returned by ``send_robust()`` now have always their traceback attached as their ``__traceback__`` argument.
2014-05-16Added stub release notes for 1.6.6.Tim Graham
2014-05-16Fixed #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-16Remove old compatibility shims from d.c.gis.Marc Tamlyn
2014-05-15Minor edits to latest release notes.Tim Graham
2014-05-14Added release notes for 1.4.13, 1.5.8, 1.6.5.Jacob Kaplan-Moss
2014-05-13Removed an unnecessary anchor in the docs.Tim Graham
2014-05-13Fixed spelling mistake and added a word to the word list.Tim Graham
2014-05-13Fixed #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-12Added 1.6.5 release note for refs #22508.Tim Graham
2014-05-11Fixed #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-10Fixed a few release notes typos.Ramiro Morales
2014-05-07Updated some docs for the delayed deprecation of legacy table creation; refs ↵Tim Graham
#22340.
2014-05-07Forward ported docs of security issues from df81625da6.Tim Graham
2014-05-06Improve docs around deconstruction/serialisation (refs #22337)Andrew Godwin
2014-05-05Fixed #22429 -- Incorrect SQL when using ~Q and FAnssi Kääriäinen
2014-05-02Fixed #22565 -- Prevented pgettext_lazy crash with bytestring inputClaude Paroz
Thanks ygbo for the report.
2014-05-01Fixed #22551 -- Made oracle backend method Python 3 compatibleClaude 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-30Fixed #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-30Fixed #22442 -- Provided additional documentation regarding id fields clashing.Tim Graham
Thanks benjaoming for raising the issue and Loic for the examples.
2014-04-28Added stub release notes for 1.6.5.Tim Graham
2014-04-28Added dates to release notes of today's release.Tim Graham
2014-04-28Revert "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-27Improved formatting and links of migration docs.Tim Graham
2014-04-27Fixed #22526 -- Added note about check() method to 1.7 release notes.Tim Graham
Thanks kevin-brown for the report.
2014-04-26Fixed #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-26Updated doc links to point to Python 3 documentationClaude Paroz
2014-04-26Fixed #22328 -- Added --exclude option to compilemessages and makemessages.Ana Krivokapic
2014-04-25Fixed a confusing heading in applications docs.Aymeric Augustin
Refs #22422.
2014-04-25Fixed #22422 -- Moved information about the application loading process to ↵Víðir Valberg Guðmundsson
refs/applications.txt.
2014-04-25Fixed #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-23Fixed #22486 -- Restored the ability to reverse views created using ↵Preston Timmons
functools.partial. Regression in 8b93b31487d6d3b0fcbbd0498991ea0db9088054. Thanks rcoup for the report.
2014-04-23Various documentation typo/spelling fixesMarti Raudsepp
Errors detected by Topy (https://github.com/intgr/topy), all changes verified by hand.
2014-04-22Added 1.6.4 release note stub.Tim Graham
2014-04-21Added information on resolved security issues to release notes.Erik Romijn
2014-04-19Fixed #22417 -- Added additional documentation for refs #16969.Tim Graham
Thanks Jon Foster for the report.
2014-04-18Added some missing items to the 1.6.3 release notes.Tim Graham
2014-04-18Added missing versionadded annotation and tweaked release note; refs #22465.Tim Graham
2014-04-18Fixed #22465 -- New assertion assertJSONNotEqualamatellanes
2014-04-17Fixed #22444 -- Marked initial SQL/fixture loading as deprecated.Tim Graham
Thanks Karen Tracey for the report.
2014-04-16Revert "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-14Fixed #22369 -- Added count parameter to assertTemplateUsedJacob R. Rothenbuhler
2014-04-13Fixed #21760 -- prefetch_related used an inefficient query for reverse FK.valtron
Regression introduced by commit 9777442. Refs #21410.
2014-04-10Fixed #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-10Documentation fixes for the select_for_update change.Shai Berger
Refs #22343; thanks Tim Graham for the fixes.
2014-04-10Fixed #22343 -- Disallowed select_for_update in autocommit modeShai 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.