summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-09-17Fixed #27899 -- Added support for phrase/raw searching in SearchQuery.Claude Paroz
Thanks Tim Graham, Nick Pope, and Claude Paroz for contribution and review.
2018-09-17Fixed #29761 -- Confirmed support for PROJ 5.x.Sergey Fedoseev
2018-09-17Simplified ListMixin.sort().Sergey Fedoseev
2018-09-17Fixed #29757 -- Documented Oracle DSN and Easy Connect options.jtiai
2018-09-16Fixed #29759 -- Fixed crash on Oracle when fetching a returned insert id ↵Mariusz Felisiak
with cx_Oracle 7.
2018-09-14Simplified introspection methods for PostgreSQL.Nick Pope
2018-09-14Fixed #29642 -- Added check for arguments of custom error handler views.Adam Johnson
2018-09-14Fixed #29756 -- Doc'd that model field names can't end with an underscore.Tim Graham
2018-09-14Fixed #29755 -- Made migrations detect changes to Meta.default_related_name.Simon Charette
2018-09-13Simplified expressions.tests.Mariusz Felisiak
2018-09-13Refs #14357 -- Deprecated Meta.ordering affecting GROUP BY queries.Ramiro Morales
Thanks Ramiro Morales for contributing to the patch.
2018-09-13Removed shadowing of built-in hash() function.Andrey Kostakov
2018-09-12Fixed typo in docs/ref/contrib/postgres/search.txt.Adam Zapletal
2018-09-11Emphasized that TemplatesSetting must be used to override widget templates.Stephen Finucane
2018-09-11Fixed #29749 -- Made the migrations loader ignore files starting with a ↵Tim Graham
tilde or underscore. Regression in 29150d5da880ac1db15e47052330790cf1b802d2.
2018-09-11Refs #29560 -- Fixed typo in django/core/management/base.py.Nick Pope
2018-09-11Fixed #29746 -- Fixed misleading FlatpageForm URL help text if APPEND_SLASH ↵Tom Carrick
is disabled.
2018-09-11Fixed #29560 -- Added --force-color management command option.Hasan Ramezani
2018-09-11Reused a duplicated class in admin_scripts tests.Tim Graham
2018-09-11Fixed env.note_versionchange() deprecation warning in Sphinx 1.8.Tim Graham
2018-09-10Removed usage of deprecated sphinx APIs.Tim Graham
2018-09-10Fixed #16995 -- Clarified interaction of initial and extra with model formsets.melipone
2018-09-10Fixed #29500 -- Fixed SQLite function crashes on null values.Srinivas Reddy Thatiparthy
Co-authored-by: Srinivas Reddy Thatiparthy <thatiparthysreenivas@gmail.com> Co-authored-by: Nick Pope <nick.pope@flightdataservices.com>
2018-09-10Combined two identical SQLite functions.Nick Pope
2018-09-10Made some date parsing in SQLite functions more DRY.Nick Pope
2018-09-10Refs #20910 -- Replaced snippet directive with code-block.Curtis Maloney
2018-09-10Fixed #29729 -- Updated contributing tutorial to run tests on master.Adam Johnson
2018-09-10Fixed #29243 -- Improved efficiency of migration graph algorithm.Krzysztof Gogolewski
2018-09-10Fixed #29573 -- Added links in aggregation topic guide.Vishvajit Pathak
2018-09-08Fixed #29728 -- Prevented session resaving if CSRF cookie is unchanged.Michal Čihař
2018-09-08Fixed #29727 -- Made nonexistent joins in F() raise FieldError.Alexander Holmbäck
Regression in 2162f0983de0dfe2178531638ce7ea56f54dd4e7.
2018-09-08Moved test for nonexistent field in F() to BasicExpressionsTest.Alexander Holmbäck
2018-09-06Refs #29713 -- Improved error message from translation system check.Nick Pope
2018-09-04Corrected forms.TimeField's default widget in docs.flh
2018-09-03Fixed #29713 -- Added check that LANGUAGE_CODE uses standard language id format.David
2018-09-01Refs #16470 -- Fixed typo in a FileResponse test.James Aylett
2018-08-31Refs #27795 -- Removed force_text() in Model._get_FIELD_display().Jon Dufresne
2018-08-31Refs #29426 -- Fixed typo in docs/releases/2.2.txt.Josh Schneier
2018-08-31Updated language statistics script to not use the shellClaude Paroz
2018-08-31Added stub release notes for 2.1.2.Carlton Gibson
2018-08-31Added release date for 2.1.1.Carlton Gibson
2018-08-30Fixed #29723 -- Fixed crash if InlineModelAdmin.has_add_permission() doesn't ↵Tim Graham
accept the obj argument. * Refs #27991 -- Added testing for ModelAdmin.get_inline_instances() if the inline's has_add_permission() doesn't accept 'obj'. * Fixed #29723 -- Fixed crash if InlineModelAdmin.has_add_permission() doesn't accept the obj argument.
2018-08-29Refs #29689 -- Moved FilePathField choices sorting outside the loop.Sergey Fedoseev
2018-08-29Fixed #29694 -- Fixed column mismatch crash with QuerySet.values() or ↵Mariusz Felisiak
values_list() after combining querysets with extra() with union(), difference(), or intersection(). Regression in 0b66c3b442875627fa6daef4ac1e90900d74290b.
2018-08-28Fixed #29718 -- Doc'd admin template collision backwards incompatibility in ↵Tim Graham
Django 2.1.
2018-08-28Fixed LayerMapping encoding in geodjango tutorial.Claude Paroz
GDAL >= 1.9 automatically converts latin-1-encoded strings from Shapefiles to UTF-8.
2018-08-28Refs #27795 -- Removed force_bytes() usage in django/utils/cache.py.Jon Dufresne
2018-08-28Refs #29654 -- Replaced three dots with ellipsis in DB creation output strings.Jon Dufresne
2018-08-28Refs #27795 -- Removed force_bytes()/smart_text() from model fields.Jon Dufresne
2018-08-28Fixed typo in docs/ref/models/fields.txt.Matt Wiens