summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2019-11-19Fixed #27272 -- Added an on_delete RESTRICT handler to allow cascading ↵Daniel Izquierdo
deletions while protecting direct ones.
2019-11-19Fixed #30987 -- Added models.PositiveBigIntegerField.Caio Ariede
2019-11-18Fixed #30994 -- Added Oracle support for AsGeoJSON GIS function.Sergey Fedoseev
2019-11-18Fixed #30990 -- Fixed example output in 'z' date format docs.Baptiste Mispelon
2019-11-14Fixed #29916 -- Added lower_inc, lower_inf, upper_inc, and upper_inf lookups ↵Dulmandakh
for RangeFields. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2019-11-11Fixed #30252 -- Clarified need to reopen forms.fields.ImageField.image file ↵Hasan Ramezani
to access raw image data.
2019-11-11Fixed #30958 -- Used a clearer example in the Cast() docs.Farhaan Bukhsh
2019-11-08Refs #30948 -- Updated install instructions to use pip instead of setup.py.Jon Dufresne
Co-authored-by: Nick Pope <nick.pope@flightdataservices.com>
2019-11-08Fixed #24858 -- Added support for get_FOO_display() to ArrayField and ↵Hasan Ramezani
RangeFields. _get_FIELD_display() crashed when Field.choices was unhashable.
2019-11-07Fixed #30943 -- Added BloomIndex to django.contrib.postgres.Nick Pope
2019-11-07Fixed #29983 -- Replaced os.path() with pathlib.Path in project template and ↵Jon Dufresne
docs. Thanks Curtis Maloney for the original patch.
2019-11-07Fixed #30865 -- Doc'd that not all DATABASES['OPTIONS'] are passed to ↵Farhaan Bukhsh
command-line client.
2019-11-06Fixed #15742 -- Fixed an example of collecting selected objects in ↵Daniel Fairhead
ModelAdmin.actions docs. The queryset argument is already filtered, and request.POST doesn't contain all selected objects when "Select All" is used.
2019-11-06Refs #29983 -- Added pathlib.Path support to the file email backend.Jon Dufresne
2019-11-06Documented arguments for custom 500 error view.Dan Swain
2019-11-06Added a link to the file email backend from EMAIL_FILE_PATH setting.Jon Dufresne
2019-11-05Fixed #30928 -- Clarified MySQL/MariaDB support of ↵kola-er
QuerySet.select_for_update() options. Thanks Par Andersson for reporting the issue.
2019-11-05Refs #30923 -- Fixed an example of rendering templates in contrib.sites docs.Alasdair Nicol
2019-10-31Fixed #30761 -- Prevented floatformat filter from returning a negative zero.Sky
2019-10-31Refs #28428 -- Made FileSystemStorage.save() to support pathlib.Path.Hasan Ramezani
2019-10-30Fixed typo in docs/ref/signals.txt.Gil Forcada Codinachs
2019-10-30Refs #20456 -- Moved initialization of HEAD method based on GET to the ↵Felipe Lee
View.setup() for generic views. This will ease unit testing of views since setup will essentially do everything needed to set the view instance up (other than instantiating it). Credit for idea goes to Vincent Prouillet.
2019-10-30Refs #28428 -- Made filepath_to_uri() support pathlib.Path.Hasan Ramezani
2019-10-25Fixed #29770 -- Added LinearRing.is_counterclockwise property.Sergey Fedoseev
2019-10-25Refs #30908 -- Fixed the empty value of forms.FilePathField in docs.Mariusz Felisiak
2019-10-25Fixed #30904 -- Doc'd caveat about using filtered queryset with ↵Saad
select_for_update() on MySQL.
2019-10-24Refs #30897 -- Made cosmetic edits to QuerySet.explain() documentation.Carlton Gibson
2019-10-24Refs #30897 -- Added support for ANALYZE option to Queryset.explain() on ↵Nick Pope
MariaDB and MySQL 8.0.18+.
2019-10-24Refs #30897 -- Added support for TREE format to Queryset.explain() on MySQL ↵Nick Pope
8.0.16+.
2019-10-22Refs #13724 -- Corrected QuerySet signature in docs.Antonio Dudarev
2019-10-21Fixed #30841 -- Deprecated using non-boolean values for isnull lookup.André Ericson
2019-10-18Fixed #30890 -- Added MariaDB support for the relate lookup.Mariusz Felisiak
2019-10-17Refs #12990 -- Moved CheckFieldDefaultMixin to the ↵sage
django.db.models.fields.mixins.
2019-10-16Fixed #30885 -- Dropped support for MariaDB 10.1.Mariusz Felisiak
2019-10-16Fixed #30562 -- Doc'd MariaDB support for GIS spatial lookups.Mariusz Felisiak
2019-10-16Refs #28436 -- Corrected docs regarding MySQL support of distance lookups.Mariusz Felisiak
2019-10-16Refs #22423 -- Corrected crosses lookup support on MySQL in documentation.Mariusz Felisiak
Support was added in 15715bf.
2019-10-11Clarified that SECURE_REDIRECT_EXEMPT patterns should not include leading ↵René Fleschenberg
slashes.
2019-10-10Fixed #23755 -- Added support for multiple field names in the no-cache ↵Flavio Curella
Cache-Control directive to patch_cache_control(). https://tools.ietf.org/html/rfc7234#section-5.2.2.2
2019-10-08Fixed #28790 -- Doc'd how to avoid running certain test classes in parallel.Caio Ariede
2019-10-07Fixed #28273 -- Doc'd fast nullable column creation with defaults.Caio Ariede
2019-10-07Refs #10348 -- Doc'd that ModelAdmin ignores list_select_related when ↵Tamer Sherif
QuerySet.select_related() was already called.
2019-10-03Fixed #30834 -- Added explicit list of supported databases to the databases ↵Katie McLaughlin
docs.
2019-10-02Fixed some typos in comments and docs.Min ho Kim
Thanks to Mads Jenson for review.
2019-10-02Refs #15396 -- Mentioned full path to GZipMiddleware in documentation.Mar Sánchez
2019-10-02Refs #28699 -- Clarified CSRF middleware ordering in relation to ↵Carlton Gibson
RemoteUserMiddleware.
2019-10-02Fixed #30817 -- Clarified return value of Sitemap.items().Sjbrgsn
2019-10-02Fixed #30821 -- Added ExtractIsoWeekYear database function and iso_week_day ↵Anatol Ulrich
lookup.
2019-10-02Added missing import in ref/models/database-functions.txt.Mariusz Felisiak
2019-10-02Fixed #14218 -- Added Paginator.__iter__().Tanner Stirrat