summaryrefslogtreecommitdiff
path: root/django/db/utils.py
Commit message (Expand)AuthorAgeFilesLines
* Added backward compatibility test for ConnectionHandler.databases property.Nick Pope2022-05-131-0/+3
* Made closing in connection handlers more DRY.Nick Pope2022-05-121-8/+0
* Moved ensure_defaults() and prepare_test_settings() logic to ConnectionHandle...Florian Apolloner2022-03-171-44/+25
* Removed usage of django.db.utils.ConnectionHandler.databases.Florian Apolloner2022-03-171-3/+3
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-41/+46
* Fixed #30398 -- Added CONN_HEALTH_CHECKS database setting.Przemysław Suliga2021-12-011-0/+1
* Refs #25175 -- Removed postgresql_psycopg2 in django.db.utils.load_backend().Mariusz Felisiak2021-01-061-1/+1
* Simplified django.db.utils.load_backend().William Schwartz2021-01-041-3/+2
* Fixed #32233 -- Cleaned-up duplicate connection functionality.Florian Apolloner2020-12-081-54/+29
* Fixed #32197 -- Improved error message when loading a database backend fails.Hasan Ramezani2020-11-161-2/+4
* Fixed #25388 -- Added an option to allow disabling of migrations during test ...Jon Dufresne2019-11-201-2/+9
* Fixed #30451 -- Added ASGI handler and coroutine-safety.Andrew Godwin2019-06-201-2/+8
* Fixed #30071 -- Fixed error message when a 'default' database isn't provided.Benjy Weinberger2019-01-091-3/+2
* Ref #23919 -- Replaced some os.path usage with pathlib.Path.Tom2018-04-191-2/+2
* Refs #23919 -- Used "raise from" instead of __cause__ in reraising backend-sp...Mariusz Felisiak2017-04-251-2/+1
* Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan2017-02-281-7/+5
* Tidied djang.db.utils.load_backend().Tim Graham2017-01-241-15/+11
* Refs #23919 -- Removed __traceback__ setting needed for Python 2.Tim Graham2017-01-241-2/+0
* Refs #23919 -- Replaced six.reraise by raiseClaude Paroz2017-01-221-2/+1
* Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham2017-01-201-3/+2
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-3/+3
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-1/+1
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-1/+1
* Fixed #25761 -- Added __cause__.__traceback__ to reraised exceptions.Raphaël Hertzog2015-12-031-0/+2
* Refs #24351 -- Removed support for the old allow_migrate() signature per depr...Tim Graham2015-09-231-23/+1
* Fixed #25175 -- Renamed the postgresql_psycopg2 database backend to postgresql.Caio Ariede2015-08-071-2/+10
* Fixed db.utils.load_backend() on non-ASCII paths.Tim Graham2015-07-171-2/+2
* Filtered out 'base' from database backend choices error message.Tim Graham2015-07-151-1/+1
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-3/+3
* Fixed #24979 -- Removed usage of inspect.getargspec().Tim Graham2015-06-151-2/+10
* Fixed flake8 warnings on Python 3.Tim Graham2015-06-151-1/+1
* Fixed #23820 -- Supported per-database time zone.Aymeric Augustin2015-05-171-1/+1
* Fixed #24394 -- Allowed running tests with empty default dictionary.Andrei Kulakov2015-03-251-0/+3
* Fixed #24351, #24346 -- Changed the signature of allow_migrate().Loic Bistuer2015-02-201-6/+29
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-4/+3
* Removed support for old-style test database settings per deprecation timeline.Tim Graham2015-01-171-39/+0
* Removed fallback suport for allow_syncdb() in database routers per deprecatio...Tim Graham2015-01-171-8/+1
* Fixed #22583 -- Allowed RunPython and RunSQL to provide hints to the db router.Loic Bistuer2015-01-101-2/+2
* Fixed #21255 -- Closed connections after management command ranClaude Paroz2014-12-291-0/+8
* Restored the 'TEST_' prefix in the warning about deprecated test database set...Shai Berger2014-12-011-1/+1
* Fixed #21755 -- Added ForeignKey support to REQUIRED_FIELDS.Anubhav Joshi2014-07-031-4/+4
* Silenced deprecation warnings for refs #22811 and fixed build.Tim Graham2014-06-121-1/+1
* Fixed #22811 -- Allowed setting both the old and new TEST database settings.Tim Graham2014-06-121-7/+19
* Fixed #21430 -- Added a RuntimeWarning when unpickling Models and QuerySets f...Anubhav Joshi2014-06-111-0/+1
* Removed deprecated TRANSACTIONS_MANAGED setting.Aymeric Augustin2014-03-211-6/+1
* Fixed the last fix for database test settings to work with Python3.Shai Berger2014-03-091-1/+1
* Fixed test breakage following test-settings enhancementsShai Berger2014-03-091-0/+3
* Reorganized the database test settingsShai Berger2014-03-091-2/+36
* Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz2014-03-081-2/+3
* Silence deprecation warnings.Marc Tamlyn2014-02-091-2/+2