| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-07-23 | [2.1.x] Fixed #29514 -- Reverted "Used datetime.timezone.utc instead of ↵ | Tim Graham | |
| pytz.utc for better performance." This reverts commit 27ca5ce19f5f184018a61611c1bc319113b1d107 due to a regression. Backport of 2ec151e35da93047acfeea1b79c27010f2cb8594 from master | |||
| 2018-07-18 | [2.1.x] Removed duplicate words in various comments. | Mariusz Felisiak | |
| Backport of a73cf8110e6cccbf46bf77fd4ddce2df99df53ca from master | |||
| 2018-06-16 | [2.1.x] Fixed #29469 -- Added a helpful makemigrations error if app_label ↵ | oliver | |
| contains dots. Backport of 78972af367a1da54aa7e539e4b1ffa2b56571e77 from master | |||
| 2018-06-12 | [2.1.x] Fixed #29452 -- Fixed makemessages setting charset of .pot files. | Bartosz Grabski | |
| Backport of 2bc014750adb093131f77e4c20bc17ba64b75cac from master | |||
| 2018-06-06 | [2.1.x] Fixed #29301 -- Added custom help formatter to BaseCommand class | Claude Paroz | |
| This partially reverts c3055242c81812278ebdc93dd109f30d2cbd1610. Thanks Adam Johnson and Carlton Gibson for the reviews. Backport of ce3351b9508896afdf87d11bd64fd6b5ad928228 from master. | |||
| 2018-05-27 | [2.1.x] Removed obsolete BaseHandler attributes. | Daniel Hepper | |
| Unused since d334f46b7a080fd3eb720141c19b37b10704a352. Backport of 4e016d137236d36d47462f63e8f7988f1ad6c12e from master | |||
| 2018-05-14 | Fixed #29392 -- Disallowed use of abbreviated forms of --settings and ↵ | Ryan P Kilby | |
| --pythonpath management command options. | |||
| 2018-05-13 | Fixed #17379 -- Removed management commands deactivation of the locale. | Claude Paroz | |
| 2018-05-09 | Fixed #29389 -- Made Paginator reject non-integer page numbers of type float. | Nicolas Noé | |
| 2018-05-04 | Fixed #26688 -- Fixed HTTP request logging inconsistencies. | Samir Shah | |
| * Added logging of 500 responses for instantiated responses. * Added logging of all 4xx and 5xx responses. | |||
| 2018-04-27 | Fixed #27480 -- Added cache.touch(). | Nicolas Noé | |
| 2018-04-21 | Fixed #29295 -- Fixed management command crash when using subparsers. | Hasan Ramezani | |
| Thanks Tim Graham for the fix. | |||
| 2018-04-19 | Ref #23919 -- Replaced some os.path usage with pathlib.Path. | Tom | |
| 2018-04-11 | Fixed #29301 -- Made management command --help display command-specific ↵ | David Foster | |
| arguments before common arguments. | |||
| 2018-04-02 | Removed unused regexes in django.core.management.templates. | desigrammer | |
| Unused since their introduction in a9a0f0b03f9a02deb03617bf7e9773a307d1328f. | |||
| 2018-03-21 | Fixed #27533 -- Fixed inspectdb crash if a unique constraint uses an ↵ | Michael Sinov | |
| unsupported type. | |||
| 2018-03-21 | Fixed too many parentheses in inspectdb Meta.unique_together output. | Tim Graham | |
| Regression in c76d87427d70f6c91ab855ed688828aa982720d2. | |||
| 2018-03-21 | Refs #23919 -- Removed obsolete comments about u'' prefixes. | Tim Graham | |
| 2018-03-20 | Used datetime.timezone.utc instead of pytz.utc for better performance. | Sergey Fedoseev | |
| 2018-03-20 | Refs #29227 -- Made inspectdb generate BooleanField(null=True) rather than ↵ | Tim Graham | |
| NullBooleanField. | |||
| 2018-03-20 | Extracted deserialize fk/m2m functions from Deserializer. | Peter Inglesby | |
| In preparation for handling forward references (refs #26291). | |||
| 2018-03-16 | Fixed hanging indentation in various code. | Mariusz Felisiak | |
| 2018-03-13 | Quoted field names in cache db backend SQL. | Hajime Nakagami | |
| On Firebird, 'value' is a reserved word and must be quoted. | |||
| 2018-03-12 | Removed redundant UploadedFile.DEFAULT_CHUNK_SIZE. | Sergey Fedoseev | |
| The same value is inherited from File. | |||
| 2018-03-10 | Used cached_property for File.size. | Sergey Fedoseev | |
| 2018-03-08 | Fixed #29188 -- Fixed ContentFile.size after a write(). | Alex Stovbur | |
| 2018-03-02 | Fixed #29133 -- Fixed call_command() crash if a required option is passed in ↵ | Alex Tomic | |
| options. | |||
| 2018-02-26 | Removed unnecessary setdefault() from CheckRegistry.register(). | Mariusz Felisiak | |
| 2018-02-21 | Fixed #28398 -- Added suggestions for mistyped management commands. | Tom Forbes | |
| 2018-02-20 | Fixed #29140 -- Fixed EmailMessage crash when body is None. | Williams Mendez | |
| 2018-02-12 | Fixed #24607 -- Serialized natural keys in multi-table inheritance models. | Denys Duchier | |
| Thanks João Paulo Melo de Sampaio for the test. | |||
| 2018-02-07 | Refs #27795 -- Replaced force_bytes() usage in django.core.signing. | Asif Saifuddin Auvi | |
| 2018-02-05 | Refs #28814 -- Imported from collections.abc to fix Python 3.7 deprecation ↵ | Raymond Hettinger | |
| warnings. https://bugs.python.org/issue25988 | |||
| 2018-02-02 | Fixed imports per isort 4.3.1. | Tim Graham | |
| Partially reverted 9bcf73d788866bc93f8248cb2e9d601ecbc4b50c. | |||
| 2018-02-02 | Refs #27795 -- Replaced force_bytes() usage in django.core.cache. | Jon Dufresne | |
| 2018-02-01 | Fixed imports per isort 4.3.0. | Mariusz Felisiak | |
| 2018-01-31 | Refs #27795 -- Replaced force_text() usage in django.core.management. | Jon Dufresne | |
| Use decode() since Popen.communicate() always returns bytes. | |||
| 2018-01-31 | Removed unused os_err_exc_type kwarg from core.management.utils.popen_wrapper(). | Jon Dufresne | |
| Unused since its introduction in 7fca4416c7f7ce66d528f0d1ad829cf3b8290b89. | |||
| 2018-01-30 | Fixed #29065 -- Made django.core.validators only load Pillow if needed. | Collin Anderson | |
| 2018-01-27 | Fixed #29004 -- Added inspectdb --include-views option. | bquinn | |
| 2018-01-24 | Fixed #28977 -- Changed local-memory cache to use LRU culling. | Grant Jenks | |
| LRU culling turns every read into a kind of write to the cache: cache keys are moved to the first position in the OrderedDict when they are retrieved. The RWLock which permitted multiple readers while prioritizing a single writer is obsolete since all accesses are now writes. | |||
| 2018-01-12 | Fixed #28996 -- Simplified some boolean constructs and removed trivial ↵ | Дилян Палаузов | |
| continue statements. | |||
| 2018-01-10 | Fixed #29007 -- Fixed DecimalValidator crash on NaN, SNan, Inf, and Infinity ↵ | Fabio Bonelli | |
| values. | |||
| 2018-01-03 | Fixed #28982 -- Simplified code with and/or. | Дилян Палаузов | |
| 2018-01-03 | Simplified an iterator in core.serializers.sort_dependencies(). | Sergey Fedoseev | |
| Follow up to acc8dd4142ec81def9a73507120c0262ba6b1264. | |||
| 2018-01-03 | Fixed #28984 -- Made assorted code simplifications. | Tim Graham | |
| 2018-01-03 | Refs #23919 -- Removed obsolete __init__.py files in management command ↵ | я котик пур-пур | |
| directories. | |||
| 2018-01-01 | Fixed typo in TemplateCommand argument help text. | Philipp Bosch | |
| 2017-12-30 | Fixed #28117 -- Added a helpful message in loaddata when psycopg2 can't load ↵ | Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) | |
| a fixture due to NUL characters. | |||
| 2017-12-30 | Fixed #28912 -- Made EmailMessage.message() omit an empty To header. | Jon Dufresne | |
