summaryrefslogtreecommitdiff
path: root/django/core
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34568 -- Made makemigrations --update respect --name option.Mariusz Felisiak2023-05-171-3/+2
* Fixed #34535 -- Fixed SQLite dbshell crash on pathlib.Path when handling Comm...Jan Pieter Waagmeester2023-05-041-1/+1
* Fixed typo in ManagementUtility.autocomplete()'s docstring.Vitor [Bux]baum2023-04-131-2/+2
* Fixed #34484, Refs #34482 -- Reverted "Fixed #29186 -- Fixed pickling HttpReq...Mariusz Felisiak2023-04-121-10/+0
* Fixed #27505 -- Allowed customizing Paginator's error messages.Marcelo Galigniana2023-04-121-5/+22
* Fixed #34394 -- Added FORCE_SCRIPT_NAME handling to ASGIRequest.sarahboyce2023-04-121-10/+11
* Fixed #33738 -- Allowed handling ASGI http.disconnect in long-lived requests.th3nn3ss2023-04-031-3/+38
* Fixed some typos in comments, docstrings, and tests.Liyang Zhang2023-03-201-1/+1
* Improved connection clean-up for SMTP backend.Carlton Gibson2023-03-141-6/+8
* Fixed #32172 -- Adapted signals to allow async handlers.Jon Janzen2023-03-071-3/+1
* Fixed #34386 -- Made SMTP backend load default system root CA certificates by...Dmitriy Sintsov2023-03-061-2/+4
* Fixed CVE-2023-24580 -- Prevented DoS with too many uploaded files.Markus Holtermann2023-02-142-1/+11
* Fixed #32813 -- Made runserver display port after binding.Dhanush2023-02-102-26/+32
* Fixed #34259 -- Passed called_from_command_line to command subparsers.Adam Johnson2023-02-031-0/+10
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-015-6/+2
* Fixed #28054 -- Made runserver not return response body for HEAD requests.Sarah Boyce2023-01-271-1/+26
* Fixed #34294 -- Protected django.core.files.locks against argtypes redefiniti...Simon Sawicki2023-01-261-3/+4
* Refs #34233 -- Used @functools.cache.Nick Pope2023-01-183-3/+3
* Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak2023-01-187-10/+9
* Refs #34233 -- Used aiter() and anext().Nick Pope2023-01-181-1/+1
* Fixed #34233 -- Dropped support for Python 3.8 and 3.9.Mariusz Felisiak2023-01-184-13/+3
* Refs #29708 -- Removed PickleSerializer per deprecation timeline.Mariusz Felisiak2023-01-171-24/+0
* Refs #26029 -- Deprecated DEFAULT_FILE_STORAGE and STATICFILES_STORAGE settings.Jarosław Wygoda2023-01-122-3/+21
* Fixed #26029 -- Allowed configuring custom file storage backends.Jarosław Wygoda2023-01-122-0/+51
* Fixed #34110 -- Added in-memory file storage.Francesco Panico2023-01-102-0/+292
* Fixed #33865 -- Optimized LimitedStream wrapper.Nick Pope2023-01-052-46/+36
* Fixed #14094 -- Added support for unlimited CharField on PostgreSQL.Adrian Torres2022-12-281-1/+2
* Fixed #18468 -- Added support for comments on columns and tables.kimsoungryoul2022-12-281-13/+31
* Fixed #33735 -- Added async support to StreamingHttpResponse.Carlton Gibson2022-12-221-13/+17
* Refs #34118 -- Adopted asgiref coroutine detection shims.Carlton Gibson2022-12-202-9/+8
* Fixed #34212 -- Made RedisCacheClient.incr() use write connection.Leo2022-12-161-1/+1
* Fixed #33308 -- Added support for psycopg version 3.Daniele Varrazzo2022-12-151-1/+1
* Fixed #34209 -- Prevented FileBasedCache.has_key() crash caused by a race con...Marti Raudsepp2022-12-131-2/+3
* Fixed #33199 -- Deprecated passing positional arguments to Signer/TimestampSi...SirAbhi132022-12-091-7/+29
* Made inspectdb used Cursor.description.display_size for CharFields' max_length.Mariusz Felisiak2022-12-081-2/+2
* Refs #34118 -- Used smtplib's context parameter instead of keyfile and certfile.Mariusz Felisiak2022-11-161-9/+10
* Refs #34110 -- Added StorageSettingsMixin.Francesco Panico2022-11-112-16/+17
* Refs #34110 -- Reorganized django.core.files.storage into a separate module.Francesco Panico2022-11-113-209/+219
* Updated documentation and comments for RFC updates.Nick Pope2022-11-102-4/+4
* Refs #33374 -- Adjusted full match condition handling.Simon Charette2022-11-071-0/+6
* Fixed #29027 -- Fixed file_move_safe() crash when moving files with SELinux.Yuri Konotopov2022-10-241-6/+8
* Fixed #34085 -- Made management commands don't use black for non-Python files.Carlton Gibson2022-10-201-3/+1
* Removed unused branch in Paginator.validate_number().Marcelo Galigniana2022-10-131-4/+1
* Fixed #34068 -- Corrected output of runserver command for "0" IP address.Dhanush2022-10-041-1/+8
* Refs #32987 -- Relaxed system check for template tag modules with the same na...Mariusz Felisiak2022-10-031-5/+5
* Fixed #34051 -- Made makemigrations --check exit before making migrations.Jacob Walls2022-09-281-3/+6
* Fixed #34052 -- Made migrate --check don't emit signals and output when up to...JunKi Yoon2022-09-271-10/+14
* Improved migrate help text for the --check option.Mike Lissner2022-09-261-1/+4
* Fixed #34014 -- Fixed DecimalValidator validating 0 in positive exponent scie...Kamil Turek2022-09-171-2/+4
* Fixed #29186 -- Fixed pickling HttpRequest and subclasses.Anvesh Mishra2022-09-141-0/+10