forked from pennersr/django-allauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
141 lines (89 loc) · 4.75 KB
/
ChangeLog
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
2012-06-11 Raymond Penners <raymond.penners@intenct.nl>
* account: Added ACCOUNT_AUTHENTICATION_METHOD setting, supporting
login by username, e-mail or both.
2012-06-08 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.5.0 released.
2012-06-07 Raymond Penners <raymond.penners@intenct.nl>
* account: Added setting ACCOUNT_PASSWORD_MIN_LENGTH for
specifying the minimum password length.
2012-06-05 Raymond Penners <raymond.penners@intenct.nl>
* socialaccount: Added generic OAuth2 support. Added GitHub
support as proof of concept.
2012-06-04 Raymond Penners <raymond.penners@intenct.nl>
* socialaccount: More refactoring: generic provider & OAuth
consumer approach. Added LinkedIn support to test this approach.
2012-06-03 Raymond Penners <raymond.penners@intenct.nl>
* socialaccount: Introduced generic models for storing social
apps, accounts and tokens in a central and consistent manner,
making way for adding support for more account providers. Note:
there is more refactoring to be done -- this first step only
focuses on the database models.
2012-03-29 Raymond Penners <raymond.penners@intenct.nl>
* account: E-mail confirmation mails are now automatically resent
whenever a user attempts to login with an unverified e-mail
address (if ACCOUNT_EMAIL_VERIFICATION=True).
2012-03-25 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.4.0 released.
2012-03-15 Raymond Penners <raymond.penners@intenct.nl>
* account: The render_value parameter of all PasswordInput fields
used can now be configured via a setting.
2012-03-15 Raymond Penners <raymond.penners@intenct.nl>
* account: Added support for prefixing the subject of sent emails.
2012-03-14 Raymond Penners <raymond.penners@intenct.nl>
* account: Added support for a plugging in a custom signup form
used for additional questions to ask during signup.
2012-02-28 Raymond Penners <raymond.penners@intenct.nl>
* account: `is_active` is no longer used to keep users with an
unverified e-mail address from loging in.
2012-02-22 Raymond Penners <raymond.penners@intenct.nl>
* Dropping uniform dependency. Moved uniform templates into
example project.
2012-01-19 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.3.0 released.
2012-01-06 Raymond Penners <raymond.penners@intenct.nl>
* The e-mail authentication backend now attempts to use the
'username' parameter as an e-mail address. This is needed to
properly integrate with other apps invoking authenticate.
2011-05-29 Raymond Penners <raymond.penners@intenct.nl>
* SmileyChris contributed support for automatically generating a
user name at signup when ACCOUNT_USERNAME_REQUIRED is set to
False.
* Vuong Nguyen contributed support for (optionally) asking for the
password just once during signup
(ACCOUNT_SIGNUP_PASSWORD_VERIFICATION).
2011-04-22 Raymond Penners <raymond.penners@intenct.nl>
* The Twitter oauth sequence now respects the "oauth_callback"
parameter instead of defaulting to the callback URL
configured at Twitter.
2011-04-14 Raymond Penners <raymond.penners@intenct.nl>
* Pass along "?next=" parameter between login and signup views.
* Added Dutch translation.
2011-04-12 Raymond Penners <raymond.penners@intenct.nl>
* Added template tags for pointing to social login URLs. These
tags automatically pass along any "?next="
parameter. Additionally, added an overall allauth_tags that
gracefully degrades when e.g. allauth.facebook is not installed.
2011-04-11 Raymond Penners <raymond.penners@intenct.nl>
* Pass along next URL, if any, at /accounts/social/signup/.
* Duplicate email address handling could throw a
MultipleObjectsReturned exception, fixed.
2011-04-10 Raymond Penners <raymond.penners@intenct.nl>
* Removed separate social account login view, in favour of having
a single unified login view including both forms of login.
2011-04-07 Raymond Penners <raymond.penners@intenct.nl>
* Added support for passing along a next URL parameter to
Facebook, OpenID logins.
2011-02-13 Raymond Penners <raymond.penners@intenct.nl>
* Added support for django-avatar, copying the Twitter profile
image locally on signup.
2010-11-12 Raymond Penners <raymond.penners@intenct.nl>
* allauth/account/forms.py (BaseSignupForm.clean_email): With
ACCOUNT_EMAIL_REQUIRED=False, empty email addresses were
considered duplicates. Fixed.
2010-11-12 Raymond Penners <raymond.penners@intenct.nl>
* The existing migrations for allauth.openid were not compatible
with MySQL due to the use of an URLField with max_length above
255. The issue has now been addressed but unfortunately at the
cost of the existing migrations for this app. Existing
installations will have to be dealt with manually (altering the
"identity" column of OpenIDAccount, deleting ghost migrations).