summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2019-04-25Fixed #30318 -- Added check for importability of arguments of custom error ↵Alasdair Nicol
handler views. Thanks to Jon on Stack Overflow for reporting the issue.
2019-04-25Fixed #30362 -- Noted partial indexes and constraints restrictions with ↵Mariusz Felisiak
abstract base classes. Thanks Carlton Gibson for the review.
2019-04-25Fixed UniqueConstraint example in ref/models/constraints.txt.Mariusz Felisiak
2019-04-24Fixes #30342 -- Removed a system check for LANGUAGES_BIDI setting.Matthias Kestenholz
This partly reverts commit 4400d8296d268f5a8523cd02ddc33b12219b2535.
2019-04-24Changed tuple Mate.unique_together/permissions to lists in docs.Luke Plant
2019-04-23Fixed #30365 -- Fixed syntax highlighting in SQL examples.Daniel Musketa
Sphinx interprets some "%[a-z]" in SQL statements as a "Literal.String.Interpol" which leads to incorrect highlighting.
2019-04-23Fixed #30387 -- Enhanced docs CLI examples in Unit tests and Install Django ↵Ramiro Morales
on Windows. Follow up to 37c17846ad6b02c6dca72e8087a279cca04a0c27.
2019-04-23Fixed #30385 -- Restored SearchVector(config) immutability.Simon Charette
Regression in 1a28dc3887e8d66d5e3ff08cf7fb0a6212b873e5. The usage of CONCAT to allow SearchVector to deal with non-text fields made the generated expression non-IMMUTABLE which prevents a functional index to be created for it. Using a combination of COALESCE and ::text makes sure the expression preserves its immutability. Refs #29582. Thanks Andrew Brown for the report, Nick Pope for the review.
2019-04-21Fixed typo in docs/internals/contributing/committing-code.txt.Ville Skyttä
2019-04-19Fixed #30341 -- Added support for the furlong unit in Distance.Dustin Neighly
2019-04-19Made cosmetic edits in docs/releases/2.2.1.txt.Mariusz Felisiak
2019-04-19Fixed #30328 -- Fixed crash of IntegerField.validators when limit_value in a ↵Scott Fitsimones
custom validator is callable.
2019-04-18Fixed #30367 -- Changed "pip install" to "python -m pip install" in docs, ↵Ramiro Morales
comments and hints.
2019-04-18Fixed typos in docs, comments, and exception messages.Ville Skyttä
2019-04-18Fixed #30370 -- Added dbshell support for client TLS certificates on PostgreSQL.Oleh Mykytiuk
2019-04-18Fixed #30335, #29139 -- Fixed crash when ordering or aggregating over a ↵can
nested JSONField key transform.
2019-04-17Updated SpatiaLite install instructions to suggest first package from recent ↵Willy Njundong
Debian-based distributions.
2019-04-17Fixed #27755 -- Added ModelAdmin.get_inlines() hook.Hasan Ramezani
2019-04-16Fixed #14808 -- Doc'd that trans and blocktrans tags don't escape translations.Tobias Kunze
2019-04-16Fixed #14009 -- Fixed custom formset validation example in docs.Tobias Kunze
2019-04-16Fixed typo in docs/ref/models/instances.txt.Gary Donovan
2019-04-15Fixed #30325 -- Reverted "Fixed #29725 -- Removed unnecessary join in ↵Mariusz Felisiak
QuerySet.count() and exists() on a many-to-many relation." This reverts commit 1299421cadc4fcf63585f2f88337078e43e660e0 due to a regression with custom managers.
2019-04-15Fixed #30326 -- Doc'd how to avoid persistence of F() assignment.sage
2019-04-14Fixed #30350 -- Prevented recreation of migration for operations with a ↵Florian Apolloner
range object. Thanks to Mariusz Felisiak for helping with the patch.
2019-04-14Corrected wording in docs/intro/overview.txt.gnl
2019-04-13Fixed #30347 -- Fixed typo in docs/topics/db/aggregation.txt.Daniel Musketa
2019-04-09Fixed #30321 -- Added example of changed_data to forms docs.Bruno Furtado
2019-04-08Fixed #30330 -- Fixed setting of primary key to None during fast-delete.Florian Apolloner
Regression in bc7dd8490b882b2cefdc7faf431dc64c532b79c9.
2019-04-08Fixed #30304 -- Added support for the HttpOnly, SameSite, and Secure flags ↵Ran Benita
on language cookies.
2019-04-07Refs #27807 -- Removed docs for User.username_validator.Tim Graham
The new override functionality claimed in refs #21379 doesn't work. Forwardport of 714fdbaa7048c2321f6238d9421137c33d9af7cc from stable/1.10.x.
2019-04-06Fixed #30332 -- Fixed crash of ordering by expressions with params in ↵Simone Pellizzari
ArrayAgg and StringAgg.
2019-04-05Fixed #30324 -- Forced utf-8 encoding when loading the template for the ↵Nick Pope
technical 500 debug page. Regression in 50b8493. Related to ea542a9.
2019-04-05Fixed #30331 -- Added support for psycopg2 2.8.Mariusz Felisiak
2019-04-04Fixed #30307 -- Fixed incorrect quoting of database user password when using ↵msg
dbshell on Oracle. Regression in acfc650f2a6e4a79e80237eabfa923ea3a05d709.
2019-04-03Added stub release notes for 2.2.1.Mariusz Felisiak
2019-04-02Fixed typo in docs/releases/2.2.txt.Alex Gaynor
2019-04-02Fixed typo in docs/ref/settings.txt.Mariusz Felisiak
2019-04-01Corrected date format in 2.2 release notes.Carlton Gibson
2019-04-01Set release date in v2.2 release notes.Carlton Gibson
2019-04-01Updated man page for 2.2 final.Carlton Gibson
2019-03-30Fixed #30289 -- Prevented admin inlines for a ManyToManyField's implicit ↵Tim Graham
through model from being editable if the user only has the view permission.
2019-03-30Added stub 2.1.8 release notes.Tim Graham
2019-03-30Refs #30278 -- Fixed link in cached_property docs.Tim Graham
2019-03-30Refs #30278 -- Doc'd behavior of del on an unaccessed cached_property.Matthew Schinckel
Thanks to Curtis Maloney for the description of the problem.
2019-03-29Fixed #30265 -- Fixed a tutorial number in Reusable App tutorial.Abhishek Bera
2019-03-29Removed unnecessary /static from links to PostgreSQL docs.Nick Pope
2019-03-29Fixed #30294 -- Allowed HttpResponse to accept memoryview content.sage
2019-03-28Moved extlinks in docs config to allow using 'version' variable.Tim Graham
After a stable branch is created, 'master' will change to 'stable/' + version + '.x'.
2019-03-28Used extlinks for Django's source code.Tim Graham
2019-03-28Fixed #30299 -- Removed jQuery dependency from getCookie() in CSRF docs.Tim Graham