| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-03-10 | Fixed #20008 -- Removed trailing slash in Wikipedia link | Claude Paroz | |
| Thanks senden9 at gmail.com for the report. | |||
| 2013-03-09 | Fixed #9806 -- Allowed editing GeometryField with OpenLayersWidget | Claude Paroz | |
| Thanks Paul Winkler for the initial patch. | |||
| 2013-03-09 | Fixed #19923 -- Display tracebacks for non-CommandError exceptions | Claude Paroz | |
| By default, show tracebacks for management command errors when the exception is not a CommandError. Thanks Jacob Radford for the report. | |||
| 2013-03-08 | Fixed #15363 -- Renamed and normalized to `get_queryset` the methods that ↵ | Loic Bistuer | |
| return a QuerySet. | |||
| 2013-03-07 | Adde two "versionadded" markers, thanks to mYk for noticing. | Alex Gaynor | |
| 2013-03-07 | Added a ManyToManyField(db_constraint=False) option, this allows not ↵ | Alex Gaynor | |
| creating constraints on the intermediary models. | |||
| 2013-03-07 | Fixed #19997 -- Added custom EMPTY_VALUES to form fields | Claude Paroz | |
| Thanks Loic Bistuer for the report and the patch. | |||
| 2013-03-06 | Fixed #19543 -- implemented SimpleLazyObject.__repr__ | Preston Holmes | |
| Thanks to Florian Hahn for the patch | |||
| 2013-03-06 | Update link to django-mssql project | Michael Manfre | |
| 2013-03-06 | Fixed #19994 -- Typo. | Aymeric Augustin | |
| Thanks akshar for the report. | |||
| 2013-03-03 | Removed mentions of regressiontests. | Ramiro Morales | |
| 2013-03-03 | Release notes blurb for 804366327d728d23a9f7a25ff77a6eed3c9f9323. | Ramiro Morales | |
| 2013-03-03 | Fix Typo explicitly. Fixes #19971 | Tobias Carlander | |
| 2013-03-03 | Removed unnecessary imports. | Aymeric Augustin | |
| 2013-03-02 | Fixed #19917 -- Added microseconds in default TIME_INPUT_FORMATS | Claude Paroz | |
| Thanks minddust for the report. | |||
| 2013-03-02 | Fixed #19962 - Added a note about SESSION_EXPIRE_AT_BROWSER_CLOSE and ↵ | Tim Graham | |
| browsers that persist sessions. Thanks David Sanders. | |||
| 2013-03-02 | Fixed #18130 -- Made the isolation level configurable on PostgreSQL. | Aymeric Augustin | |
| Thanks limscoder for the report and niwi for the draft patch. | |||
| 2013-03-02 | Add a BinaryField model field | Claude Paroz | |
| Thanks Michael Jung, Charl Botha and Florian Apolloner for review and help on the patch. | |||
| 2013-03-01 | Fixed #19960 -- Fixed sentence in contrib.auth signals docs | Claude Paroz | |
| Thanks edd at slipszenko.net for the report. | |||
| 2013-02-28 | Fixed #19929 -- Improved error when MySQL doesn't have TZ definitions. | Aymeric Augustin | |
| Thanks tomas_00 for the report. | |||
| 2013-02-28 | Implemented persistent database connections. | Aymeric Augustin | |
| Thanks Anssi Kääriäinen and Karen Tracey for their inputs. | |||
| 2013-02-28 | Fixed #19937 - Typo in class-based views intro. | Tim Graham | |
| 2013-02-28 | 1.5 is no longer "UNDER DEVELOPMENT". | Florian Apolloner | |
| Thanks to Bruno Renie for reporting. | |||
| 2013-02-28 | Added a Trac-related item to the release checklist. | Aymeric Augustin | |
| 2013-02-27 | Merge pull request #858 from intgr/py3kdoc-fix | Tim Graham | |
| Fixed a typo in Python 3 porting guide. | |||
| 2013-02-27 | Fixed #19926 -- Fixed a link to code example in queries docs | Claude Paroz | |
| Thanks Randy Salvo for the report. | |||
| 2013-02-27 | Refactored database exceptions wrapping. | Aymeric Augustin | |
| Squashed commit of the following: commit 2181d833ed1a2e422494738dcef311164c4e097e Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Wed Feb 27 14:28:39 2013 +0100 Fixed #15901 -- Wrapped all PEP-249 exceptions. commit 5476a5d93c19aa2f928c497d39ce6e33f52694e2 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Tue Feb 26 17:26:52 2013 +0100 Added PEP 3134 exception chaining. Thanks Jacob Kaplan-Moss for the suggestion. commit 9365fad0a650328002fb424457d675a273c95802 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Tue Feb 26 17:13:49 2013 +0100 Improved API for wrapping database errors. Thanks Alex Gaynor for the proposal. commit 1b463b765f2826f73a8d9266795cd5da4f8d5e9e Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Tue Feb 26 15:00:39 2013 +0100 Removed redundant exception wrapping. This is now taken care of by the cursor wrapper. commit 524bc7345a724bf526bdd2dd1bcf5ede67d6bb5c Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Tue Feb 26 14:55:10 2013 +0100 Wrapped database exceptions in the base backend. This covers the most common PEP-249 APIs: - Connection APIs: close(), commit(), rollback(), cursor() - Cursor APIs: callproc(), close(), execute(), executemany(), fetchone(), fetchmany(), fetchall(), nextset(). Fixed #19920. commit a66746bb5f0839f35543222787fce3b6a0d0a3ea Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Tue Feb 26 14:53:34 2013 +0100 Added a wrap_database_exception context manager and decorator. It re-throws backend-specific exceptions using Django's common wrappers. | |||
| 2013-02-27 | Fixed #19861 -- Transaction ._dirty flag improvement | Anssi Kääriäinen | |
| There were a couple of errors in ._dirty flag handling: * It started as None, but was never reset to None. * The _dirty flag was sometimes used to indicate if the connection was inside transaction management, but this was not done consistently. This also meant the flag had three separate values. * The None value had a special meaning, causing for example inability to commit() on new connection unless enter/leave tx management was done. * The _dirty was tracking "connection in transaction" state, but only in managed transactions. * Some tests never reset the transaction state of the used connection. * And some additional less important changes. This commit has some potential for regressions, but as the above list shows, the current situation isn't perfect either. | |||
| 2013-02-27 | Fixed #16807 - Added a class-based views intro. | Tim Graham | |
| Thanks Preston Holmes for the text. | |||
| 2013-02-26 | Added a note about creating new doc versions; update stable doc version ↵ | Carl Meyer | |
| before announcement. | |||
| 2013-02-26 | [py3] str.decode does not exist; str.encode was intended | Marti Raudsepp | |
| 2013-02-26 | Added note about updating default docs version in howto-release doc. | Carl Meyer | |
| 2013-02-26 | Fixed #19922 - Typo in translation docs. | Tim Graham | |
| Thanks amoebob for the report. | |||
| 2013-02-26 | Updated docs to reflect new tests layout. | Florian Apolloner | |
| Thanks to Ramiro Morales for the initial patch. | |||
| 2013-02-25 | Fixed #6195 -- Documented caching options for javascript_catalog. | Aymeric Augustin | |
| 2013-02-25 | Updated the release process docs to reflect the current practices. | Aymeric Augustin | |
| Fixed #17919. | |||
| 2013-02-25 | Fixed #19801 - Added brackets to input_formats. | Tim Graham | |
| Thanks leandron85@ for the suggestion. | |||
| 2013-02-25 | Fixed #19854 -- Turn Django's own Selenium tests off by default. | Carl Meyer | |
| 2013-02-25 | Minor edits to some recently-added admin docs. | Carl Meyer | |
| 2013-02-24 | Added missing versionadded for sqldropindexes command docs | Claude Paroz | |
| 2013-02-24 | Merge pull request #835 from vdboor/docfix | Tim Graham | |
| Fixed documentation typo (:mod: role in Syndication feed text) | |||
| 2013-02-24 | Merge pull request #834 from vdboor/issue_19906_list_classes | Aymeric Augustin | |
| Added column-<field_name> classes to the admin list | |||
| 2013-02-24 | Add column-<field_name> classes to the admin list | Diederik van der Boor | |
| This simplifies CSS styling to set column widths. | |||
| 2013-02-24 | Fix documentation :mod: role in Syndication feed text. | Diederik van der Boor | |
| 2013-02-24 | Fixed #19394 --Added note about auth forms and custom user models. | Ben Konrath | |
| 2013-02-24 | Fixed creation of html docs on python 3. | Florian Apolloner | |
| Thanks to Alan Lu for the report and the patch. | |||
| 2013-02-24 | Added a note about Feed.get_context_data to the 1.6 release notes. | Jacob Kaplan-Moss | |
| 2013-02-24 | Test case and docs for custom context data in feeds | Zbigniew Siciarz | |
| Thanks Paul Winkler for the initial patch. (Ref #18112). | |||
| 2013-02-24 | Merge pull request #717 from slurms/ticket_19746 | Florian Apolloner | |
| Fixed #19746 -- Allow deserialization of pk-less data | |||
| 2013-02-24 | Fixed #19253 -- Extracted template cache key building logic | Tomek Paczkowski | |
| Introduced a public function django.core.cache.utils.make_template_fragment_key Thanks @chrismedrela for fruitful cooperation. | |||
