forked from pennersr/django-allauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
308 lines (189 loc) · 9.82 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
2012-12-22 Raymond Penners <[email protected]>
* socialaccount: Added support for Stack Exchange.
2012-12-14 Raymond Penners <[email protected]>
* socialaccount: Added `get_social_accounts` template tag.
* account: Default URL to redirect to after login can now be
overriden via the adapter, both for login and e-mail confirmation
redirects.
2012-12-06 Raymond Penners <[email protected]>
* Version 0.8.3 released.
2012-11-27 Raymond Penners <[email protected]>
* Markus Thielen contributed a German translation, thanks!
2012-11-26 Raymond Penners <[email protected]>
* The `site` foreign key from `SocialApp` to `Site` has been
replaced by a `ManyToManyField`. Many apps can be used across
multiple domains (Facebook cannot).
2012-11-24 Raymond Penners <[email protected]>
* account: Added adapter class for increased pluggability. Added
hook for 3rd party invitation system to by pass e-mail
verification (`stash_email_verified`). Moved sending of mail to
adapter.
2012-10-23 Raymond Penners <[email protected]>
* account: Added option to completely disable e-mail verification
during signup.
2012-10-10 Raymond Penners <[email protected]>
* Version 0.8.2 released.
* Twitter: Login was broken due to change at in URLs at Twitter,
fixed.
* LinkedIn: Added support for passing along the OAuth scope.
* account: Improved e-mail confirmation error handling, no more
confusing 404s.
2012-10-03 Raymond Penners <[email protected]>
* account: Aldiantoro Nugroho contributed support for a new
setting: ACCOUNT_USERNAME_MIN_LENGTH
2012-09-29 Raymond Penners <[email protected]>
* socialaccount: Added preliminary support for Mozilla Persona.
2012-09-28 Raymond Penners <[email protected]>
* account: Sam Solomon added various signals for email and
password related changes.
2012-09-08 Raymond Penners <[email protected]>
* account: Usernames may now contain @, +, . and - characters.
2012-09-03 Raymond Penners <[email protected]>
* Version 0.8.1 released.
* Python 2.6.2 compatibility issue, fixed.
* The example project was unintentionally packaged, fixed.
2012-09-01 Raymond Penners <[email protected]>
* Version 0.8.0 released.
2012-08-29 Raymond Penners <[email protected]>
* account: Dropped dependency on the emailconfirmation app,
integrating its functionality into the account app. This change is
of major impact, please refer to the documentation on how to
upgrade.
2012-08-28 Raymond Penners <[email protected]>
* account: Documented ACCOUNT_USERNAME_REQUIRED. This is actually
not a new setting, but it somehow got overlooked in the
documentation.
2012-08-24 Raymond Penners <[email protected]>
* account/socialaccount: Dropped the _tags postfix from the
template tag libraries. Simply use {% load account %} and {% load
socialaccount %}.
2012-08-21 Raymond Penners <[email protected]>
* Added signup and social login signals.
2012-08-17 Raymond Penners <[email protected]>
* SoundCloud: Rabi Alam contributed a SoundCloud provider, thanks!
2012-08-16 Raymond Penners <[email protected]>
* account: Sam Solomon cleaned up the e-mail management view:
added proper redirect after POSTs, prevent deletion of primary
e-mail. Thanks.
2012-08-04 Raymond Penners <[email protected]>
* account: When signing up, instead of generating a completely
random username a more sensible username is automatically derived
from first/last name or e-mail.
2012-07-18 Raymond Penners <[email protected]>
* Version 0.7.0 released.
2012-07-06 Raymond Penners <[email protected]>
* Facebook: Facundo Gaich contributed support for dynamically
deriving the Facebook locale from the Django locale, thanks!.
2012-06-27 Raymond Penners <[email protected]>
* OAuth: All OAuth/OAuth2 tokens are now consistently stored
across the board. Cleaned up OAuth flow removing superfluous
redirect.
* Facebook: Dropped Facebook SDK dependency.
* socialaccount: DRY focused refactoring of social login.
2012-06-26 Raymond Penners <[email protected]>
* socialaccount: Added support for Google OAuth2 and Facebook
OAuth2. Fixed GitHub.
2012-06-22 Raymond Penners <[email protected]>
* account: Added verified_email_required decorator.
2012-06-20 Raymond Penners <[email protected]>
* socialaccount: When signing up, user.first/last_name where
always taken from the provider signup data, even when a custom
signup form was in place that offered user inputs for editting
these fields. Fixed.
2012-06-20 Raymond Penners <[email protected]>
* Version 0.6.0 released.
* account: Added ACCOUNT_USER_DISPLAY to render a user name
without making assumptions on how the user is represented.
2012-06-18 Raymond Penners <[email protected]>
* allauth, socialaccount: Removed the last remaining bits of
hardcodedness with respect to the enabled social authentication
providers.
2012-06-11 Raymond Penners <[email protected]>
* account: Added ACCOUNT_AUTHENTICATION_METHOD setting, supporting
login by username, e-mail or both.
2012-06-08 Raymond Penners <[email protected]>
* Version 0.5.0 released.
2012-06-07 Raymond Penners <[email protected]>
* account: Added setting ACCOUNT_PASSWORD_MIN_LENGTH for
specifying the minimum password length.
2012-06-05 Raymond Penners <[email protected]>
* socialaccount: Added generic OAuth2 support. Added GitHub
support as proof of concept.
2012-06-04 Raymond Penners <[email protected]>
* socialaccount: More refactoring: generic provider & OAuth
consumer approach. Added LinkedIn support to test this approach.
2012-06-03 Raymond Penners <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Version 0.4.0 released.
2012-03-15 Raymond Penners <[email protected]>
* account: The render_value parameter of all PasswordInput fields
used can now be configured via a setting.
2012-03-15 Raymond Penners <[email protected]>
* account: Added support for prefixing the subject of sent emails.
2012-03-14 Raymond Penners <[email protected]>
* account: Added support for a plugging in a custom signup form
used for additional questions to ask during signup.
2012-02-28 Raymond Penners <[email protected]>
* account: `is_active` is no longer used to keep users with an
unverified e-mail address from loging in.
2012-02-22 Raymond Penners <[email protected]>
* Dropping uniform dependency. Moved uniform templates into
example project.
2012-01-19 Raymond Penners <[email protected]>
* Version 0.3.0 released.
2012-01-06 Raymond Penners <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Pass along "?next=" parameter between login and signup views.
* Added Dutch translation.
2011-04-12 Raymond Penners <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Added support for passing along a next URL parameter to
Facebook, OpenID logins.
2011-02-13 Raymond Penners <[email protected]>
* Added support for django-avatar, copying the Twitter profile
image locally on signup.
2010-11-12 Raymond Penners <[email protected]>
* allauth/account/forms.py (BaseSignupForm.clean_email): With
ACCOUNT_EMAIL_REQUIRED=False, empty email addresses were
considered duplicates. Fixed.
2010-11-12 Raymond Penners <[email protected]>
* 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).