forked from bread-and-pepper/django-userena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UPDATES
31 lines (21 loc) · 1.16 KB
/
UPDATES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
This file contains all the backwards-incompatible changes.
Version 1.2.2
- Changed backwards relationships names for Umessages contrib application from
`to_user` to `um_to_user` and `from_user` to `um_from_user`.
Version 1.2.0
- This version updates Userena to be able to use the new `User` model found in
Django 1.5. This does require the django-guardion > 1.5-dev. To make this
work, there is a `get_user_model` function in `userena/utils.py` which is used
to get the correct `User` model.
Version 1.1.2
- Activation view no longer contains username. If you override
`userena/templates/userena/emails/activation_email_message.txt` and
`userena/templates/userena/emails/confirmation_email_message_new.txt` be sure
to remove username from the URL.
Version 1.1
- Userena now requires Django >= 1.3 because of the use of class based views.
Version 1.0.1
- Removed the ``user`` relationship outside ``UserenaBaseProfile`` model. This
allows the user to define it's own relationship and fixes a conflict while
running ``manage.py test``. To migrate, place the ``user`` field inside your
profile model, instead of inheriting it from the ``abstract`` class.