| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-05-07 | Replaced django.test.utils.patch_logger() with assertLogs(). | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2018-04-19 | Fixed #29212 -- Doc'd redirect loop if @permission_required used with ↵ | Nick Pope | |
| redirect_authenticated_user. | |||
| 2018-03-15 | Fixed #29206 -- Fixed PasswordResetConfirmView crash when the URL contains a ↵ | Mattia Procopio | |
| non-UUID where one is expected. | |||
| 2018-02-07 | Refs #27795 -- Removed force_bytes/text() usage in tests. | Tim Graham | |
| 2017-09-22 | Refs #26929 -- Removed extra_context parameter of ↵ | Tim Graham | |
| contrib.auth.views.logout_then_login(). Per deprecation timeline. | |||
| 2017-09-09 | Fixed some comments referring to a nonexistent TestClient class. | Luoxzhg | |
| 2017-08-24 | Fixed #28513 -- Added POST request support to LogoutView. | hui shang | |
| 2017-06-13 | Fixed #28229 -- Fixed the value of LoginView's "next" template variable. | Mikhail Golubev | |
| 2017-05-24 | Refs #27804 -- Used subTest() in several tests. | Bruno Alla | |
| 2017-03-07 | Fixed #27891 -- Added PasswordResetConfirmView.post_reset_login_backend. | Camilo Nova | |
| 2017-02-15 | Fixed #27840 -- Fixed KeyError in PasswordResetConfirmView.form_valid(). | Markus Holtermann | |
| When a user is already logged in when submitting the password and password confirmation to reset a password, a KeyError occurred while removing the reset session token from the session. Refs #17209 Thanks Quentin Marlats for the report and Florian Apolloner and Tim Graham for the review. | |||
| 2017-02-07 | Fixed #27815 -- Made LoginView pass the request kwarg to AuthenticationForm. | Zoltan Gyarmati | |
| 2017-02-03 | Fixed spelling of "nonexistent". | Tim Graham | |
| 2017-01-26 | Refs #23919 -- Replaced usage of django.utils.http utilities with Python ↵ | Claude Paroz | |
| equivalents Thanks Tim Graham for the review. | |||
| 2017-01-25 | Refs #23919 -- Replaced super(ClassName, self) with super(). | chillaranand | |
| 2017-01-24 | Removed unneeded force_text calls in the test suite | Claude Paroz | |
| 2017-01-18 | Refs #23919 -- Removed most of remaining six usage | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2017-01-18 | Refs #23919 -- Removed encoding preambles and future imports | Claude Paroz | |
| 2017-01-13 | Fixed #27518 -- Prevented possibie password reset token leak via HTTP ↵ | Romain Garrigues | |
| Referer header. Thanks Florian Apolloner for contributing to this patch and Collin Anderson, Markus Holtermann, and Tim Graham for review. | |||
| 2016-11-21 | Refs #17209 -- Fixed token verification for PasswordResetConfirmView POST ↵ | Florian Apolloner | |
| requests. | |||
| 2016-11-10 | Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings. | za | |
| 2016-10-28 | Simplified some auth_tests with assertRedirects(). | Tim Graham | |
| 2016-09-07 | Fixed #26956 -- Added success_url_allowed_hosts to LoginView and LogoutView. | Jon Dufresne | |
| Allows specifying additional hosts to redirect after login and log out. | |||
| 2016-08-19 | Refs #26902 -- Protected against insecure redirects in Login/LogoutView. | Przemysław Suliga | |
| 2016-08-18 | Removed unused 'password' parameter in auth_tests. | Tim Graham | |
| 2016-08-15 | Fixed #27009 -- Made update_session_auth_hash() rotate the session key. | Tim Graham | |
| 2016-08-10 | Fixed #26960 -- Added PasswordResetConfirmView option to automatically log ↵ | jordij | |
| in after a reset. | |||
| 2016-07-28 | Fixed #26929 -- Deprecated extra_context parameter of ↵ | Andrew Nester | |
| contrib.auth.views.logout_then_login(). | |||
| 2016-07-22 | Fixed #26882 -- Added tests for auth.views.logout_then_login(). | Andrew Nester | |
| 2016-06-24 | Refs #17209 -- Added LoginView and LogoutView class-based views | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2016-04-08 | Fixed E128 flake8 warnings in tests/. | Tim Graham | |
| 2016-02-25 | Fixed #12233 -- Allowed redirecting authenticated users away from the login ↵ | Olivier Le Thanh Duong | |
| view. contrib.auth.views.login() has a new parameter `redirect_authenticated_user` to automatically redirect authenticated users visiting the login page. Thanks to dmathieu and Alex Buchanan for the original code and to Carl Meyer for the help and review. | |||
| 2016-02-13 | Fixed #11665 -- Made TestCase check deferrable constraints after each test. | Jon Dufresne | |
| 2016-02-06 | Fixed #26175 -- Removed SHA1 password hashes in tests. | Tim Graham | |
| 2016-02-04 | Fixed #26089 -- Removed custom user test models from public API. | Simon Charette | |
| Thanks to Tim Graham for the review. | |||
| 2016-02-04 | Fixed #12405 -- Added LOGOUT_REDIRECT_URL setting. | Hugo Osvaldo Barrera | |
| After a user logs out via auth.views.logout(), they're redirected to LOGOUT_REDIRECT_URL if no `next_page` argument is provided. | |||
| 2016-01-08 | Fixed #21113 -- Made LogEntry.change_message language independent | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2015-12-31 | Fixed #26013 -- Moved django.core.urlresolvers to django.urls. | Marten Kenbeek | |
| Thanks to Tim Graham for the review. | |||
| 2015-12-03 | Fixed many spelling mistakes in code, comments, and docs. | Josh Soref | |
| 2015-10-27 | Fixed #25596 -- Fixed regression in password change view with custom user model. | Tim Graham | |
| The reverse() added in 50aa1a790ca66c2a93e0a52e00c53375b269ff49 crashed on a custom user model. | |||
| 2015-10-02 | Fixed #25490 -- Made the logout() view send "no-cache" headers. | Kaleb Elwert | |
| 2015-09-23 | Refs #23957 -- Required session verification per deprecation timeline. | Tim Graham | |
| 2015-09-23 | Refs #21648 -- Removed is_admin_site option from password_reset() view. | Tim Graham | |
| Per deprecation timeline. | |||
| 2015-09-18 | Fixed #24944 -- Added extra_email_context parameter to password_reset() view. | sujayskumar | |
| 2015-06-24 | Renamed RemovedInDjangoXYWarnings for new roadmap. | Tim Graham | |
| Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more. | |||
| 2015-05-02 | Fixed #24696 -- Made CSRF_COOKIE computation lazy. | Jay Cox | |
| Only compute the CSRF_COOKIE when it is actually used. This is a significant speedup for clients not using cookies. Changed result of the “test_token_node_no_csrf_cookie” test: It gets a valid CSRF token now which seems like the correct behavior. Changed auth_tests.test_views.LoginTest.test_login_csrf_rotate to use get_token() to trigger CSRF cookie inclusion instead of changing request.META["CSRF_COOKIE_USED"] directly. | |||
| 2015-03-28 | Refs #15779 -- Fixed UserChangeForm regression introduced by 1791a7e75 | Claude Paroz | |
| Thanks Tim Graham for reporting the regression. | |||
| 2015-03-05 | Converted test fixtures to setUpTestData methods | Josh Smeaton | |
| 2015-02-13 | Fixed #24315 -- Fixed auth.views.password_reset_confirm() with a UUID user. | Tim Graham | |
| 2015-02-13 | Fixed #24334 -- Allowed admin password reset to work with non-digit custom ↵ | Tim Graham | |
| user model primary key. Thanks Loic for help and Simon for review. | |||
