summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2019-02-14Fixed #30181 -- Made cache.get() with default work correctly on PyLibMCCache ↵Jakub Szafrański
if None is cached.
2019-02-14Fixed #29619 -- Added field names to some FieldErrors.Hasan Ramezani
2019-02-14Optimized iterator exhaustion using collections.deque().Nick Pope
2019-02-14Refs #15902 -- Deprecated storing user's language in the session.Claude Paroz
2019-02-14Fixed #30171 -- Fixed DatabaseError in servers tests.Jon Dufresne
Made DatabaseWrapper thread sharing logic reentrant. Used a reference counting like scheme to allow nested uses. The error appeared after 8c775391b78b2a4a2b57c5e89ed4888f36aada4b.
2019-02-13Fixed #30173 -- Simplified db.backends.postgresql.client.Daniel Bowring
2019-02-13Fixed #30184 -- Removed ellipsis characters from shell output strings.Dan Davis
Partially reverted 50b8493581fea3d7137dd8db33bac7008868d23a (refs #29654) to avoid a crash when the user shell doesn't support non-ASCII characters.
2019-02-12Fixed #22423 -- Added support for MySQL operators on real geometries.Claude Paroz
Thanks Viswanathan Mahalingam for the report and initial patch, and Nicke Pope and Tim Graham for the review.
2019-02-12Removed unneeded list() calls in enumerate() argument.Sergey Fedoseev
2019-02-11Fixed CVE-2019-6975 -- Fixed memory exhaustion in utils.numberformat.format().Carlton Gibson
Thanks Sjoerd Job Postmus for the report and initial patch. Thanks Michael Manfre, Tim Graham, and Florian Apolloner for review.
2019-02-09Removed unneeded list() calls in sorted() argument.Sergey Fedoseev
2019-02-09Fixed #29391 -- Made PostgresSimpleLookup respect Field.get_db_prep_value().Vinay Karanam
2019-02-09Fixed #30153 -- Fixed incorrect form Media asset ordering after three way merge.Matthias Kestenholz
Delaying merging assets as long as possible avoids introducing incorrect relative orderings that cause a broken final result.
2019-02-09Removed uneeded generator expressions and list comprehensions.Sergey Fedoseev
2019-02-09Refs #26608 -- Added a database feature for fixed frame range distance support.Simon Charette
2019-02-09Fixed #30027 -- Errored out on Window function usage if unsupported.Simon Charette
2019-02-09Refs #30027 -- Enabled window function tests on SQLite 3.25+.Simon Charette
2019-02-09Simplified Window.as_sql().Sergey Fedoseev
2019-02-09Dropped support for GEOS 3.4.Tim Graham
2019-02-09Confirmed support for GDAL 2.4.Tim Graham
2019-02-08Simplified FileBasedCache.clear().Jon Dufresne
glob.glob1() ignores missing paths.
2019-02-08Fixed #30004 -- Changed default FILE_UPLOAD_PERMISSION to 0o644.Himanshu Lakhara
2019-02-08Fixed #30166 -- Dropped support for GDAL 1.11.Tim Graham
2019-02-08Fixed #30165 -- Deprecated ugettext(), ugettext_lazy(), ugettext_noop(), ↵Jon Dufresne
ungettext(), and ungettext_lazy().
2019-02-07Fixed #16027 -- Added app_label to ContentType.__str__().Gregory N. Schmit
2019-02-07Updated Oracle docs links to Oracle 18c.Mariusz Felisiak
2019-02-06Removed unnecessary type() calls for class methods.Jon Dufresne
2019-02-06Refs #27753 -- Favored SafeString over SafeText.Tim Graham
2019-02-06Refs #27753 -- Deprecated django.utils.encoding.force_text() and smart_text().Tim Graham
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-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-04Removed django.utils.lru_cache usage.Tim Graham
2019-02-04Refs #27753 -- Deprecated django.utils.http urllib aliases.Tim Graham
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 #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-01-31Fixed #30020 -- Fixed reading nulls with LayerMapping.Kathryn Killebrew
2019-01-31Fixed #30147 -- Simplified directory creation with os.makedirs(..., ↵Jon Dufresne
exist_ok=True).
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