summaryrefslogtreecommitdiff
path: root/django/core/management/commands/loaddata.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #34233 -- Used @functools.cache.Nick Pope2023-01-181-1/+1
* Fixed #33308 -- Added support for psycopg version 3.Daniele Varrazzo2022-12-151-1/+1
* Fixed #33949 -- Fixed fixture dirs duplicates with Path instances.Claude Paroz2022-08-231-1/+1
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-3/+10
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-61/+102
* Fixed #32317 -- Refactored loaddata command to make it extensible.William Schwartz2021-05-181-62/+90
* Refs #32317 -- Simplified find_fixtures() in loaddata command.William Schwartz2021-05-141-5/+4
* Refs #32317 -- Cleaned up try/except blocks in loaddata command.William Schwartz2021-05-141-19/+18
* Used model's Options.label where applicable.Mariusz Felisiak2020-12-291-3/+2
* Tweaked loaddata command to re-use a calculated value.Владимир Лысенко2020-09-171-1/+1
* Fixed #31552 -- Added support for LZMA and XZ fixtures to loaddata.Paolo Melchiorre2020-05-151-0/+9
* Refs #18325 -- Removed unnecessary line endings in management commands.François Freitag2020-04-271-1/+1
* Fixed #31428 -- Allowed empty message in management command self.stdout/err p...François Freitag2020-04-071-1/+1
* Removed redundant os.path.abspath() call.Jon Dufresne2019-04-251-1/+1
* Removed unnecessary assignments in various code.Jon Dufresne2019-04-241-2/+1
* Fixed #30184 -- Removed ellipsis characters from shell output strings.Dan Davis2019-02-131-2/+2
* Fixed loaddata error message when uncompressed fixture has a dot in its name.Sergey Fedoseev2018-09-261-1/+1
* Removed unneeded list() calls in list.extend() argument.Sergey Fedoseev2018-09-251-1/+1
* Refs #29654 -- Replaced three dots with ellipsis character in output strings.Claude Paroz2018-08-221-2/+2
* Fixed #26291 -- Allowed loaddata to handle forward references in natural_key ...Peter Inglesby2018-07-131-0/+6
* Removed parser.add_arguments() arguments that match the defaults.Claude Paroz2018-07-021-4/+4
* Fixed #28117 -- Added a helpful message in loaddata when psycopg2 can't load ...Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2017-12-301-1/+2
* Refs #23919 -- Replaced super() calls for old-style classes.Nick Pope2017-12-071-1/+1
* Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов2017-11-061-1/+1
* Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne2017-06-011-1/+1
* Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne2017-05-271-1/+1
* Fixed #27978 -- Allowed loaddata to read data from stdin.Pavel Kulikov2017-05-261-0/+17
* Removed implicit default store_true/false argparse args.Jon Dufresne2017-04-011-1/+1
* Refs #27795 -- Removed unneeded force_text callsClaude Paroz2017-03-041-2/+1
* Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan2017-02-211-7/+3
* Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham2017-01-201-2/+1
* Refs #23919 -- Stopped using django.utils.lru_cache().Aymeric Augustin2017-01-181-2/+2
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-2/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Fixed #20468 -- Added loaddata --exclude option.Berker Peksag2016-06-091-1/+9
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-22/+36
* Refs #26315 -- Cleaned up argparse options in commands.Jon Dufresne2016-03-051-4/+4
* Removed obsolete, unused option 'hide_empty' from loaddata command.Jon Dufresne2016-03-011-4/+1
* Fixed #21549 -- Made loaddata's 'fixture not found' warning an exception.Andrew Kuchev2016-01-041-2/+1
* Fixed #23372 -- Made loaddata faster if it doesn't find any fixtures.Anssi Kääriäinen2015-12-311-0/+10
* Fixed #24978 -- Escaped special characters in loaddata fixture pathsMoritz Sichert2015-06-131-1/+3
* Fixed #21652 -- Added notification when processing objects in loaddataYitzhak Clark2015-04-161-1/+8
* 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-4/+6
* Removed support for initial_data fixtures per deprecation timeline.Tim Graham2015-01-171-7/+1
* Fixed #23468 -- Added checks for duplicate fixtures directories in loaddata.Konrad Świat2014-10-311-3/+14
* Fixed #23612 -- Normalized fixuture paths to allow referencing relative paths...Brandon Taylor2014-10-091-1/+1
* Only warn about initial data if fixtures have been found.Florian Apolloner2014-07-271-1/+1
* Mark initial_data as deprecated separately from syncdb. Refs #23077.Andrew Godwin2014-07-251-0/+6
* Converted remaining management commands to argparseClaude Paroz2014-06-141-18/+14