Skip to content
This repository has been archived by the owner on May 5, 2020. It is now read-only.

1.0.0

Compare
Choose a tag to compare
@relekang relekang released this 03 Oct 13:38

Rename the app to nopassword: This means that from this version installed apps
in django should list nopassword not django_nopassword. In addition all imports
need to point to nopassword not django_nopassword.

The possibility to customize code delivery:
Most of the code in the EmailBackend has been moved to a new backend called
NoPasswordBackend. The latter is not meant to be used on its own, but it will
make it easier to create other backends similar to EmailBackend. With other
words, it has become easier to send the login codes with other technologies like
sms.

Verification of the user:
django-nopassword uses user.is_active() to determine whether a user is still
active or not. In this release we moved this into its own method,
NoPasswordBackend.verify_user, which makes it easier to create your own logic
to verify your users.

Django 1.7 support: Now it is tested and known to work with the released version
of Django 1.7. Earlier it had just support for the beta 3.

Migrations: Support for both Django 1.7 migrations and South migrations. To use
South it is necessary to use version the lastest version(1.0), since it is the only
version that looks for migrations in south_migrations.