diff options
| author | Joshua Cannon <joshua.cannon@ni.com> | 2018-12-13 10:14:03 -0600 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2019-01-09 20:01:04 -0500 |
| commit | db1b10ef0dcab2b8bacbea4adc681a57bd70b462 (patch) | |
| tree | 98e5de16c2ba4a77d52bb0fc61c3b9b2da2f0473 /docs/releases | |
| parent | 4ca2820ff573ed87c70fedda69efa8de23955669 (diff) | |
Fixed #30037 -- Added request arg to RemoteUserBackend.configure_user().
Diffstat (limited to 'docs/releases')
| -rw-r--r-- | docs/releases/2.2.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/releases/2.2.txt b/docs/releases/2.2.txt index 150fe413db..7cb5c84475 100644 --- a/docs/releases/2.2.txt +++ b/docs/releases/2.2.txt @@ -55,7 +55,8 @@ Minor features :mod:`django.contrib.auth` ~~~~~~~~~~~~~~~~~~~~~~~~~~ -* ... +* The ``HttpRequest`` is now passed as the first positional argument to + :meth:`.RemoteUserBackend.configure_user`, if it accepts it. :mod:`django.contrib.contenttypes` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -505,3 +506,7 @@ Miscellaneous * ``django.contrib.staticfiles.storage.CachedStaticFilesStorage`` is deprecated due to the intractable problems that is has. Use :class:`.ManifestStaticFilesStorage` or a third-party cloud storage instead. + +* :meth:`.RemoteUserBackend.configure_user` is now passed ``request`` as the + first positional argument, if it accepts it. Support for overrides that don't + accept it will be removed in Django 3.1. |
