summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-06Refs #27753 -- Favored force/smart_str() over force/smart_text().Aymeric Augustin
2019-02-06Fixed #30159 -- Removed unneeded use of OrderedDict.Nick Pope
Dicts preserve order since Python 3.6.
2019-02-06Fixed #30157 -- Dropped support for Oracle 12.1.Mariusz Felisiak
Thanks Tim Graham for the review.
2019-02-06Refs #27804 -- Used subTest() in admin_scripts invalid name tests.Jon Dufresne
2019-02-05Simplified and corrected LOGIN_URL, LOGIN_REDIRECT_URL, and ↵Tim Graham
LOGOUT_REDIRECT_URL docs.
2019-02-05Refs #27753 -- Removed django.utils.safestring.SafeBytes.Tim Graham
2019-02-05Refs #27753 -- Removed django.utils.functional.curry().Tim Graham
2019-02-05Refs #27753 -- Removed django.utils.decorators.ContextDecorator alias.Tim Graham
2019-02-05Refs #27753 -- Removed django.utils.six.Tim Graham
2019-02-05Refs #27753 -- Removed django.utils._os.abspathu(), upath(), and npath().Tim Graham
2019-02-05Refs #27753 -- Removed django.utils.decorators.available_attrs().Tim Graham
2019-02-05Refs #27753 -- Removed django.utils.lru_cache.Tim Graham
2019-02-05Refs #27753 -- Removed django.test.utils.patch_logger() and str_prefix().Tim Graham
2019-02-05Simplified temporary directory handling in AdminScriptTestCase.Jon Dufresne
Use tempfile.TemporaryDirectory() in AdminScriptTestCase.setUp() to create and destroy a temporary directory for each test. It removes the need for individual tests to delete files. For test classes that don't use the temporary directory, inherit from SimpleTestCase.
2019-02-05Replaced manual current directory management with subprocess's cwd argument.Jon Dufresne
2019-02-05Removed redundant os.chdir() in RunInTmpDirMixin child classes.Jon Dufresne
setUp() already calls os.chdir(self.test_dir).
2019-02-05Removed unused branch from SymlinkExtractorTests.test_symlink().Jon Dufresne
Unused since bb7bb379e8cd91a91336946829519d64e919a1d2. SymlinkExtractorTests.test_dir, which contains SymlinkExtractorTests.symlinked_dir, is deleted after every test.
2019-02-05Removed unused RunInTmpDirMixin.rmfile().Jon Dufresne
Unused since bb7bb379e8cd91a91336946829519d64e919a1d2.
2019-02-04Removed django.utils.lru_cache usage.Tim Graham
2019-02-04Refs #27753 -- Deprecated django.utils.http urllib aliases.Tim Graham
2019-02-04Fixed duplicate word in docs/releases/2.0.txt. (#10934)Daniel Hahler
2019-02-04Fixed #30155 -- Dropped support for PostgreSQL 9.4 and PostGIS 2.1.Tim Graham
2019-02-04Fixed #30156 -- Dropped support for SpatiaLite 4.1 and 4.2.Tim Graham
2019-02-04Refs #30055 -- Bumped minimum SQLite version in GIS docs.Tim Graham
2019-02-04Refs #28859 -- Simplified fetch_returned_insert_id() by using int data type ↵Mariusz Felisiak
for binding variable on Oracle.
2019-02-02Fixed #29393 -- Prevented infinite loop in ↵Vinay Karanam
ExceptionReporter.get_traceback_frames().
2019-02-02Removed unused words from docs/spelling_wordlist.Mariusz Felisiak
2019-02-01Used extlinks for GitHub commits.Tim Graham
2019-01-31Fixed #30020 -- Fixed reading nulls with LayerMapping.Kathryn Killebrew
2019-01-31Used LoginRequiredMixin in "Models and request.user" example.Daniel Roseman
2019-01-31Refs #28161 -- Doc'd INSTALLED_APPS requirement for ArrayField(CIText).Robert Coup
2019-01-31Fixed #30147 -- Simplified directory creation with os.makedirs(..., ↵Jon Dufresne
exist_ok=True).
2019-01-31Corrected output of Prefetch.to_attr example.Sergey Fedoseev
2019-01-30Refs #29444 -- Renamed DatabaseFeatures.can_return_id* to be generic for ↵Johannes Hoppe
other columns.
2019-01-30Fixed #30076 -- Added Model.get_FOO_display() even if field's choices are empty.Joshua Cannon
2019-01-30Fixed #30091 -- Doc'd middleware ordering requirements with CSRF_USE_SESSIONS.Carlton Gibson
2019-01-30Fixed #30116 -- Dropped support for Python 3.5.Tim Graham
2019-01-30Fixed E117 and F405 flake8 warnings.Mariusz Felisiak
2019-01-29Fixed #30108 -- Allowed adding foreign key constraints in the same statement ↵Dan Tao
that adds a field.
2019-01-29Refs #30137 -- Fixed template test on Windows.Tim Graham
Broken in 7785e03ba89aafbd949191f126361fb9103cb980.
2019-01-29Fixed typo in docs/releases/2.2.txt.Daniel Hahler
2019-01-28Fixed #29973 -- Added compilemessages --ignore option.rsiemens
2019-01-28Refs #29973 -- Extracted helper functions from makemessages.rsiemens
2019-01-28Fixed #29825 -- Fixed JS ngettext if the string is a non-plural msgid in the ↵Claude Paroz
catalog.
2019-01-28Fixed #25624 -- Fixed autoreload crash with jinja2.ModuleLoader.Tom Forbes
2019-01-28Made test table cleanup in OperationTestBase more robust.Paveł Tyślacki
Some non-unique constraint names were added in b69f8eb04cc8762d3dfd5af5ea1fc58e3f2ebcc3 which resulted in failures depending on the order in which tests were run.
2019-01-28Fixed #30137 -- Replaced OSError aliases with the canonical OSError.Jon Dufresne
Used more specific errors (e.g. FileExistsError) as appropriate.
2019-01-28Refs #30055 -- Added a helpful error when SQLite is too old.Tim Graham
2019-01-28Refs #30033 -- Doc'd change regarding apps without migrations depending on ↵Tim Graham
apps with migrations. The addition of self.connection.check_constraints() in 7289874adceec46b5367ec3157cdd10c711253a0 is the cause.
2019-01-27Removed default mode='r' argument from calls to open().Jon Dufresne