Releases: julianwachholz/django-guest-user
Releases · julianwachholz/django-guest-user
0.5.5
0.5.4
0.5.3
Changes
- Added a new contrib middleware for django-tos (#5)
0.5.2
Changes
- Fixed authentication backend: It will now prevent authentication if a password was supplied instead of throwing an exception.
0.5.1
0.5.0
Changes
- Added
GUEST_USER_NAME_SUFFIX_DIGITS
setting to append more numbers to a generated username. - Delete guests depending on
created_at
timestamp and do not rely onlast_login
field to exist on the User model. - A lot more documentation!
0.4.0
Changes
- Added Mixins for use with class based views (CBV)
- Allow decorator usage without parentheses
- Added simple configuration checks (run by
manage.py check
) to ensure the authentication backend is correctly configured. - Proper documentation on readthedocs
0.3.0
Changes
- Added contrib module for integrating django-allauth
0.2.0
Changes
- Specify different redirect URLs for anonymous, guest and registered users in decorators
- Send a signal
guest_created
when a new guest is created - Added more tests
Fixed
- Fixed wrong user-agent matching
- Fixed
GUEST_USER_ENABLED
setting actually being used
0.1.2
Changes
- Added username uniqueness checks!
- Added automated tests with
pytest