| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-01 | Removed doc note about PasswordResetForm requiring an integer PK. | Tim Graham | |
| This limitation was lifted in refs #14881. | |||
| 2014-12-28 | Deprecated TEMPLATE_CONTEXT_PROCESSORS. | Aymeric Augustin | |
| 2014-12-05 | Fixed #23957 -- Started deprecation toward requiring session verification. | Tim Graham | |
| Thanks Carl Meyer for review. | |||
| 2014-11-27 | Fixed #23847 -- Improved the email_check example in the auth documentation. | Berker Peksag | |
| 2014-11-15 | Fixed #23793 -- Clarified password reset behavior in auth docs | Yigit Guler | |
| 2014-10-27 | Fixed documentation of make_password kwargs. | Ilya Baryshev | |
| 2014-08-31 | Removed sentence from docs about migrate prompting to add a superuser. | Michael Angeletti | |
| 2014-08-23 | Fixed #21648 -- Deprecated is_admin_site option to auth.views.password_reset(). | Tim Graham | |
| 2014-08-19 | Removed unnecessary code-block directives. | areski | |
| 2014-08-19 | Fixed #23314 -- Tempered recommendation of storing profile data on custom user. | Tim Graham | |
| Thanks gavinwahl for the report. | |||
| 2014-08-13 | Refs #23276 -- Added missing url() in some places. | Collin Anderson | |
| 2014-07-30 | Fixed #23067 -- Updated docs to use django-admin | Christoph Heer | |
| 2014-07-30 | Fixed #23132 -- Removed confusing clause in auth docs. | Tim Graham | |
| 2014-07-21 | Replaced instances of 'his/her' with 'their'. | Iain Dawson | |
| 2014-07-08 | Fixed #21832 -- Updated prompt, tests, and docs to show that USERNAME_FIELD ↵ | Anubhav Joshi | |
| supports FK after 9bc2d76. Also added get_input_data() hook in createsuperuser. Thanks Chris Jerdonek and Tim Graham for review. | |||
| 2014-07-03 | Fixed #21755 -- Added ForeignKey support to REQUIRED_FIELDS. | Anubhav Joshi | |
| This allows specifying ForeignKeys in REQUIRED_FIELDS when using a custom User model. Thanks cjerdonek and bmispelon for suggestion and timgraham for review. | |||
| 2014-07-01 | Fixed #22932: Documented circular dependency issues with swappable user | Andrew Godwin | |
| 2014-06-19 | Fixed #22874: Document that AUTH_USER_MODEL must be in first migration | Andrew Godwin | |
| 2014-06-17 | Fixed #22853: Swapped models are now ignored for migration operations. | Andrew Godwin | |
| 2014-06-10 | Fixed #22770 -- Removed create_superuser from post_migrate signals. | Tim Graham | |
| Moved logic to syncdb command for backwards compatibility. | |||
| 2014-06-10 | Fixed #17431 -- Added send_mail() method to PasswordResetForm. | Jorge C. Leitão | |
| Credits for the initial patch go to ejucovy; big thanks to Tim Graham for the review. | |||
| 2014-06-10 | Corrected some indentation in docs/topics/auth/default.txt. | Tim Graham | |
| 2014-05-17 | Fixed #22647 -- Documented redirect_field_name keyword argument for ↵ | Víðir Valberg Guðmundsson | |
| user_passes_test. | |||
| 2014-05-16 | Fixed #15716 - Authentication backends can short-circuit authorization. | Jorge C. Leitão | |
| Authorization backends can now raise PermissionDenied in "has_perm" and "has_module_perms" to short-circuit authorization process. | |||
| 2014-04-22 | Updated grammar in description of django.contrib.auth. | Ray Ashman | |
| 2014-04-17 | Stray paren | Alex Gaynor | |
| 2014-04-17 | Include an 'extra_requires' for bcrypt | Alex Gaynor | |
| 2014-04-16 | Added a note regarding django.contrib.auth.authenticate. | Tim Graham | |
| Thanks Josh Brown for the suggestion. | |||
| 2014-04-05 | Fixed #21649 -- Added optional invalidation of sessions when user password ↵ | Tim Graham | |
| changes. Thanks Paul McMillan, Aymeric Augustin, and Erik Romijn for reviews. | |||
| 2014-03-24 | Removed versionadded/changed annotations for 1.6. | Tim Graham | |
| 2014-03-17 | Fixed #22006 -- Documented how to write a login_required mixin for CBVs. | Tim Graham | |
| Thanks django at patjack.co.uk for the suggestion and mockforest for the draft patch. | |||
| 2014-03-10 | Fixed #21875 -- Clarified that get_user_model() only works at run time. | Aymeric Augustin | |
| Thanks Benjamin White for the report. | |||
| 2014-03-02 | Fixed some typos in the documentation. | Baptiste Mispelon | |
| Thanks to Rodolfo Carvalho and Piotr Kasprzyk for the patch. | |||
| 2014-02-28 | Fixed doc typos. | Tim Graham | |
| 2014-02-25 | Fixed docs typos. | Szczepan Cieślik | |
| 2014-02-19 | Fixed #22093 -- Made Form.Meta.fields examples consistent. | Tim Graham | |
| Thanks david-schultz at gmx.net for the suggestion. | |||
| 2014-02-13 | Fixed #21951 -- Updated docs to use __str__ for Python 3 | Alasdair Nicol | |
| Thanks Tim Graham for the report and recommendations | |||
| 2014-01-26 | Moved RequestSite and get_current_site. | Aymeric Augustin | |
| Following the app-loading refactor, these objects must live outside of django.contrib.sites.models because they must be available without importing the django.contrib.sites.models module when django.contrib.sites isn't installed. Refs #21680. Thanks Carl and Loic for reporting this issue. | |||
| 2014-01-25 | Fixed #21829 -- Added default AppConfigs. | Aymeric Augustin | |
| Thanks Russell for the report, Marc for the initial patch, Carl for the final review, and everyone who contributed to the design discussion. | |||
| 2014-01-22 | Fixed #20834 -- Described how caching of user permissions works. | Tim Graham | |
| Thanks Giggaflop and Jennifer Casavantes. | |||
| 2014-01-22 | Fixed #21726 -- Clarified that password should not be included in ↵ | Tim Graham | |
| REQUIRED_FIELDS. Thanks russellm for the report. | |||
| 2014-01-17 | Removed some unnecessary __exact operators in filters. | Tim Graham | |
| 2014-01-16 | Fixed #21727 -- Added some links to help clarify topics/auth/default.txt | Tim Graham | |
| Thanks daGrevis for the suggestion. | |||
| 2014-01-04 | Fixed #21730 -- Removed superfluous db_index in custom auth docs | Claude Paroz | |
| Thanks rafalp for the report. | |||
| 2013-11-24 | Fixed #21391 -- Allow model signals to lazily reference their senders. | Simon Charette | |
| 2013-11-07 | Removed no longer relevant word | Sylvain Bellemare | |
| 2013-11-01 | Fixed typo -- "a" user, not "an" user | Sylvain Bellemare | |
| 2013-10-30 | Fixed #21294 -- Clarified the logout next_page argument. | Tim Graham | |
| Thanks wim at go2people.nl for the report. | |||
| 2013-10-25 | Fixed #21325 -- Added missing argument to permission_required decorator. | Tim Graham | |
| 2013-10-21 | Added docs for the hasher's iteration count changes. | Tim Graham | |
