| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-09-09 | Refs #24928 -- Added introspection support for PostgreSQL JSONField | Claude Paroz | |
| Thanks Adam Johnson and Tim Graham for the reviews. | |||
| 2017-07-26 | Fixed #28363 -- Allowed naming the migration generated by squashmigrations. | Melvyn Sopacua | |
| 2017-06-19 | Fixed #27858 -- Prevented read-only management commands from creating the ↵ | Marti Raudsepp | |
| django_migrations table. MigrationRecorder now assumes that if the django_migrations table doesn't exist, then no migrations are applied. Reverted documentation change from refs #23808. | |||
| 2017-05-30 | Refs #26294 -- Fixed typo in docs/ref/django-admin.txt. | René Fleschenberg | |
| 2017-05-27 | Fixed #27881 -- Added diffsettings --output option. | Chris Lamb | |
| Thanks Haris Ibrahim K. V. for writng docs. | |||
| 2017-05-26 | Fixed #27978 -- Allowed loaddata to read data from stdin. | Pavel Kulikov | |
| Thanks Squareweave for the django-loaddata-stdin project from which this is adapted. | |||
| 2017-05-22 | Updated various links in docs to avoid redirects | Claude Paroz | |
| Thanks Tim Graham and Mariusz Felisiak for review and completion. | |||
| 2017-05-22 | Fixed #28015 -- Added makemessages --add-location option. | Ling-Xiao Yang | |
| Thanks François Freitag for review. | |||
| 2017-05-20 | Pointed Dive into Python links to python3 site | Michiel Beijen | |
| The old site handles python2, and is thus no longer relevant for Django. Also I pointed the search path links to the proper sections. | |||
| 2017-04-01 | Fixed #28004 -- Doc'd how to create migrations for an app without a ↵ | Tim Graham | |
| migrations directory. | |||
| 2017-03-28 | Fixed #27988 -- Fixed typo in docs/ref/django-admin.txt. | Tim Graham | |
| 2017-01-27 | Fixed #27769 -- Documented option naming differences between django-admin ↵ | Andrew Nester | |
| and call_command(). | |||
| 2017-01-17 | Removed versionadded/changed annotations for 1.10. | Tim Graham | |
| 2017-01-17 | Refs #25838 -- Removed the deprecated shell --plain option. | Tim Graham | |
| 2017-01-17 | Refs #25604 -- Removed makemigrations --exit option per deprecation timeline. | Tim Graham | |
| 2017-01-06 | Fixed #27432 -- Made app_label arguments limit showmigrations --plan output. | Sebastian Spiegel | |
| 2016-12-21 | Fixed #27600 -- Suppressed the REPL during shell's reading from stdin. | jpic | |
| Thanks Adam Chainz for review and guidance. | |||
| 2016-11-10 | Fixed #27438 -- Added the diffsettings --default option. | Paweł Marczewski | |
| 2016-10-01 | Refs #26940 -- Re-allowed makemessages without settings | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2016-09-06 | Fixed #24865 -- Added remove_stale_contenttypes management command. | Tim Graham | |
| Thanks Simon Charette for the review. | |||
| 2016-08-12 | Fixed #27008 -- Added --debug-mode option to DiscoverRunner. | Chris Jerdonek | |
| 2016-06-23 | Fixed #26791 -- Replaced LiveServerTestCase port ranges with binding to port 0. | Tim Graham | |
| 2016-06-15 | Fixed broken links in docs and comments. | Ville Skyttä | |
| 2016-06-09 | Fixed #20468 -- Added loaddata --exclude option. | Berker Peksag | |
| Thanks Alex Morozov for the initial patch. | |||
| 2016-05-20 | Removed versionadded/changed annotations for 1.9. | Tim Graham | |
| 2016-05-03 | Added --noinput in migrate commmand's docs. | Arthur Vuillard | |
| 2016-03-18 | Fixed #25658 -- Allowed inspectdb to inspect a specific set of tables. | José Tomás Tocino | |
| 2016-03-14 | Fixed #26294 -- Clarified call_command()'s handling of args and options. | Tim Graham | |
| 2016-03-05 | Fixed #26315 -- Allowed call_command() to accept a Command object as the ↵ | Jon Dufresne | |
| first argument. | |||
| 2016-02-23 | Fixed #26190 -- Returned handle() result from call_command | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2016-02-17 | Fixed #25735 -- Added support for test tags to DiscoverRunner. | Jakub Paczkowski | |
| Thanks Carl Meyer, Claude Paroz, and Simon Charette for review. | |||
| 2016-02-01 | Fixed #26124 -- Added missing code formatting to docs headers. | rowanv | |
| 2016-01-25 | Fixed #25968 -- Changed project/app templates to use a "py-tpl" suffix. | Chris Lamb | |
| Debian packages unconditionally byte-compile .py files on installation and do not silence errors by design. Therefore, we need a way of shipping these invalid .py files without a .py extension but ensuring that when we template them, they end up as .py. We don't special-case .py files so that the all the TemplateCommand command-line options (eg. extra_files and extensions) still work entirely as expected and it may even be useful for other formats too. | |||
| 2016-01-14 | Fixed #23868 -- Added support for non-unique django-admin-options in docs. | Tim Graham | |
| Also documented missing short command line options to fix #24134. This bumps the minimum sphinx version required to build the docs to 1.3.4. Thanks Simon Charette for review. | |||
| 2016-01-13 | Refs #25769 -- Updated docs to reflect get_version() uses PEP 0440. | Tim Graham | |
| 2016-01-12 | Removed an unncessary docs cross-reference for call_command(). | Tim Graham | |
| 2016-01-12 | Made CommandError use the exception directive in docs. | Tim Graham | |
| 2016-01-11 | Fixed #25684 -- Made runserver use logging for request/response output. | Flavio Curella | |
| Thanks andreif for the contributing to the patch. | |||
| 2016-01-06 | Fixed #25680 -- Added django-admin shell --command option. | Niels Van Och | |
| Add a -c option to the shell command to execute a command passed as a string as Django. | |||
| 2015-12-24 | Discouraged use of /tmp with predictable names. | Chris Lamb | |
| The use of predictable filenames in /tmp often leads to symlink attacks so remove the most obvious use of them in the docs. | |||
| 2015-12-22 | Fixed #25965 -- Added removal of sql* commands to 1.9 release notes. | Tim Graham | |
| 2015-12-22 | Fixed #25838 -- Added "python" as an interface to the shell command. | Jon Dufresne | |
| Deprecates the "--plain" option. | |||
| 2015-11-25 | Fixed man page by ensuring ".pot" doesn't render unescaped. | Tim Graham | |
| See https://github.com/sphinx-doc/sphinx/issues/2131 | |||
| 2015-11-23 | Corrected doc'd differences between django-admin and manage.py. | Stephane Angel (Twidi) | |
| 2015-11-18 | Refs #25526 -- Documented some missing termcolors. | Tim Graham | |
| 2015-10-24 | Fixed #25604 -- Added makemigrations --check option. | Jon Dufresne | |
| Command exits with non-zero status if changes without migrations exist. | |||
| 2015-10-21 | Fixed #25578 -- Corrected the casing of "GitHub". | Yusuke Miyazaki | |
| 2015-10-06 | Fixed #25516 -- Documented that parallel test excution doesn't work with pdb. | Tim Graham | |
| 2015-10-05 | Fixed #25500 -- Added --fail-level option to check command. | Jon Dufresne | |
| This option specifies the level that check command exits with a non-zero status. Default is ``ERROR``. | |||
| 2015-09-23 | Removed versionadded/changed annotations for 1.8. | Tim Graham | |
