summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2018-11-09Fixed #29934 -- Added sqlparse as a require dependency.Tim Graham
2018-11-09Fixed #29917 -- Stopped collecting ModelAdmin.actions from base ModelAdmins.Matthias Kestenholz
2018-11-06Fixed #25251 -- Made data migrations available in TransactionTestCase when ↵romgar
using --keepdb. Data loaded in migrations were restored at the beginning of each TransactionTestCase and all the tables are truncated at the end of these test cases. If there was a TransactionTestCase at the end of the test suite, the migrated data weren't restored in the database (especially unexpected when using --keepdb). Now data is restored at the end of each TransactionTestCase.
2018-11-03Fixed inconsistent indentation in docs/ref/contrib/auth.txt.Tobias Bengfort
2018-11-01Fixed #27994 -- Documented ManifestFilesMixin.Theofanis Despoudis
2018-10-30Capitalized SecurityMiddleware headers for consistency with other headers.Artur Juraszek
(No behavior change since HTTP headers are case insensitive.)
2018-10-29Fixed #29547 -- Added support for partial indexes.Mads Jensen
Thanks to Ian Foote, Mariusz Felisiak, Simon Charettes, and Markus Holtermann for comments and feedback.
2018-10-29Fixed code highlighting in docs/ref/contrib/staticfiles.txt.Tim Graham
2018-10-27Fixed #28606 -- Deprecated CachedStaticFilesStorage.Tim Graham
2018-10-25Fixed #29879 -- Added CSRF_COOKIE_HTTPONLY to CSRF AJAX docs.Mayank Singhal
2018-10-24Removed a useless sentence in docs/ref/unicode.txt.Hemanth V. Alluri
2018-10-23Fixed #29831 -- Added validation for makemigrations --name.Prabakaran Kumaresshan
2018-10-23Refs #29877 -- Made diveinto.org URLs HTTPS.Jon Dufresne
2018-10-23Fixed #29877 -- Replaced diveintopython3.net with diveinto.org/python3/.za
2018-10-22Fixed #29860 -- Allowed BaseValidator to accept a callable limit_value.buzzi
2018-10-21Removed "encoding" description in GIS tutorial.Atul Varma
An omission in 388165ade4219aeefac1e231c1d44c51a7b62829.
2018-10-18Fixed #29858 -- Clarified docs regarding CSRF token header name.Tim Graham
2018-10-15Fixed #29817 -- Deprecated settings.FILE_CHARSET.Jon Dufresne
2018-10-11Fixed #29836 -- Bumped required cx_Oracle to 6.0.Mariusz Felisiak
2018-10-10Emphasized that ForeignKey.on_delete doesn't create a SQL constraint.Andrea Rabbaglietti
2018-10-10Refs #27795 -- Removed force_bytes() usage from django/utils/http.py.Jon Dufresne
django.utils.http.urlsafe_base64_encode() now returns a string, not a bytestring. Since URLs are represented as strings, urlsafe_base64_encode() should return a string. All uses immediately decoded the bytestring to a string anyway. As the inverse operation, urlsafe_base64_decode() accepts a string.
2018-10-09Capitalized "Python" in docs and comments.Jon Dufresne
2018-10-04Improved tone in docs/ref/settings.txt.Kate Berry
2018-10-04Refs #27778 -- Removed "The database API" section from "Unicode data" docs.Jon Dufresne
Support for passing bytestrings to the database API was removed in 301de774c21d055e9e5a7073e5bffdb52bc71079.
2018-10-03Clarified when QuerySet.select_for_update() locks.ovalseven8
2018-10-03Corrected docs to say that all templates are text strings.Jon Dufresne
Support for bytestring templates was removed in 3a148f958dddd97c1379081118c30fbede6b6bc4.
2018-10-02Fixed #29598 -- Deprecated FloatRangeField in favor of DecimalRangeField.Stefano Chiodino
2018-10-02Refs #29722 -- Added introspection of materialized views for PostgreSQL.Nick Pope
2018-10-02Fixed #29719 -- Added introspection of foreign tables for PostgreSQL.Nick Pope
Thanks infinite-l00p for the initial patch.
2018-10-02Removed docs for obsolete limitations of inspectdb.Tim Graham
2018-10-02Refs #11964 -- Changed CheckConstraint() signature to use keyword-only ↵Simon Charette
arguments. Also renamed the `constraint` argument to `check` to better represent which part of the constraint the provided `Q` object represents.
2018-10-02Fixed #29711 -- Added a system check for uniquness of admin actions' __name__.Przemysław Buczkowski
2018-10-01Added tests for using bytearray with BinaryField and corrected docs.Jon Dufresne
2018-09-27Fixed #29796 -- Added system check for STATICFILES_DIRS prefix ending with a ↵Paweł Kołodziej
slash.
2018-09-26Added test of filtering on BinaryField and corrected docs.Jon Dufresne
2018-09-26Fixed #29795 -- Confirmed support for PostGIS 2.5.Sergey Fedoseev
2018-09-26Refs #29784 -- Switched to https:// links where available.Jon Dufresne
2018-09-25Normalized spelling of "lowercase" and "lowercased".Jon Dufresne
2018-09-25Refs #29784 -- Normalized Python docs links to omit the version.Jon Dufresne
2018-09-18Fixed #23646 -- Added QuerySet.bulk_update() to efficiently update many models.Tom Forbes
2018-09-18Made various edits to docs/ref/utils.txt.Adam Johnson
2018-09-18Confirmed support for GEOS 3.7.Sergey Fedoseev
2018-09-17Fixed #27899 -- Added support for phrase/raw searching in SearchQuery.Claude Paroz
Thanks Tim Graham, Nick Pope, and Claude Paroz for contribution and review.
2018-09-17Fixed #29761 -- Confirmed support for PROJ 5.x.Sergey Fedoseev
2018-09-17Fixed #29757 -- Documented Oracle DSN and Easy Connect options.jtiai
2018-09-14Fixed #29642 -- Added check for arguments of custom error handler views.Adam Johnson
2018-09-13Refs #14357 -- Deprecated Meta.ordering affecting GROUP BY queries.Ramiro Morales
Thanks Ramiro Morales for contributing to the patch.
2018-09-12Fixed typo in docs/ref/contrib/postgres/search.txt.Adam Zapletal
2018-09-11Emphasized that TemplatesSetting must be used to override widget templates.Stephen Finucane
2018-09-11Fixed #29560 -- Added --force-color management command option.Hasan Ramezani