| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-11-28 | Fixed #23925 -- Allowed settings.AUTHENTICATION_BACKENDS to reference import ↵ | sdeprez | |
| aliases | |||
| 2014-11-28 | Added 1.9/removed 1.5 on Python version support table. | Tim Graham | |
| 2014-11-28 | Fixed #23728 -- Added the --exit option to makemigrations. | Tim Heap | |
| If no changes that need migrations are found, `makemigrations --exit` exits with error code 1. | |||
| 2014-11-28 | Fixed #23853 -- Added Join class to replace JoinInfo | Anssi Kääriäinen | |
| Also removed Query.join_map. This structure was used to speed up join reuse calculation. Initial benchmarking shows that this isn't actually needed. If there are use cases where the removal has real-world performance implications, it should be relatively straightforward to reintroduce it as map {alias: [Join-like objects]}. | |||
| 2014-11-28 | Fixed #901 -- Added Model.refresh_from_db() method | Anssi Kääriäinen | |
| Thanks to github aliases dbrgn, carljm, slurms, dfunckt, and timgraham for reviews. | |||
| 2014-11-28 | Fixed #23894 -- Made deconstruct methods favor kwargs over args | Markus Holtermann | |
| 2014-11-28 | Fixed #23910 -- Added reply_to parameter to EmailMessage | Martin Blech | |
| Thanks to Berker Peksag and Tim Graham for the review and suggestions. | |||
| 2014-11-28 | Fixed #16731 -- Made pattern lookups work properly with F() expressions | Thomas Chaumeny | |
| 2014-11-27 | Fixed #23338 -- Added warning when unique=True on ForeigKey | Diego Guimarães | |
| Thanks Jonathan Lindén for the initial patch, and Tim Graham and Gabe Jackson for the suggestions. | |||
| 2014-11-27 | Fixed #23924 -- Made EmailMessage raise TypeError for type checks | Martin Blech | |
| 2014-11-27 | Fixed #23641 -- Moved post_migrate signals for contrib apps to ↵ | wrwrwr | |
| AppConfig.ready(). | |||
| 2014-11-27 | Fixed cache state dependence for assertNumQueries in ↵ | wrwrwr | |
| test_group_permission_performance. Refs #20432 and #23746. | |||
| 2014-11-27 | Added notes on registering signals in ready() and using dispatch_uid. | wrwrwr | |
| Refs #23641. | |||
| 2014-11-27 | Fixed typo in docs/topics/forms/modelforms.txt. | wrwrwr | |
| 2014-11-27 | Fixed #14664 -- Logged a warning if MiddlewareNotUsed is raised in DEBUG mode. | Berker Peksag | |
| 2014-11-27 | Fixed #23877 -- aggregation's subquery missed target col | Anssi Kääriäinen | |
| Aggregation over subquery produced syntactically incorrect queries in some cases as Django didn't ensure that source expressions of the aggregation were present in the subquery. | |||
| 2014-11-27 | Fixed #23875 -- cleaned up query.get_count() | Anssi Kääriäinen | |
| 2014-11-27 | Fixed #23847 -- Improved the email_check example in the auth documentation. | Berker Peksag | |
| 2014-11-26 | Fixed #23801 -- Added warning when max_length is used with IntegerField | MattBlack85 | |
| 2014-11-26 | Fixed #23867 -- removed DateQuerySet hacks | Anssi Kääriäinen | |
| The .dates() queries were implemented by using custom Query, QuerySet, and Compiler classes. Instead implement them by using expressions and database converters APIs. | |||
| 2014-11-26 | Fixed #23901 -- Documented how to use SpatiaLite with Homebrew. | Kenial Lee | |
| 2014-11-26 | Updated GIS docs to use doc links. | Tim Graham | |
| 2014-11-26 | Fixed #23677 -- Removed contrib.formtools | Tim Graham | |
| 2014-11-26 | Adjusted a comment to reflect some app refactor changes. | Simon Charette | |
| 2014-11-26 | Updated formtools docs to point at new package outside the Django repo. | Jannis Leidel | |
| Refs #23677. | |||
| 2014-11-26 | Removed contrib.comments from translations config. | Tim Graham | |
| 2014-11-26 | Release notes for ff3d746e8d8e8fbe6de287bd0f4c3a9fa23c18dc | Luke Plant | |
| 2014-11-25 | Fixed #23914 -- Improved {% now %} to allow storing its result in the context. | Baptiste Mispelon | |
| Thanks to Tim for the review. | |||
| 2014-11-25 | Fixed #23915 -- Made sure m2m fields through non-pk to_field are allowed in ↵ | Simon Charette | |
| the admin. refs #23754, #23862 | |||
| 2014-11-25 | Fixed #23754 -- Always allowed reference to the primary key in the admin | Simon Charette | |
| This change allows dynamically created inlines "Add related" button to work correcly as long as their associated foreign key is pointing to the primary key of the related model. Thanks to amorce for the report, Julien Phalip for the initial patch, and Collin Anderson for the review. | |||
| 2014-11-25 | Added warning about get_inline_instances() permission checking; refs #23754. | Simon Charette | |
| 2014-11-25 | Fixed #23898 -- Added missing context to admin's deleted_selected view. | Redouane Zait | |
| Thanks Redouane Zait for the report. | |||
| 2014-11-25 | Fixed flake8 warnings. | Tim Graham | |
| 2014-11-25 | Fixed bug in circular dependency algo for migration dependencies. | Luke Plant | |
| Previous algo only worked if the first item was a part of the loop, and you would get an infinite loop otherwise (see test). To fix this, it was much easier to do a pre-pass. A bonus is that you now get an error message that actually helps you debug the dependency problem. | |||
| 2014-11-25 | Fixed #23682 -- Enhanced circular redirects detection in tests. | wrwrwr | |
| When the test client detects a redirect to a URL seen in the currently followed chain it will now raise a RedirectCycleError instead of just returning the first repeated response. It will also complain when a single chain of redirects is longer than 20, as this often means a redirect loop with varying URLs, and even if it's not actually one, such long chains are likely to be treated as loops by browsers. Thanks Preston Timmons, Berker Peksag, and Tim Graham for reviews. | |||
| 2014-11-25 | Fixed and restored assertions in OneToOneTests.test_foreign_key. | Adam Alton | |
| These assertions had been removed in 34ba86706f and 7fe554b2a3, seemingly because they were referencing the wrong objects, and so they started failing when the checking of object types (as well as PK values) was introduced. | |||
| 2014-11-25 | Fixed #23899 -- Added 'Generated by Django X.Y' to startproject template. | Martin Blech | |
| 2014-11-25 | Fixed #21587 -- Added a warning for changing default of RedirectView.permanent. | Berker Peksag | |
| 2014-11-25 | Fixed #23890 -- Silenced numpy DeprecationWarnings in template tests. | Tim Graham | |
| 2014-11-25 | Fixed typo in docs/ref/django-admin.txt | Richard Olsson | |
| 2014-11-24 | Fixed #23742 -- Added an option to reverse tests order. | wrwrwr | |
| This is useful for debugging side effects affecting tests that are usually executed before a given test. Full suite and pair tests sort cases more or less deterministically, thus some test cross-dependencies are easier to reveal by reversing the order. Thanks Preston Timmons for the review. | |||
| 2014-11-24 | Improved line breaking in runtests docs. | wrwrwr | |
| 2014-11-24 | Changed test_runner imports to name objects imported from test.runner. | wrwrwr | |
| 2014-11-24 | Fixed #23907 -- Added admin.site.register in tutorial 2 for consistency. | Tim Graham | |
| 2014-11-24 | Fixed #23888 -- Fixed crash in File.__repr__() when name contains unicode. | Sergey Fedoseev | |
| 2014-11-24 | Removed workaround for lack of os.getpid() in Jython. | Tim Graham | |
| The Jython bug was fixed in http://bugs.jython.org/issue1518 (tested on Jython 2.7b3); also updated make_msgid() to be more like the version in Python 3.2+; refs #23905. Thanks Simon Charette for testing and review. | |||
| 2014-11-24 | Fixed #13694 -- Made SafeMIMEText's constructor compatible with MIMEText. | Berker Peksag | |
| 2014-11-24 | Updated testing documentation following 498ae3a36069e2d | Thomas Chaumeny | |
| - commit/rollback are no longer replaced by nop - the warning about not using TestCase when testing transactional behavior belongs to TestCase section, not TransactionTestCase | |||
| 2014-11-24 | Fixed typo in django/utils/decorators.py comment. | Tom V | |
| 2014-11-24 | Further fixes to the migration notes for get_query_set | Luke Plant | |
| This rename is very tricky for the case of subclasses which define get_query_set and haven't been updated yet, which applies to all projects in the form of RelatedManager from Django 1.5. | |||
