summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #28194 -- Added support for normalization and cover density to SearchRank.Hannes Ljungberg2020-03-234-3/+106
|
* Fixed #19878 -- Deprecated TemplateView passing URL kwargs into context.Adam Johnson2020-03-236-29/+84
|
* Refs #31032 -- Removed unsupported browsers workarounds and comments in ↵Jon Dufresne2020-03-237-78/+13
| | | | | | | | | | admin's JavaScript. Since 8b30360322d4de6687e17ab267a856db4e3c78a6, the admin documentation is explicit that only modern evergreen browsers are supported. This allows removing several long standing workarounds for IE and Opera older versions. Since 2013, Opera is based on the Chromium blink engine.
* Added missing Meta.apps to a schema model.Tim Graham2020-03-231-0/+1
|
* Normalized check framework test pattern.Adam Johnson2020-03-213-159/+66
|
* Updated settings example in overriding templates docs.Mariusz Felisiak2020-03-211-1/+1
| | | Follow up to ba4389a36b5fb1afce0cddb4e28233138b6612b7.
* Refs #29724 -- Added is_dst parameter to QuerySet.datetimes().Hasan Ramezani2020-03-204-3/+56
| | | | Thanks Simon Charette for the review and Mariusz Felisiak for tests.
* Fixed #31144 -- Relaxed system check for max_length of CharFields on ↵Rohit2020-03-204-9/+26
| | | | MySQL/MariaDB by turning into a warning.
* Made BaseCacheTests skip culling tests if culling is not supported.Jon Dufresne2020-03-191-12/+10
|
* Fixed #31285 -- Fixed inherited Meta.ordering of "-pk".Jon Dufresne2020-03-193-4/+19
|
* Fixed #31123 -- Added --include-stale-apps option to the ↵gowthamk632020-03-194-14/+67
| | | | | | remove_stale_contenttypes management command. Co-Authored-By: Javier Buzzi <buzzi.javier@gmail.com>
* Removed unused default value None to matches_patterns().Jon Dufresne2020-03-191-2/+2
| | | | An iterable is always passed.
* Used modern idiom in collectstatic command.Jon Dufresne2020-03-191-1/+1
| | | | Replaced set(<generator expression>) with set comprehension.
* Refs #29548 -- Mentioned MariaDB in database system checks.Mariusz Felisiak2020-03-193-13/+23
|
* Fixed #31224 -- Added support for asynchronous views and middleware.Andrew Godwin2020-03-1830-210/+1340
| | | | | This implements support for asynchronous views, asynchronous tests, asynchronous middleware, and an asynchronous test client.
* Removed redundant get_max_column_name_length() calls in ↵Mariusz Felisiak2020-03-181-4/+0
| | | | invalid_models_tests.test_models.FieldNamesTests.
* Refs #31055 -- Made long column names checks support databases aware.Mariusz Felisiak2020-03-182-7/+14
|
* Simplified settings' BASE_DIR definition with pathlib.Path.parent.Adam Johnson2020-03-181-1/+1
|
* Fixed #31368 -- Doc'd 'expression' parameter of ↵Hasan Ramezani2020-03-182-0/+4
| | | | Field.from_db_value()/Expression.convert_value().
* Fixed #31371 -- Increased User.first_name max_length to 150 characters.Ryan Petrello2020-03-185-2/+51
|
* Fixed #31376 -- Optimized nulls ordering when possible on SQLite and MySQL.Simon Charette2020-03-184-2/+11
| | | | | | | Both backends order NULLs first on ascending ordering and last on descending ordering which makes ORDER BY IS (NOT)? NULL wasteful when asc(nulls_first) and desc(nulls_last) are used since it prevents indice usage.
* Fixed typo in docs/topics/async.txt.Carlton Gibson2020-03-171-1/+1
|
* Removed bundled QUnit in favor of npm package.Jon Dufresne2020-03-174-4855/+4
|
* Removed event handlers after JavaScript tests complete.Jon Dufresne2020-03-171-0/+2
| | | | | Fixes error "Assertion occurred after test had finished" with newer versions of QUnit.
* Removed unused return values in SelectFilter2.js.Jon Dufresne2020-03-171-4/+1
|
* Simplified SelectFilter2 with Element.closest().Jon Dufresne2020-03-171-9/+1
| | | | https://developer.mozilla.org/en-US/docs/Web/API/Element/closest
* Upgraded grunt-contrib-qunit to use puppeteer.Jon Dufresne2020-03-171-1/+1
|
* Made logging config examples more accessible.Ben Li-Sauerwine2020-03-171-23/+57
| | | | | | | | | - 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>
* Fixed #31172 -- Added note to translators for yesno filter.Hasan Ramezani2020-03-171-0/+1
|
* Corrected outdated sentence in One-to-one relationships docs.Philipp Bosch2020-03-171-1/+1
|
* Fixed #31340 -- Allowed query expressions in SearchQuery.value and __search ↵Baptiste Mispelon2020-03-166-4/+43
| | | | lookup.
* Fixed #31363 -- Added support for negative integers to intword template filter.jay201620162020-03-164-11/+39
|
* Fixed #31361 -- Fixed invalid action="" in admin forms.Jon Dufresne2020-03-164-15/+24
| | | | | | | | | | | | 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.
* Added novalidate HTML attribute to ModelAdmin.add_view() and change_view() ↵Jon Dufresne2020-03-161-2/+2
| | | | tests.
* Bumped minimum ESLint version to 6.8.0.Jon Dufresne2020-03-1610-10/+10
|
* Fixed #31362 -- Removed nonexistent choices attribute from ↵David Smith2020-03-141-6/+0
| | | | | MultipleHiddenInput's docs. Follow up to 65c13f9675d2ca7fc1c925e7182a2e35d07ff5fb.
* Fixed #31330 -- Updated flatpages URLconf example to work with APPEND_SLASH.Hasan Ramezani2020-03-141-1/+1
| | | Regression in df41b5a05d4e00e80e73afe629072e37873e767a.
* Refs #31304 -- Added tests for using __search lookup with combined ↵Mariusz Felisiak2020-03-131-0/+9
| | | | SearchQuerys with the same config.
* Refs #31340 -- Simplified SearchQuery by making it subclass Func.Baptiste Mispelon2020-03-132-28/+25
|
* Removed unnecessary SearchQuery._combine().Baptiste Mispelon2020-03-131-5/+0
| | | | Unnecessary since its introduction in 2d877da85526bad0dad7fd6b1d56b1f924c0116a.
* Refs #31224 -- Doc'd async adapter functions.Andrew Godwin2020-03-133-5/+111
|
* Fixed random auth_tests.test_tokens.TokenGeneratorTest.test_timeout failures.Mariusz Felisiak2020-03-121-5/+6
| | | | | Random failures depended on the current timestamp. Thanks Matthijs Kooijman for the review.
* Fixed #8760 -- Changed ModelMultipleChoiceField to use invalid_list as a ↵David Smith2020-03-125-8/+50
| | | | error message key.
* Fixed MiddlewareNotUsedTests.test_do_not_log_when_debug_is_false().Mariusz Felisiak2020-03-121-1/+4
| | | | | This test didn't test anything without a middleware that raises an exception.
* Completed test coverage for BaseHandler.process_exception_by_middleware().Mariusz Felisiak2020-03-121-0/+9
|
* Fixed typo in django/utils/crypto.py.Mariusz Felisiak2020-03-111-1/+1
|
* Fixed #31359 -- Deprecated get_random_string() calls without an explicit length.Claude Paroz2020-03-116-9/+47
|
* Fixed typo in tests/forms_tests/widget_tests/test_clearablefileinput.py ↵David Smith2020-03-111-1/+1
| | | | docstring.
* Fixed #30439 -- Added support for different plural forms for a language.Claude Paroz2020-03-107-16/+107
| | | Thanks to Michal Čihař for review.
* Fixed #26513 -- Added tests for <Backend>GeometryColumns.geom_col_name().Hasan Ramezani2020-03-101-2/+9
|