summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-03-17Removed unused return values in SelectFilter2.js.Jon Dufresne
2020-03-17Simplified SelectFilter2 with Element.closest().Jon Dufresne
https://developer.mozilla.org/en-US/docs/Web/API/Element/closest
2020-03-17Upgraded grunt-contrib-qunit to use puppeteer.Jon Dufresne
2020-03-17Made logging config examples more accessible.Ben Li-Sauerwine
- Show an initial example configuring the root logger to output to the console. - Then add more logging from the `django` named logger. - Then show the file and more complex examples. Adjusted surrounding text for reading flow. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
2020-03-17Fixed #31172 -- Added note to translators for yesno filter.Hasan Ramezani
2020-03-17Corrected outdated sentence in One-to-one relationships docs.Philipp Bosch
2020-03-16Fixed #31340 -- Allowed query expressions in SearchQuery.value and __search ↵Baptiste Mispelon
lookup.
2020-03-16Fixed #31363 -- Added support for negative integers to intword template filter.jay20162016
2020-03-16Fixed #31361 -- Fixed invalid action="" in admin forms.Jon Dufresne
The attribute action="" (empty string) on the <form> element is invalid HTML5. The spec (https://html.spec.whatwg.org/#attr-fs-action) says: > The action and formaction content attributes, if specified, must have > a value that is a valid non-empty URL potentially surrounded by > spaces. Emphasis on non-empty. The action attribute is allowed to be omitted, in which case the current URL is used which is the same behavior as now.
2020-03-16Added novalidate HTML attribute to ModelAdmin.add_view() and change_view() ↵Jon Dufresne
tests.
2020-03-16Bumped minimum ESLint version to 6.8.0.Jon Dufresne
2020-03-14Fixed #31362 -- Removed nonexistent choices attribute from ↵David Smith
MultipleHiddenInput's docs. Follow up to 65c13f9675d2ca7fc1c925e7182a2e35d07ff5fb.
2020-03-14Fixed #31330 -- Updated flatpages URLconf example to work with APPEND_SLASH.Hasan Ramezani
Regression in df41b5a05d4e00e80e73afe629072e37873e767a.
2020-03-13Refs #31304 -- Added tests for using __search lookup with combined ↵Mariusz Felisiak
SearchQuerys with the same config.
2020-03-13Refs #31340 -- Simplified SearchQuery by making it subclass Func.Baptiste Mispelon
2020-03-13Removed unnecessary SearchQuery._combine().Baptiste Mispelon
Unnecessary since its introduction in 2d877da85526bad0dad7fd6b1d56b1f924c0116a.
2020-03-13Refs #31224 -- Doc'd async adapter functions.Andrew Godwin
2020-03-12Fixed random auth_tests.test_tokens.TokenGeneratorTest.test_timeout failures.Mariusz Felisiak
Random failures depended on the current timestamp. Thanks Matthijs Kooijman for the review.
2020-03-12Fixed #8760 -- Changed ModelMultipleChoiceField to use invalid_list as a ↵David Smith
error message key.
2020-03-12Fixed MiddlewareNotUsedTests.test_do_not_log_when_debug_is_false().Mariusz Felisiak
This test didn't test anything without a middleware that raises an exception.
2020-03-12Completed test coverage for BaseHandler.process_exception_by_middleware().Mariusz Felisiak
2020-03-11Fixed typo in django/utils/crypto.py.Mariusz Felisiak
2020-03-11Fixed #31359 -- Deprecated get_random_string() calls without an explicit length.Claude Paroz
2020-03-11Fixed typo in tests/forms_tests/widget_tests/test_clearablefileinput.py ↵David Smith
docstring.
2020-03-10Fixed #30439 -- Added support for different plural forms for a language.Claude Paroz
Thanks to Michal Čihař for review.
2020-03-10Fixed #26513 -- Added tests for <Backend>GeometryColumns.geom_col_name().Hasan Ramezani
2020-03-10Removed trailing whitespace in 3.1 release notes.Carlton Gibson
2020-03-10Added stub release notes for 2.2.12.Carlton Gibson
2020-03-10Clarified SeparateDatabaseAndState docs and added example of changing ↵Adam Johnson
ManyToManyField. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com> Co-Authored-By: Carlton Gibson <carlton.gibson@noumenal.es> Co-Authored-By: René Fleschenberg <rene@fleschenberg.net>
2020-03-10Fixed #27865 -- Adjusted docs example to avoid confusion with ↵Adam Radwon
models.BaseManager.
2020-03-10Corrected learn_cache_key() signature in docs.Mariusz Felisiak
Follow up to b22415214a7bdeaf8ccd7b8b21872038ab865991.
2020-03-10Updated migrations example in tutorial 2.Mariusz Felisiak
Follow up to a97845a823c86b1d6e65af70fbce64e6e747e081.
2020-03-10Corrected get_cache_key() signature in docs.Борис Верховский
Follow up to b22415214a7bdeaf8ccd7b8b21872038ab865991 and cb17f7ca2252265ab4a844e7924cb8ebab4a1a76
2020-03-10Fixed typos in tolerance gis_tests.Mariusz Felisiak
2020-03-09Fixed #31349 -- Used :nth-child() CSS pseudo-class to style alternative rows ↵Jon Dufresne
in admin.
2020-03-09Fixed #31347 -- Checked allow_migrate() in CreateExtension operation.Hasan Ramezani
2020-03-09Fixed #31318 -- Allowed sqlmigrate to inspect squashed migrations.David Wobrock
2020-03-09Refs #31318 -- Optimized sqlmigrate by using MigrationLoader.David Wobrock
Only loader from MigrationExecutor was used.
2020-03-09Refs #31318 -- Moved MigrationExecutor.collect_sql() to MigrationLoader.David Wobrock
collect_sql() is used only in sqlmigrate.
2020-03-09Refs #31318 -- Added tests for inspecting squashed migrations and ambiguous ↵David Wobrock
names in sqlmigrate.
2020-03-09Fixed #31350 -- Fixed typo in docs/topics/db/optimization.txt.Shrikrishna Singh
2020-03-07Refs #30489 -- Fixed RasterFieldTest.test_deserialize_with_pixeltype_flags() ↵Mariusz Felisiak
when run without numpy.
2020-03-07Replaced deprecated assertEquals() with assertEqual() in RasterFieldTest.Mariusz Felisiak
2020-03-06Optimized a bit handle() of sqlmigrate management command.David Wobrock
2020-03-06Doc'd return values of as_sql() for Func and query expressions.Adam Johnson
2020-03-06Added missing backticks in various docs.Mariusz Felisiak
2020-03-06Fixed #31342 -- Clarified docs about using base managers for related objects.Carlton Gibson
2020-03-06Refs #31304 -- Made __search lookup default to its rhs' config.Simon Charette
This make the SearchLookup lookup more coherent with its SearchVectorExact base which configures its rhs SearchQuery with its lhs' config.
2020-03-06Fixed #31345 -- Added BaseDatabaseIntrospection.get_relations().shankarj67
2020-03-05Refs #31224 -- Added autoconversion of test async methods.Andrew Godwin