Releases: muccg/django-useraudit
Support for Django 2.0+
Password expiry disables user account
The behaviour of the app has been changed to deactivate user account on password expiry. This is consistent with what happens on account expiry and account lockout. #26
There are also 2 bug fixes in this release:
* Exception is raised when LOGIN_FAILURE_LIMIT is reached for user that doesn't exit #25
* Mark credentials as sensitive variables #27
Update to Django 1.10 style middleware
Fix for previous (1.5.2) release.
The change to the error message hasn't been made in the models, just a migration has been added for it.
Making the required model change as well.
Bugfix release
Fixes type in error message #22.
Fixes migrations added in 1.5.0
1.5.1 Version bump 1.5.0 -> 1.5.1
Password warning hooks and user deactivation reason stored
There is a new signal password_will_expire_warning
and methods should_warn_about_password_expiry
, and days_to_password_expiry
to help with writing custom code to warn the users when their password is about to expire.
The reason why a user has been deactivated is stored now in the new UserDeactivation
table.
Made UserAudit's max length 1000 (from 255)
Bug fix release
Fixes #11