| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-25 | Fixed #21873 -- Removed duplicate import. | Aymeric Augustin | |
| Thanks Sephi for the report. | |||
| 2014-01-25 | Fixed #21836 -- Improved transaction docs about autocommit mode | Chris Jerdonek | |
| Clarified that queries in autocommit mode are committed immediately only if a transaction has not already been started. Added to the main transaction docs that Django's TestCase class implicitly wraps its tests in transactions. | |||
| 2014-01-25 | Merge pull request #2213 from dnerdy/ticket-14007-contributors | Tim Graham | |
| Added ticket #14007 contributors to AUTHORS | |||
| 2014-01-25 | Fixed a failing schema assertion. | Simon Charette | |
| BooleanFields are stored as TINYINT(1) on MySQL. | |||
| 2014-01-25 | Added ticket #14007 contributors to AUTHORS | Mark Sandstrom | |
| 2014-01-25 | Merge pull request #2211 from carljm/t21867 | Jannis Leidel | |
| Fixed #21867 -- Removed AppStaticStorage; app paths are now AppConfig's job. | |||
| 2014-01-25 | Fixed #21829 -- Added default AppConfigs. | Aymeric Augustin | |
| Thanks Russell for the report, Marc for the initial patch, Carl for the final review, and everyone who contributed to the design discussion. | |||
| 2014-01-24 | Fixed #21871 -- Fixed Apps.is_installed() for apps with custom label. | Carl Meyer | |
| Thanks Aymeric for design discussion. | |||
| 2014-01-25 | Unroll choices iterators in field deconstruction | Andrew Godwin | |
| 2014-01-25 | Fixed #21783: More SQLite default fun with nulls. | Andrew Godwin | |
| 2014-01-24 | Fixed #21867 -- Removed AppStaticStorage; app paths are now AppConfig's job. | Carl Meyer | |
| AppStaticStorage only provided one thing over FileSystemStorage, which was taking an app name (import path) and translating it into a filesystem path. This is now something that should be done via app_config.path instead, leaving AppStaticStorage with no reason for existence. It should be safe to remove, as it was undocumented internal API. There was some kind of feature in the AppDirectoriesFinder code related to a "prefix" attribute on the storage class used by AppDirectoriesFinder. Since this feature was undocumented, untested, and of unclear purpose, I removed it as well. | |||
| 2014-01-24 | Fixed typo in error message. | Arne Brodowski | |
| 2014-01-24 | Fixed #21870 -- Admin check for list_editable_item | Arne Brodowski | |
| During the admin check for list_editable _check_list_editable_item should return an empty list if all checks pass. Additionally the Testcase test_readonly_and_editable was changed to test what the name implies instead of duplicating the logic of test_readonly. | |||
| 2014-01-24 | Fixed #21869 -- Fixed docs building with Sphinx 1.2.1. | Tim Graham | |
| Thanks tragiclifestories for the report. | |||
| 2014-01-24 | Fixed #21824 -- Added reference to LTS in docs/internals/security.txt | James Turley | |
| 2014-01-24 | Fix soft-apply detection of migrations with dependencies | Andrew Godwin | |
| 2014-01-24 | Fixed #21787 -- regression in MTI .exclude() queries | Anssi Kääriäinen | |
| 2014-01-23 | Fixed #21865 -- Incorrect signs in documented example. | Marc Tamlyn | |
| Maths is hard. | |||
| 2014-01-23 | Merge branch 'stable/1.7.X' | Marc Tamlyn | |
| We fork at beta. This branch will be recreated when the first beta is created. It has been merged in to maintain the version number bump and tag. | |||
| 2014-01-23 | Merge pull request #2203 from mjtamlyn/post-beta-branching | Tim Graham | |
| We should branch after the first beta. | |||
| 2014-01-23 | We should branch after the first beta. | Marc Tamlyn | |
| We did this for 1.6 and it was very effective. 95%+ of fixes which merge during the alpha are backported, as the policy is "all but really major features". It's easier to just not merge any really major features. After beta, we have feature freeze so we need to backport bugs to stable but not features, so then the branch makes sense. | |||
| 2014-01-23 | Fixed #21847 -- Clarified where ContactForm was defined | Tom Atkins | |
| 2014-01-23 | Merge pull request #2205 from ctbarna/21864-custom-lookup-unclosed-string | Alex Gaynor | |
| Fixes #21864: Close string in example of custom lookups doc page. | |||
| 2014-01-23 | Fixed #21864 -- Fixed missing quote in custom lookup example. | Baptiste Mispelon | |
| Thanks to Chris Barna for the report. | |||
| 2014-01-23 | Fixes #21864: Close string in example of custom lookups doc page. | Chris Barna | |
| 2014-01-23 | Fixed #21861 -- Fixed typo in 1.7 release notes. | Tim Graham | |
| Thanks marktranchant. | |||
| 2014-01-23 | Fixed some punctuation; thanks Chris Jerdonek. | Tim Graham | |
| 2014-01-23 | Add docs about converting from South | Andrew Godwin | |
| 2014-01-23 | We should branch after the first beta. | Marc Tamlyn | |
| We did this for 1.6 and it was very effective. 95%+ of fixes which merge during the alpha are backported, as the policy is "all but really major features". It's easier to just not merge any really major features. After beta, we have feature freeze so we need to backport bugs to stable but not features, so then the branch makes sense. | |||
| 2014-01-22 | [1.7.x] Bump version number for 1.7 alpha 1.1.7a1 | James Bennett | |
| 2014-01-22 | Always use parentheses when documenting a method with no arguments. | Baptiste Mispelon | |
| 2014-01-22 | Don't show `self` in the list of arguments of a method. | Baptiste Mispelon | |
| This is consistent with Python's official documentation and it's a sphinx recommendation too[1]. [1] http://sphinx-doc.org/markup/desc.html#dir-method Refs #21855. | |||
| 2014-01-22 | Fixed #20834 -- Described how caching of user permissions works. | Tim Graham | |
| Thanks Giggaflop and Jennifer Casavantes. | |||
| 2014-01-22 | Added a link to the 1.6 release notes which also fixed a rendering issue. | Tim Graham | |
| 2014-01-22 | Fixed #21529 -- Noted that {% url %} encodes its output (refs #13260). | Tim Graham | |
| 2014-01-22 | Added some missing whitespace around arithmetic operators | Alex Gaynor | |
| 2014-01-22 | Fixed #21726 -- Clarified that password should not be included in ↵ | Tim Graham | |
| REQUIRED_FIELDS. Thanks russellm for the report. | |||
| 2014-01-22 | Fixed some markup that caused broken links in the static files docs. | Tim Graham | |
| 2014-01-22 | Fixed #21846 -- Made NestedObjects handle related_name with %(app_label)s or ↵ | Loic Bistuer | |
| %(class)s. | |||
| 2014-01-22 | Merge pull request #2198 from Markush2010/ticket21852 | Andrew Godwin | |
| Fixed #21852 -- Make migration writer serialize iterators | |||
| 2014-01-22 | Fixed #21850 -- Made GeometryField.geodetic case insensitive | Oliver George | |
| 2014-01-22 | Fixed #21852 -- Make migration writer serialize iterators | Markus Holtermann | |
| 2014-01-21 | Fixed #21827 -- Install django-admin and django-admin.py | Florian Apolloner | |
| We need to figure out how to deprecate django-admin.py, but for now this should do the trick. | |||
| 2014-01-21 | Merge pull request #2186 from zemanel/master | Tim Graham | |
| Fixed typo on docstring | |||
| 2014-01-21 | Corrected problem with MySQL checks handler and related fields. | Russell Keith-Magee | |
| 2014-01-21 | Changed django-admin back to django-admin.py. Refs #21827 | Florian Apolloner | |
| 2014-01-20 | Removed some stray newlines which caused flake8 issues | Alex Gaynor | |
| 2014-01-20 | Fix a check_framework test so it doesn't fail when TEST_RUNNER is set (e.g. ↵ | Carl Meyer | |
| on CI). | |||
| 2014-01-20 | Fixes #21833 -- Fix UserSettingsHolder.is_overridden() and add tests. | Carl Meyer | |
| 2014-01-21 | Refs #21831 -- Softened the TestClient dependency on contrib.auth. | Russell Keith-Magee | |
| This is to prevent an import of django.test causing an import (and thus an implicit checks regisration) for an app that may not be in `INSTALLED_APPS`. Better fixes may be possible when #20915 and/or #21829 are addressed. Thanks to @carljm for the report. | |||
