| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-09-12 | Fixed #24919 -- Allowed disabling of migrations on a per app basis | Markus Holtermann | |
| 2015-09-11 | Refs #25381 -- Clarified that AppConfig model methods search only the ↵ | Tim Graham | |
| current app. | |||
| 2015-09-11 | Fixed #25203 -- Documented how to pass Apache environment variables to Django. | Paul Rentschler | |
| 2015-09-11 | Fixed #25382 -- Removed obsolete references to DateQuerySet. | Renato Oliveira | |
| 2015-09-11 | Renamed admin doc image files to match the documentation they are for. | Ryan Allen | |
| 2015-09-11 | Fixed #25200 -- Updated admin screenshots in docs. | Ryan Allen | |
| 2015-09-11 | Fixed #25374 -- Made ModelAdmin checks work on instances instead of classes. | Malcolm Box | |
| This allows dynamically-generated attributes to be specified in checked ModelAdmin attributes without triggering errors. | |||
| 2015-09-11 | Fixed #25351 -- Added example for database test settings to docs. | Jose Carlos Menezes | |
| 2015-09-11 | Fixed #25380 -- Added Postgres.app to the PostGIS options on OS X. | Flavio Curella | |
| 2015-09-10 | Fixed #25379 -- Removed obsolete information from GeoDjango tutorial. | Flavio Curella | |
| Django 1.9 drops support for PostgreSQL 9.0 where creating a database using a template was needed. | |||
| 2015-09-10 | Documented that the parallel test runner doesn't work on Windows. | Aymeric Augustin | |
| 2015-09-10 | Avoided running more test processes than necessary. | Aymeric Augustin | |
| This reduces the time spent cloning databases. Thanks Tim for the suggestion. | |||
| 2015-09-10 | Enabled parallel testing by default in runtests.py. | Aymeric Augustin | |
| 2015-09-09 | Test parallelization isn't implemented on Oracle. | Aymeric Augustin | |
| 2015-09-09 | Acknoweldeged a limitation of the parallel test runner. | Aymeric Augustin | |
| Notably it will fail to report a Model.DoesNotExist exceptions because the class itself isn't pickleable. (Django has specific code to make its instances pickleable.) | |||
| 2015-09-09 | Allowed a port range for the liveserver by default. | Aymeric Augustin | |
| This is required for running tests in parallel. | |||
| 2015-09-09 | Cloned databases for running tests in parallel. | Aymeric Augustin | |
| 2015-09-09 | Implemented a parallel test runner. | Aymeric Augustin | |
| 2015-09-09 | Fixed #25372 -- Fixed autocompletion for options of non-argparse commands. | Daniel Hahler | |
| 2015-09-09 | Fixed #25371 -- Added reverse_sql and reverse_code examples to docs. | Bibhas | |
| 2015-09-08 | Fixed #25135 -- Deprecated the contrib.admin allow_tags attribute. | Ola Sitarska | |
| Thanks Jaap Roes for the idea and initial patch. | |||
| 2015-09-08 | Fixed #25350 -- Added alias --no-input for --noinput to management commands. | Raphael Michel | |
| 2015-09-07 | Fixed #24857 -- Added "python -m django" entry point. | Ryan Hiebert | |
| 2015-09-07 | Fixed #25356 -- Removed default_app_config from startapp template. | Tim Graham | |
| Also discouraged its use outside the intended use case. | |||
| 2015-09-07 | Fixed #24917 -- Made admindocs display model methods that take arguments. | Zan Anderle | |
| 2015-09-07 | Fixed #25200 -- Updated tutorial screenshots for new admin theme. | elky | |
| 2015-09-07 | Fixed #25358 -- Improved variable name for question in tutorial. | Alasdair Nicol | |
| 2015-09-06 | Stopped returning mirrors from setup_databases. | Aymeric Augustin | |
| The return value of setup_databases is only used as an argument for teardown_databases which doesn't need mirrors. | |||
| 2015-09-05 | Updated references to the TEST_* database settings. | Aymeric Augustin | |
| They were removed in Django 1.9. I could leave the reference to TEST_DEPENDENCIES in the 1.2.4 release notes because the link points to the right location and the name was accurate at the time. | |||
| 2015-09-05 | Removed some discussion of deprecated {% url %} behavior. | Tim Graham | |
| 2015-09-05 | Fixed #25355 -- Made two tweaks to docs/topics/db/aggregation.txt. | Maarten | |
| 2015-09-05 | Fixed #25334 -- Provided a way to allow cross-origin unsafe requests over HTTPS. | Joshua Kehn | |
| Added the CSRF_TRUSTED_ORIGINS setting which contains a list of other domains that are included during the CSRF Referer header verification for secure (HTTPS) requests. | |||
| 2015-09-05 | Added default value for default kwargs for QueryDict. | David Sanders | |
| 2015-09-05 | Fixed #24525 -- Fixed AssertionError in some complex queries. | Tim Graham | |
| Thanks Anssi Kääriäinen for providing the solution. | |||
| 2015-09-04 | Added links to new security settings introduced in 1.8. | David Sanders | |
| 2015-09-04 | Refs #25144 -- Revised deprecation timeline: migrations won't become compulsory. | Tim Graham | |
| 2015-09-04 | Fixed #25144 -- Allowed migrate to create tables for apps without migrations. | Tim Graham | |
| 2015-09-04 | Refs #25345 -- Updated links to code.google.com. | Maxime Lorant | |
| 2015-09-04 | Updated static files howto title to include JavaScript. | David Gibbons | |
| 2015-09-03 | Documented a limitation of Options.required_db_features. | Tim Graham | |
| 2015-09-03 | Fixed #25326 -- Added namedtuple example for executing custom SQL. | Dražen Odobašić | |
| 2015-09-03 | Moved misplaced versionadded annotation. | Tim Graham | |
| 2015-09-02 | Refs #24152 -- Fixed typos in deprecated GeoQuerySet aggregate names. | Tim Graham | |
| 2015-08-31 | Fixed #25331 -- Removed trailing blank lines in docstrings. | Maxime Lorant | |
| 2015-08-31 | Fixed #25289 -- Updated admin's jQuery to 2.1.4. | Tim Graham | |
| 2015-08-31 | Cleaned up example migration files in docs | Tyson Clugg | |
| 2015-08-31 | Fixed #25259 -- Added comments to header of generated migration files | Tyson Clugg | |
| 2015-08-31 | Clarified 404.html usage, excplicitly stated that it's used when DEBUG is False | David Sanders | |
| Thanks to Keryn Knight, Curtis Maloney and Tim Graham for their reviews. | |||
| 2015-08-29 | Fixed #24704 -- Made the autoreloader survive SyntaxErrors. | Aymeric Augustin | |
| With this change, it's expected to survive anything except errors that make it impossible to import the settings. It's too complex to fallback to a sensible behavior with a broken settings module. Harcoding things about runserver in ManagementUtility.execute is atrocious but it's the only way out of the chicken'n'egg problem: the current implementation of the autoreloader primarily watches imported Python modules -- and then a few other things that were bolted on top of this design -- but we want it to kick in even if the project contains import-time errors and django.setup() fails. At some point we should throw away this code and replace it by an off-the-shelf autoreloader that watches the working directory and re-runs `django-admin runserver` whenever something changes. | |||
| 2015-08-29 | Fixed #25262 -- Removed the enable_comments field from FlatPageAdmin. | Y3K | |
