| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-09-21 | Documented related models descriptors. | Aymeric Augustin | |
| Changed the poll / choices example to a more obvious parent / children. I think that reduces the cognitive load. | |||
| 2015-09-21 | Fixed #22341 -- Split django.db.models.fields.related. | Aymeric Augustin | |
| At 2800 lines it was the largest module in the django package. This commit brings it down to a more manageable 1620 lines. Very small changes were performed to uniformize import style. | |||
| 2015-09-21 | Fixed #15760 -- Added JavaScript events for admin inline forms. | ramez | |
| 2015-09-21 | Fixed #25431 -- Readded inline foreign keys to modelformset instances | Claude Paroz | |
| Too much field exclusions in form's construct_instance() in _post_clean() could lead to some unexpected missing ForeignKey values. Fixes a regression from 45e049937. Refs #13776. | |||
| 2015-09-21 | Corrected docstring in core.urlresolvers module. | Matt Deacalion Stevens | |
| The RegexURLResolver.resolve() method no longer returns a tuple. It has returned a ResolverMatch object since commit e0fb90b2. | |||
| 2015-09-21 | Fixed #24688 -- Added Oracle support for new-style GIS functions. | Jani Tiainen | |
| 2015-09-21 | Fixed #23813 -- Added checks for common URL pattern errors | Alasdair Nicol | |
| Thanks jwa and lamby for the suggestions, and timgraham and jarshwah for their reviews. | |||
| 2015-09-21 | Fixed #12856 -- Documented BoundField API. | Moritz Sichert | |
| 2015-09-21 | Fixed #24629 -- Unified Transform and Expression APIs | Josh Smeaton | |
| 2015-09-20 | Removed obsolete supports_* auth backend attributes in tests | Claude Paroz | |
| 2015-09-19 | Fixed #25296 -- Prevented model related object cache pollution when create() ↵ | Raphael Merx | |
| fails due to an unsaved object. | |||
| 2015-09-19 | Fixed typo in "pbkdf2" test names. | Tim Graham | |
| 2015-09-19 | Refs #25135 -- Corrected the timeline section of allow_tags deprecation. | Tim Graham | |
| 2015-09-19 | Removed unused sections in 1.9 release notes. | Tim Graham | |
| 2015-09-19 | Alphabetized a few sections in the 1.9 release notes + made a few tweaks. | Tim Graham | |
| 2015-09-19 | Used more specific assertion in check_framework tests. | Alasdair Nicol | |
| 2015-09-19 | Fixed #25430 -- Fixed incorrect RunSQL examples. | Flavio Curella | |
| 2015-09-19 | Fixed #25160 (again) -- Moved data loss check on reverse relations. | Aymeric Augustin | |
| Moved data loss check when assigning to a reverse one-to-one relation on an unsaved instance to Model.save(). This is exactly the same change as e4b813c but for reverse relations. | |||
| 2015-09-19 | Refs #13110 -- Fixed mistakes in the new multiple enclosure feed tests | Unai Zalakain | |
| 2015-09-19 | Fixed #25424 -- Use force_str for test client URLs. | Travis Jensen | |
| urlparse() fails with an AttributeError ("'__proxy__' object has no attribute 'decode'") if reverse_lazy is used to look up the URL (this is exactly the same problem that caused ticket #18776). The solution is to use force_str() on the path before handing it to urlparse(). | |||
| 2015-09-19 | Fixed #25390 -- Allowed specifying a start migration in squashmigrations | Markus Holtermann | |
| Thanks Tim Graham for the review. | |||
| 2015-09-19 | Fixed #24743, #24745 -- Optimized migration plan handling | Markus Holtermann | |
| The change partly goes back to the old behavior for forwards migrations which should reduce the amount of memory consumption (#24745). However, by the way the current state computation is done (there is no `state_backwards` on a migration class) this change cannot be applied to backwards migrations. Hence rolling back migrations still requires the precomputation and storage of the intermediate migration states. This improvement also implies that Django does not handle mixed migration plans anymore. Mixed plans consist of a list of migrations where some are being applied and others are being unapplied. Thanks Andrew Godwin, Josh Smeaton and Tim Graham for the review as well as everybody involved on the ticket that kept me looking into the issue. | |||
| 2015-09-18 | Fixed #25269 -- Allowed method_decorator() to accept a list/tuple of decorators. | fabrizio ettore messina | |
| 2015-09-18 | Fixed #24944 -- Added extra_email_context parameter to password_reset() view. | sujayskumar | |
| 2015-09-18 | Fixed #13110 -- Added support for multiple enclosures in Atom feeds. | Unai Zalakain | |
| The ``item_enclosures`` hook returns a list of ``Enclosure`` objects which is then used by the feed builder. If the feed is a RSS feed, an exception is raised as RSS feeds don't allow multiple enclosures per feed item. The ``item_enclosures`` hook defaults to an empty list or, if the ``item_enclosure_url`` hook is defined, to a list with a single ``Enclosure`` built from the ``item_enclosure_url``, ``item_enclosure_length``, and ``item_enclosure_mime_type`` hooks. | |||
| 2015-09-18 | Fixed #25417 -- Added a field check for invalid default values. | Simon Charette | |
| 2015-09-18 | Fixed #24636 -- Added model field validation for decimal places and max digits. | Iulia Chiriac | |
| 2015-09-18 | Made assorted improvements to the Oracle documentation. | Mariusz Felisiak | |
| 2015-09-18 | Refs #17785 -- Made docstring for sqlite3's get_relations() consistent with ↵ | Hynek Cernoch | |
| other backends. | |||
| 2015-09-18 | Dropped support for Oracle 11.1. | Tim Graham | |
| 2015-09-18 | Refs #25422 -- Added a test for a template tag with type annotations. | Thomas Orozco | |
| This doesn't work in Django 1.8 but was fixed in Django 1.9 as a side effect of another change. | |||
| 2015-09-18 | Fixed #25034 -- Converted caches ImproperlyConfigured error to a system check. | Tom Christie | |
| 2015-09-17 | Refs #20625 -- Forwardported tests and release notes for queryset chaining fix. | Aric Coady | |
| The issue was fixed on master due to the removal of ValuesQuerySet. Partial forwardport of 7d471fe6626de2b36b97ac04086d8ea307be8288 from stable/1.8.x | |||
| 2015-09-17 | Removed obsolete pysqlite documentation. | Tim Graham | |
| These steps are no longer needed as of pysqlite 2.7.0. https://github.com/ghaering/pysqlite/commit/76f34850be582249d9048e6acb2993943b07d31b | |||
| 2015-09-17 | Refs #14091 -- Fixed connection.queries on SQLite. | Aymeric Augustin | |
| 2015-09-17 | Added a version requirement to mysqlclient in test requirements. | Tim Graham | |
| 2015-09-17 | Added a version requirement to python-memcached in test requirements. | Tim Graham | |
| 2015-09-17 | Removed the unused JoinPromoter.outer_votes attribute. | Simon Charette | |
| 2015-09-17 | Refs #24215 -- Fixed Python 3.5 compatiblity for unhandled lazy ops error. | Tim Graham | |
| 2015-09-17 | Fixed #25400 -- Fixed regression in nonexistent features on gis backends. | Daniel Hahler | |
| 2015-09-16 | Refs #25294 -- Moved BoundField to django.forms.boundfield. | Moritz Sichert | |
| 2015-09-16 | Refs #25149 -- Fixed regression in admin datetime widget for timezones on ↵ | Gavin Wahl | |
| the negative side of UTC. | |||
| 2015-09-16 | Fixed #24496 -- Added CSRF Referer checking against CSRF_COOKIE_DOMAIN. | Matt Robenolt | |
| Thanks Seth Gottlieb for help with the documentation and Carl Meyer and Joshua Kehn for reviews. | |||
| 2015-09-16 | Fixed #25294 -- Allowed custom BoundFields on forms. | Moritz Sichert | |
| 2015-09-16 | Fixed typo in django/core/cache/backends/base.py docstring. | Matthew Crowson | |
| 2015-09-16 | Updated docs coverage example to run in a single process. | David Gibbons | |
| 2015-09-16 | Merge pull request #5291 from stephenpaulger/master | James Bennett | |
| Remove unnecessarily rude terminology. | |||
| 2015-09-16 | Remove unnecessarily rude terminology. | Stephen Paulger | |
| 2015-09-15 | Fixed #25404 -- Added line numbers to TemplateSyntaxError strings. | Dave Smith | |
| This makes it much easier to diagnose a test failure when all you have is the stack trace from an uncaught TemplateSyntaxError. | |||
| 2015-09-15 | Added upgrade tip in BaseCommand.option_list deprecation comment. | Daniel Hahler | |
