Skip to content

Releases: julianwachholz/django-guest-user

0.5.5

01 Oct 15:56
d44e02d
Compare
Choose a tag to compare

Changes

  • Added default_auto_field to the app config class to prevent unnecessary migrations (#10)
  • Drop support for Python 3.7

0.5.4

20 Mar 22:22
f764902
Compare
Choose a tag to compare

Changes

  • Update initial migration to prevent missing migrations when running makemigrations (#8)
  • Fix potential issues with User models that don't use a username field (#9)

0.5.3

02 Jan 13:42
57d32bb
Compare
Choose a tag to compare

Changes

0.5.2

11 Jan 09:34
9faee49
Compare
Choose a tag to compare

Changes

  • Fixed authentication backend: It will now prevent authentication if a password was supplied instead of throwing an exception.

0.5.1

27 Dec 13:00
ffdb621
Compare
Choose a tag to compare

Changes

  • Removed deprecated default_app_config in packages (Thank you @blag #2 )
  • Removed support for Django 3.1 (No longer supported since Dec 7, 2021)

0.5.0

21 Dec 08:39
2e442b7
Compare
Choose a tag to compare

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 on last_login field to exist on the User model.
  • A lot more documentation!

0.4.0

02 Dec 22:48
074d141
Compare
Choose a tag to compare

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

06 Nov 20:32
9a63a15
Compare
Choose a tag to compare

Changes

0.2.0

26 Oct 17:33
a5ec627
Compare
Choose a tag to compare

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

25 Oct 22:22
25587c8
Compare
Choose a tag to compare

Changes

  • Added username uniqueness checks!
  • Added automated tests with pytest