summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-11-23Linked to prefetch_related_objects func in DB optimization docs.Luke Plant
2017-11-23Used bytes.hex() and bytes.fromhex() to simplify.Sergey Fedoseev
2017-11-22Fixed typo in docs/topics/forms/media.txt.Hyunwoo Park
2017-11-21Fixed #28820 -- Eliminated an extra query with QuerySet.update() on proxy ↵Yan Mitrofanov
models.
2017-11-21Clarified who the AdminEmailHandler emails.Frédéric Massart
2017-11-21Fixed #28817 -- Made QuerySet.iterator() use server-side cursors after ↵Dražen Odobašić
values() and values_list().
2017-11-21Added assertion helpers for PostgreSQL's server-side cursor tests.Tim Graham
2017-11-20Fixed #28804 -- Fixed "Unknown system variable 'transaction_isolation'" on ↵Tim Graham
MariaDB. Regression in 967450a3bf940c43db891fe1e2ef3bcf73456ff8.
2017-11-18Fixed #26184 -- Allowed using any lookups in ModelAdmin.search_fields.Krzysztof Nazarewski
Thanks Krzysztof Nazarewski for the initial patch.
2017-11-18Fixed #28810 -- Replaced '%' style logging formatting with str.format() style.Chris Lamb
2017-11-17Fixed #28815 -- Fixed ExtractYear imports in docs/ref/models/expressions.txt.Benjamin Bach
2017-11-17Refs #28814 -- Fixed test_runner failure on Python 3.7.Tim Graham
Due to https://bugs.python.org/issue30399.
2017-11-17Refs #28814 -- Fixed "SyntaxError: Generator expression must be ↵Tim Graham
parenthesized" on Python 3.7. Due to https://bugs.python.org/issue32012.
2017-11-17Fixed #28798 -- Removed unused django.utils.dates.WEEKDAYS_REV, MONTHS_3_REV.Chris Lamb
2017-11-16Fixed #28802 -- Fixed typo in docs/topics/auth/default.txt.Tim Graham
2017-11-16Fixed #28796 -- Doc'd backwards incompatibility when reverse() receives ↵Tim Graham
bytestring args/kwargs. Due to 301de774c21d055e9e5a7073e5bffdb52bc71079.
2017-11-15Updated main translation catalogClaude Paroz
Forward port of cd6d18abc31902a13013de61aacd0ae92d6f68a2 from stable/2.0.x.
2017-11-15Fixed test failures due to ordering differences on PostgreSQL 10.Tim Graham
2017-11-14Fixed #28792 -- Fixed index name truncation of namespaced tables.Simon Charette
Refs #27458, #27843. Thanks Tim and Mariusz for the review.
2017-11-14Fixed invalid escape sequence warning in check_framework test.Tim Graham
2017-11-14Fixed #28794 -- Fixed tx_isolation deprecation warning on MySQL 5.7.20+.Sergey Fedoseev
2017-11-14Fixed #28786 -- Doc'd middleware ordering considerations due to ↵Tim Graham
CommonMiddleware setting Content-Length.
2017-11-14Fixed #28795 -- Removed 'not in' checks and used dict.setdefault().Дилян Палаузов
2017-11-13Used BaseSimpleSerializer for serializing str and bytes in migrations.Sergey Fedoseev
Follow up to c716fe87821df00f9f03ecc761c914d1682591a2.
2017-11-13Simplified choices iterators in tests.model_fields.models.Sergey Fedoseev
2017-11-12Fixed #28781 -- Added QuerySet.values()/values_list() support for union(), ↵Mariusz Felisiak
difference(), and intersection(). Thanks Tim Graham for the review.
2017-11-11Refs #26447 -- Removed outdated ETag comment in CommonMiddleware.Tim Graham
Follow up to 48d57788ee56811fa77cd37b9edf40535f82d87e.
2017-11-11Fixed #28534 -- Made JSONField.has_changed() ignore key order and consider ↵shanghui
True/1 values as different.
2017-11-11Simplified Field.get_choices().Sergey Fedoseev
2017-11-11Removed unneeded iter() call in IfNode.nodelist.Sergey Fedoseev
2017-11-09Fixed #28777 -- Clarified the docs for admin.register's args.Tim Graham
2017-11-09Fixed #27710 -- Made Model.save() invalidate cached, stale relations after a ↵Paulo
primary key assignment.
2017-11-08Fixed #28751 -- Corrected the error message for inactive users in ↵shanghui
AdminAuthenticationForm. Thanks SeungWon Kang for the report and Tim Graham for the review.
2017-11-08Fixed #28645 -- Reallowed AuthenticationForm to raise the inactive user ↵shanghui
error when using ModelBackend. Regression in e0a3d937309a82b8beea8f41b17d8b6298da2a86. Thanks Guilherme Junqueira for the report and Tim Graham for the review.
2017-11-08Refs #28593 -- Updated old class names in comments following URL routing ↵Andrei Fokau
changes.
2017-11-07Fixed #28585 -- Calculated admin's change form multipart context variable ↵Claude Paroz
from forms and formsets Thanks Tim Graham for the review.
2017-11-07Fixed #28719 -- Added a helpful exception if ↵Bjorn Kristinsson
MultipleObjectTemplateResponseMixin doesn't generate any template names.
2017-11-07Fixed #28720 -- Added HttpRequest.get_full_path_info().Jonas Haag
2017-11-07Fixed #28758 -- Fixed RangeMax/MinValueValidators crash with unbound ranges.Imran Iqbal
2017-11-07Fixed #28544 -- Made unlocalize template filter behave like {% localize off ↵Claude Paroz
%} tag Thanks Beda Kosata for the report and Tim Graham for the review.
2017-11-07Fixed #28770 -- Warned that quoting a placeholder in a raw SQL string is unsafe.Tim Graham
Thanks Hynek Cernoch for the report and review.
2017-11-07Fixed #28663 -- Add a check for likely incorrectly migrated ↵Chris Lamb
django.urls.path() routes.
2017-11-07Refs #28518 -- Improved performance of assigning values to GeometryFields.Sergey Fedoseev
2017-11-07Fixed #28769 -- Replaced 'x if x else y' with 'x or y'.Дилян Палаузов
2017-11-07Fixed typo in docs/topics/db/aggregation.txt.Tim Graham
2017-11-06Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов
2017-11-06Fixed #28765 -- Clarified docs about what types the __in lookup accepts.Tim Graham
2017-11-06Fixed #28501 -- Fixed "python -m django runserver" crash.Yusuke Miyazaki
2017-11-06Added RestartWithReloaderTests.Yusuke Miyazaki
2017-11-04Fixed #28632 -- Updated docs about using raw SQL with GIS and doc'd changes ↵Sergey Fedoseev
from refs #28518 in release notes.