summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2019-01-16Fixed #20147 -- Added HttpRequest.headers.Santiago Basulto
2019-01-15Fixed #9475 -- Allowed RelatedManager.add(), create(), etc. for m2m with a ↵Collin Anderson
through model.
2019-01-14Refs #28643 -- Changed Variance() to use NumericOutputFieldMixin.Nick Pope
Keeps precision instead of forcing DecimalField to FloatField.
2019-01-14Refs #28643 -- Changed StdDev() to use NumericOutputFieldMixin.Nick Pope
Keeps precision instead of forcing DecimalField to FloatField.
2019-01-14Refs #28643 -- Changed Avg() to use NumericOutputFieldMixin.Nick Pope
Keeps precision instead of forcing DecimalField to FloatField.
2019-01-13Fixed #27685 -- Added watchman support to the autoreloader.Tom Forbes
Removed support for pyinotify (refs #9722).
2019-01-12Refs #28643 -- Added Reverse database function.Nick Pope
Thanks Mariusz Felisiak for Oracle advice and review.
2019-01-12Fixed #30062 -- Added support for unique conditional constraints.Paveł Tyślacki
2019-01-11Fixed #30097 -- Made 'obj' arg of InlineModelAdmin.has_add_permission() ↵MaximZemskov
optional. Restored backwards compatibility after refs #27991. Regression in be6ca89396c031619947921c81b8795d816e3285.
2019-01-11Refs #23829 -- Made ping_google command/function use https for the sitemap URL.Sanyam Khurana
2019-01-11Documented ping_google()'s ping_url argument.Sanyam Khurana
2019-01-10Fixed typos in docs/ref/models/constraints.txt.Tim Graham
2019-01-10Refs #28643 -- Added NullIf database function.Mads Jensen
Thanks Nick Pope, Mariusz Felisiak, and Tim Graham for reviews.
2019-01-09Fixed #30037 -- Added request arg to RemoteUserBackend.configure_user().Joshua Cannon
2019-01-09Corrected whitespace in docs/ref/contrib/auth.txt.Tim Graham
2019-01-09Fixed #29968 -- Doc'd that QuerySet.bulk_update() doesn't check for duplicates.Hasan Ramezani
2019-01-09Fixed #28658 -- Added DISTINCT handling to the Aggregate class.Simon Charette
2019-01-02Fixed typo in docs/ref/migration-operations.txt.Jozef
2018-12-29Fixed #30063 -- Doc'd that Meta.unique_together may be deprecated in favor ↵Paveł Tyślacki
of Meta.constraints.
2018-12-29Added examples to HttpRequest.build_absolute_uri() docs.Adam Johnson
2018-12-24Added import locations to contrib.postgres aggregates and validators docs.Marten Kenbeek
2018-12-24Fixed #30056 -- Added SQLite support for StdDev and Variance functions.Nick Pope
2018-12-24Fixed #20098 -- Added a check for model Meta.db_table collisions.Sanyam Khurana
2018-12-22Renamed Sqlite and Sqlite3 references to SQLite.Nick Pope
2018-12-22Fixed #30055 -- Dropped support for SQLite < 3.8.3.Tim Graham
2018-12-21Fixed #29750 -- Added View.setup() hook for class-based views.François Freitag
2018-12-19Fixed #30031 -- Added --no-header option to makemigrations/squashmigrations.Dakota Hawkins
2018-12-06Fixed #28766 -- Added ResolverMatch.route.Benjamin Wohlwend
Co-Authored-By: Xavier Fernandez <xavier.fernandez@polyconseil.fr>
2018-12-06Bumped mysqlclient requirement to >= 1.3.13.Tim Graham
There are test failures with older versions.
2018-12-05Reverted "Fixed #25251 -- Made data migrations available in ↵Tim Graham
TransactionTestCase when using --keepdb." This reverts commits b3b1d3d45fc066367f4fcacf0b06f72fcd00a9c6 and 9fa0d3786febf36c87ef059a39115aa1ce3326e8 due to reverse build failures for which a solution isn't forthcoming.
2018-11-28Refs #28205 -- Corrected ModelAdmin.prepopulated_fields docs regarding when ↵Tim Graham
they're populated.
2018-11-27Fixed #29317 -- Doc'd filter argument in contrib.postgres aggregates.Tim Graham
2018-11-27Corrected Aggregate docs to reflect that it accepts multiple expressions.Simon Charette
2018-11-26Refs #29722 -- Added introspection of materialized views for Oracle.Mariusz Felisiak
Thanks Tim Graham for the review.
2018-11-23Refs #23801 -- Made integer field max_length warning show correct field type.Nick Pope
2018-11-20Corrected docs and removed unused code for got_request_exception signal's ↵Tim Graham
sender argument. Inaccurate since 7d1b69dbe7f72ac04d2513f0468fe2146231b286.
2018-11-19Refs #29722 -- Added introspection of partitions for PostgreSQL.Nick Pope
2018-11-19Fixed #29478 -- Added support for mangled names to cached_property.Thomas Grainger
Co-Authored-By: Sergey Fedoseev <fedoseev.sergey@gmail.com>
2018-11-15Used auto-numbered lists in documentation.François Freitag
2018-11-14Fixed #29939 -- Increased Group.name max_length to 150 characters.Timothy Allen
2018-11-14Fixed typo in docs/ref/middleware.txt.Daniel Musketa
2018-11-13Fixed #29788 -- Added support for Oracle Managed File (OMF) tablespaces.Mariusz Felisiak
2018-11-13Fixed #29641 -- Added support for unique constraints in Meta.constraints.Simon Charette
This constraint is similar to Meta.unique_together but also allows specifying a name. Co-authored-by: Ian Foote <python@ian.feete.org>
2018-11-13Generalized check constraint docs for other constraints.Simon Charette
2018-11-12Corrected docs regarding RegisterLookupMixin subclasses.Sergey Fedoseev
2018-11-10Updated some links to https and new locations.Mads Jensen
2018-11-09Fixed #29941 -- Fixed missing variable in docs/ref/contrib/contenttypes.txt.Tim Graham
Regression in b47552b445547e60cc89213f79e02333cb63f270.
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.