summaryrefslogtreecommitdiff
path: root/django/core/management/commands/dumpdata.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-1/+1
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-3/+9
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-53/+83
* Fixed #32291 -- Added fixtures compression support to dumpdata.Paolo Melchiorre2021-01-121-1/+44
* Made small readability improvements.Martin Thoma2020-10-281-3/+2
* Refs #31051 -- Made dumpdata do not sort dependencies if natural foreign keys...Matthijs Kooijman2020-04-071-1/+11
* Fixed #31051 -- Allowed dumpdata to handle circular references in natural keys.Matthijs Kooijman2020-04-071-1/+1
* Fixed typos in docs, comments, and exception messages.Ville Skyttä2019-04-181-1/+1
* Fixed #30159 -- Removed unneeded use of OrderedDict.Nick Pope2019-02-061-3/+2
* Removed parser.add_arguments() arguments that match the defaults.Claude Paroz2018-07-021-5/+5
* Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов2017-12-041-1/+1
* Removed unnecessary parens in various code.Mariusz Felisiak2017-09-131-1/+1
* Used OrderedDict.fromkeys() to initialize OrderedDict with None values.Sergey Fedoseev2017-08-231-2/+2
* Removed implicit default store_true/false argparse args.Jon Dufresne2017-04-011-3/+3
* Refs #23919 -- Used yield from.Vytis Banaitis2017-02-231-2/+1
* Fixed #26826 -- Stripped spaces from dumpdata pks argumentsClaude Paroz2016-07-161-1/+1
* Fixed #20468 -- Added loaddata --exclude option.Berker Peksag2016-06-091-15/+2
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-33/+56
* Refs #26315 -- Cleaned up argparse options in commands.Jon Dufresne2016-03-051-10/+10
* Refs #26144 -- Used proxy_for_model instead of mro inspection.Simon Charette2016-02-051-2/+1
* Fixed #26144 -- Warned when dumping proxy model without concrete parent.Yoong Kang Lim2016-02-041-1/+13
* Fixed #22258 -- Added progress status for dumpdata when outputting to fileClaude Paroz2015-07-241-5/+18
* Fixed #24776 -- Improved apps.get_app_config() error message on fully-qualifi...Peter Inglesby2015-05-221-6/+6
* Fixed #24351, #24346 -- Changed the signature of allow_migrate().Loic Bistuer2015-02-201-1/+1
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-2/+2
* Removed dumpdata --natural option and serializers use_natural_keys parameter.Tim Graham2015-01-171-10/+1
* Fixed #23660 -- Moved sort_dependencies to core.Collin Anderson2014-10-161-80/+1
* Converted remaining management commands to argparseClaude Paroz2014-06-141-27/+27
* Fixed a few ResourceWarning in the test suite. Refs #22680.Loic Bistuer2014-05-261-4/+9
* Fixed #14226 -- Dependency calculation for complex M2M relations.Rainer Koirikivi2014-05-111-5/+9
* flake8 and doc fixes for refs #22257.Tim Graham2014-03-251-1/+1
* Fixed #22257 -- Added file output option to dumpdata command.Anubhav Joshi2014-03-251-1/+4
* Mentioned that ``dumpdata --natural`` is deprecated.Daniel Hahler2014-03-181-1/+1
* Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz2014-03-081-1/+2
* Fixed #22025 -- Listing app followed by app.Model in dumpdata commandEli Bendersky2014-02-121-2/+7
* Took advantage of the new get_model API. Refs #21702.Aymeric Augustin2014-01-261-4/+3
* Removed the only_with_models_module argument of get_model[s].Aymeric Augustin2013-12-301-2/+2
* Added AppConfig.get_models().Aymeric Augustin2013-12-291-1/+1
* Changed get_model to raise an exception on errors.Aymeric Augustin2013-12-281-4/+6
* Used app_label instead of appname.Aymeric Augustin2013-12-281-8/+12
* Refactored dumpdata with app configs instead of models modules.Aymeric Augustin2013-12-271-24/+19
* Renamed AppCache to Apps.Aymeric Augustin2013-12-241-10/+10
* Moved apps back in the toplevel django namespace.Aymeric Augustin2013-12-221-2/+2
* Moved the new app cache inside core.Aymeric Augustin2013-12-171-2/+2
* Made it possible to create apps without a models module.Aymeric Augustin2013-12-171-4/+5
* Deprecated get_app().Aymeric Augustin2013-12-171-7/+6
* Deprecated get_apps().Aymeric Augustin2013-12-171-1/+3
* Removed module-level functions for the app cache.Aymeric Augustin2013-12-171-10/+10
* More attacking E302 violatorsAlex Gaynor2013-11-021-0/+1
* Fixed up some more flake8 violations (this particular violation still has man...Alex Gaynor2013-10-261-1/+1