summaryrefslogtreecommitdiff
path: root/django/core
AgeCommit message (Expand)Author
2020-04-20Capitalized Unicode in docs, strings, and comments.Jon Dufresne
2020-04-20Fixed #31477 -- Removed "using" argument from DatabaseOperations.execute_sql_...Jon Dufresne
2020-04-17Fixed #31473 -- Made sql_flush() use RESTART IDENTITY to reset sequences on P...Jon Dufresne
2020-04-15Refs #27468 -- Changed default Signer algorithm to SHA-256.Claude Paroz
2020-04-14Fixed #29501 -- Allowed dbshell to pass options to underlying tool.Adam Johnson
2020-04-14Refs #29501 -- Allowed customizing exit status for management commands.Adam Johnson
2020-04-14Refs #29501 -- Simplified BaseCommand.run_from_argv() a bit.Adam Johnson
2020-04-14Refs #29501 -- Made dbshell catch more specific FileNotFoundError.Adam Johnson
2020-04-07Refs #31051 -- Made dumpdata do not sort dependencies if natural foreign keys...Matthijs Kooijman
2020-04-07Fixed #31051 -- Allowed dumpdata to handle circular references in natural keys.Matthijs Kooijman
2020-04-07Fixed #31428 -- Allowed empty message in management command self.stdout/err p...François Freitag
2020-04-01Fixed #31380 -- Added deployment system check for DJANGO_ALLOW_ASYNC_UNSAFE e...hashlash
2020-03-26Fixed #31402 -- Added migrate --check option.Gordon Pendleton
2020-03-18Fixed #31224 -- Added support for asynchronous views and middleware.Andrew Godwin
2020-03-09Fixed #31318 -- Allowed sqlmigrate to inspect squashed migrations.David Wobrock
2020-03-09Refs #31318 -- Optimized sqlmigrate by using MigrationLoader.David Wobrock
2020-03-09Refs #31318 -- Moved MigrationExecutor.collect_sql() to MigrationLoader.David Wobrock
2020-03-06Optimized a bit handle() of sqlmigrate management command.David Wobrock
2020-03-05Fixed #31327 -- Deprecated providing_args argument for Signal.Jon Dufresne
2020-02-28Fixed #31311 -- Removed unneeded escapes in validator regexes.kimbo
2020-02-28Fixed #31314 -- Raised CommandError when locale is not specified in makemessa...Cristobal Mackenzie
2020-02-19Refs #31224 -- Added BaseHandler.check_response().Andrew Godwin
2020-02-11Fixed #31240 -- Properly closed FileResponse when wsgi.file_wrapper is used.Florian Apolloner
2020-02-11Fixed #31253 -- Fixed data loss possibility when using caching from async code.Jon Dufresne
2020-02-07Refs #31055 -- Added --database option to the check management command.Simon Charette
2020-02-04Simplified imports from django.db and django.contrib.gis.db.Nick Pope
2020-01-29Used model's Options.label/label_lower where applicable.Mariusz Felisiak
2020-01-29Removed "Pocket PC" from terminal color support function.Nick Pope
2020-01-08Refs #23919 -- Removed obsolete comment in signing.pyClaude Paroz
2020-01-08Fixed #31141 -- Relaxed system check of translation settings for sublanguages.Mariusz Felisiak
2019-12-13Fixed #26743 -- Fixed UnboundLocalError crash when deserializing m2m fields a...Baptiste Mispelon
2019-12-12Refs #23919 -- Used yield from in inspectdb.Jon Dufresne
2019-11-18Removed unnecessary parentheses in various code.Jon Dufresne
2019-11-14Fixed #30759 -- Made cache.delete() return whether it succeeded.daniel a rios
2019-11-06Refs #29983 -- Added pathlib.Path support to the file email backend.Jon Dufresne
2019-10-31Refs #28428 -- Made FileSystemStorage.save() to support pathlib.Path.Hasan Ramezani
2019-10-29Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani
2019-10-29Refs #30899 -- Moved _lazy_re_compile() to the django.utils.regex_helper.Hasan Ramezani
2019-10-15Fixed #30872 -- Improved unknown command message when settings are manually c...Carlton Gibson
2019-10-14Fixed #30870 -- Fixed showing that RunPython operations are irreversible by m...Mariusz Felisiak
2019-10-02Fixed #14218 -- Added Paginator.__iter__().Tanner Stirrat
2019-10-01Fixed #30651 -- Made __eq__() methods return NotImplemented for not implement...ElizabethU
2019-09-24Removed some outdated backwards compatibility imports and misleading comments.Mads Jensen
2019-09-18Fixed #30772 -- Optimized make_template_fragment_key().Daniel Fairhead
2019-09-10Refs #29703 -- Removed QuerySetPaginator alias per deprecation timeline.Mariusz Felisiak
2019-09-10Refs #29817 -- Removed settings.FILE_CHARSET per deprecation timeline.Mariusz Felisiak
2019-09-09Fixed #29406 -- Added support for Referrer-Policy header.Nick Pope
2019-09-09Fixed #30426 -- Changed X_FRAME_OPTIONS setting default to DENY.Claude Paroz
2019-09-06Fixed #30763 -- Fixed management commands when using required mutually exclus...Hasan Ramezani
2019-08-30Fixed #30736 -- Added Storage.get_alternative_name() to allow customization.yukihira1992