| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-03-28 | Updated the release document after actually doing a release (!). | Jacob Kaplan-Moss | |
| 2013-03-27 | Updated bios of committers | Richard Cornish | |
| 2013-03-24 | Goodbye, Malcolm. | Aymeric Augustin | |
| 2013-03-22 | Added missing markup to docs. | Tim Graham | |
| 2013-03-14 | Deprecated django.views.defaults.shortcut. | Aymeric Augustin | |
| 2013-03-14 | Updated release instructions to account for website automation. | Aymeric Augustin | |
| 2013-03-13 | Proof-read and adjusted the transactions docs. | Aymeric Augustin | |
| 2013-03-11 | Deprecated django.contrib.comments. | Jacob Kaplan-Moss | |
| 2013-03-11 | Deprecated TransactionMiddleware and TRANSACTIONS_MANAGED. | Aymeric Augustin | |
| Replaced them with per-database options, for proper multi-db support. Also toned down the recommendation to tie transactions to HTTP requests. Thanks Jeremy for sharing his experience. | |||
| 2013-03-11 | Added some assertions to enforce the atomicity of atomic. | Aymeric Augustin | |
| 2013-03-11 | Deprecated transaction.is_managed(). | Aymeric Augustin | |
| It's synchronized with the autocommit flag. | |||
| 2013-03-11 | Deprecated transaction.commit/rollback_unless_managed. | Aymeric Augustin | |
| Since "unless managed" now means "if database-level autocommit", committing or rolling back doesn't have any effect. Restored transactional integrity in a few places that relied on automatically-started transactions with a transitory API. | |||
| 2013-03-11 | Added an API to control database-level autocommit. | Aymeric Augustin | |
| 2013-03-11 | Made transaction.managed a no-op and deprecated it. | Aymeric Augustin | |
| enter_transaction_management() was nearly always followed by managed(). In three places it wasn't, but they will all be refactored eventually. The "forced" keyword argument avoids introducing behavior changes until then. This is mostly backwards-compatible, except, of course, for managed itself. There's a minor difference in _enter_transaction_management: the top self.transaction_state now contains the new 'managed' state rather than the previous one. Django doesn't access self.transaction_state in _enter_transaction_management. | |||
| 2013-03-08 | Fixed #15363 -- Renamed and normalized to `get_queryset` the methods that ↵ | Loic Bistuer | |
| return a QuerySet. | |||
| 2013-02-28 | Implemented persistent database connections. | Aymeric Augustin | |
| Thanks Anssi Kääriäinen and Karen Tracey for their inputs. | |||
| 2013-02-28 | Added a Trac-related item to the release checklist. | Aymeric Augustin | |
| 2013-02-26 | Added a note about creating new doc versions; update stable doc version ↵ | Carl Meyer | |
| before announcement. | |||
| 2013-02-26 | Added note about updating default docs version in howto-release doc. | Carl Meyer | |
| 2013-02-26 | Updated docs to reflect new tests layout. | Florian Apolloner | |
| Thanks to Ramiro Morales for the initial patch. | |||
| 2013-02-25 | Updated the release process docs to reflect the current practices. | Aymeric Augustin | |
| Fixed #17919. | |||
| 2013-02-25 | Fixed #19854 -- Turn Django's own Selenium tests off by default. | Carl Meyer | |
| 2013-02-23 | Various tweaks and additions to 'how to release Django' document. | Carl Meyer | |
| 2013-02-23 | Removed superfluous cookie check from auth login. | Preston Holmes | |
| This is ensured through the CSRF protection of the view | |||
| 2013-02-23 | Some updates to "how to release Django": | Jacob Kaplan-Moss | |
| Typo fixes, spell check, some more specifics where possible. | |||
| 2013-02-23 | Added a draft document explaining how to release Django. | Jacob Kaplan-Moss | |
| Thanks to James for the first draft; I made a few changes (svn->git) and some supporting links, but mostly I added FIXME's. | |||
| 2013-02-23 | Added test runner option to skip Selenium tests (#19854). | Zbigniew Siciarz | |
| 2013-02-23 | Fixed #17906 - Autoescaping {% cycle %} and {% firstof %} templatetags. | Vladimir A Filonov | |
| This commit adds "future" version of these two tags with auto-escaping enabled. | |||
| 2013-02-05 | Fixed #19689 -- Renamed `Model._meta.module_name` to `model_name`. | Simon Charette | |
| 2013-02-02 | Fixed #19333 -- Moved compress.py outside of the admin static folder. Thanks ↵ | Julien Phalip | |
| to camilonova, Russell Keith-Magee, Aymeric Augustin and Ramiro Morales for the feedback. | |||
| 2013-02-01 | Added myself to core developpers | Simon Charette | |
| 2013-01-31 | Deprecated undocumented warnings manipulation testing tools. | Ramiro Morales | |
| 2013-01-31 | Fixed #19692 -- Completed deprecation of mimetype in favor of content_type. | Aymeric Augustin | |
| Thanks Tim for the report and initial patch. | |||
| 2013-01-29 | Fixed typos in docs and comments | Tim Graham | |
| 2013-01-24 | Fixed #19639 - Updated contributing to reflect model choices best practices. | Tim Graham | |
| Thanks charettes. | |||
| 2013-01-15 | Fixed #19099 -- Split broken link emails out of common middleware. | Aymeric Augustin | |
| 2013-01-02 | Fixed #19516 - Fixed remaining broken links. | Tim Graham | |
| Added -n to sphinx builds to catch issues going forward. | |||
| 2012-12-29 | Removed links to deprecated IGNORABLE_404_STARTS/ENDS settings. | Tim Graham | |
| refs #19516 and 641acf76e7 | |||
| 2012-12-29 | Removed django.contrib.markup. | Aymeric Augustin | |
| 2012-12-29 | Fixed broken links, round 4. refs #19516 | Tim Graham | |
| 2012-12-28 | Fixed #19498 -- refactored auth documentation | Preston Holmes | |
| The auth doc was a single page which had grown unwieldy. This refactor split and grouped the content into sub-topics. Additional corrections and cleanups were made along the way. | |||
| 2012-12-26 | Fixed #19518 -- Documented the deprecation of localflavor. | Aymeric Augustin | |
| Also moved the contrib deprecations at the top of their section and made minor markup fixes. | |||
| 2012-12-24 | Fixed #19505 -- A more flexible implementation for customizable admin ↵ | Julien Phalip | |
| redirect urls. Work by Julien Phalip. Refs #8001, #18310, #19505. See also 0b908b92a2ca4fb74a103e96bb75c53c05d0a428. | |||
| 2012-12-22 | Fixed #15516 -- Updated the ticket life cycle diagram. | Aymeric Augustin | |
| 2012-12-21 | Fixed #19497 -- Refactored testing docs. | Ramiro Morales | |
| Thanks Tim Graham for the review and suggestions. | |||
| 2012-12-08 | Fixed #19389 -- Docs on the location of contrib apps tests. | Aymeric Augustin | |
| 2012-11-17 | Fixed #19291 -- Completed deprecation of ADMIN_MEDIA_PREFIX. | Aymeric Augustin | |
| 2012-11-17 | Fixed #16779 - Added a contributing tutorial | Tim Graham | |
| Thank-you Taavi Taijala for the draft patch! | |||
| 2012-11-04 | Added a note and link to CLA from contributing docs | Preston Holmes | |
| 2012-11-02 | Deprecated depth kwarg on select_related. | Preston Holmes | |
| This is the start of a deprecation path for the depth kwarg on select_related. Removing this will allow us to update select_related so it chains properly and have an API similar to prefetch_related. Thanks to Marc Tamlyn for spearheading and initial patch. refs #16855 | |||
