forked from pennersr/django-allauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
511 lines (311 loc) · 16.1 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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
2013-07-01 Raymond Penners <[email protected]>
* Version 0.12.0 released.
2013-06-29 Raymond Penners <[email protected]>
* Added support for re-authenticated (forced prompt) by means of a
new `action="reauthenticate"` parameter to the `{%
provider_login_url %}`
2013-06-28 Raymond Penners <[email protected]>
* Roberto Novaes contributed a Brazilian Portuguese translation,
thanks!
2013-06-18 Raymond Penners <[email protected]>
* Daniel Eriksson contributed a Swedish translation, thanks!
2013-06-11 Raymond Penners <[email protected]>
* You can now logout from both allauth and Facebook via a
Javascript helper: `window.allauth.facebook.logout()`.
2013-06-10 Raymond Penners <[email protected]>
* Connecting a social account is now a flow that needs to be
explicitly triggered, by means of a `process="connect"` parameter
that can be passed along to the `{% provider_login_url %}`, or a
`process=connect` GET parameter.
2013-06-06 Raymond Penners <[email protected]>
* Tomas Marcik contributed a Czech translation, thanks!
2013-06-04 Raymond Penners <[email protected]>
* Version 0.11.1 released (due to issue in disconnecting social
accounts).
2013-06-02 Raymond Penners <[email protected]>
* Version 0.11.0 released.
2013-05-30 Raymond Penners <[email protected]>
* Moved logic whether or not a social account can be disconnected
to the `SocialAccountAdapter` (`validate_disconnect`).
* Added `social_account_removed` signal.
2013-05-29 Raymond Penners <[email protected]>
* Implemented CSRF protection
(http://tools.ietf.org/html/draft-ietf-oauth-v2-30#section-10.12).
* The `user_logged_in` signal now optionally receives a
`sociallogin` parameter, in case of a social login.
* Added `social_account_added` (contributed by orblivion, thanks).
* Hatem Nassrat contributed Bitly support, thanks!
2013-05-22 Raymond Penners <[email protected]>
* Bojan Mihelac contributed a Croatian translation, thanks!
2013-05-20 Raymond Penners <[email protected]>
* Messages (as in `django.contrib.messages`) are now configurable
through templates.
2013-04-25 Raymond Penners <[email protected]>
* Added support for differentiating e-mail handling (verification,
required) between local and social accounts:
`SOCIALACCOUNT_EMAIL_REQUIRED` and
`SOCIALACCOUNT_EMAIL_VERIFICATION`.
2013-04-16 Raymond Penners <[email protected]>
* Version 0.10.1 released.
* Cleaning of `username` can now be overriden via
`DefaultAccountAdapter.clean_username`
2013-04-16 Raymond Penners <[email protected]>
* Fixed potential error (`assert`) when connecting social
accounts.
2013-04-13 Raymond Penners <[email protected]>
* Added support for custom username handling in case of custom
user models (`ACCOUNT_USER_MODEL_USERNAME_FIELD`).
2013-04-12 Raymond Penners <[email protected]>
* Version 0.10.0 released.
2013-04-08 Raymond Penners <[email protected]>
* Chris Davis contributed Vimeo support, thanks!
2013-04-03 Raymond Penners <[email protected]>
* Added support for overriding the URL to return to after
connecting a social account
(`allauth.socialaccount.adapter.DefaultSocialAccountAdapter.get_connect_redirect_url`).
2013-03-31 Raymond Penners <[email protected]>
* Python 3 is now supported!
2013-03-28 Raymond Penners <[email protected]>
* Dropped dependency on (unmaintained?) oauth2 package, in favor
of requests-oauthlib.
2013-03-13 Raymond Penners <[email protected]>
* account: E-mail confirmation mails generated at signup can now
be differentiated from regular e-mail confirmation mails by
placing e.g. a welcome message into the
`account/email/email_confirmation_signup*` templates. Thanks to
Sam Solomon for the patch.
* account: Moved User instance creation to adapter so that e.g.
username generation can be influenced. Thanks to John Bazik for
the patch.
2013-03-08 Raymond Penners <[email protected]>
* Robert Balfre contributed Dropbox support, thanks!
2013-02-19 Raymond Penners <[email protected]>
* socialaccount: Added support for Weibo.
2013-02-15 Raymond Penners <[email protected]>
* account: Added support for sending HTML e-mail. Add
"*_message.html" templates and they will be automatically picked
up.
2013-02-13 Raymond Penners <[email protected]>
* socialaccount: The refresh token and token expiry time, if any,
are now stored in `SocialToken`.
* Added support for passing along extra parameters to the OAuth2
authentication calls, such as `access_type` (Google) or
`auth_type` (Facebook).
2013-02-12 Raymond Penners <[email protected]>
* Both the login and signup view now immediately redirect to the
login redirect url in case the user was already authenticated.
2013-02-11 Raymond Penners <[email protected]>
* Added support for closing down signups in a pluggable fashion,
making it easy to hookup your own invitation handling mechanism.
2013-02-09 Raymond Penners <[email protected]>
* Added support for passing along extra parameters to the
`FB.login` API call.
2013-01-30 Raymond Penners <[email protected]>
* Version 0.9.0 released.
2013-01-29 Raymond Penners <[email protected]>
* account: `user_signed_up` signal now emits an optional
`sociallogin` parameter so that receivers can easily differentiate
between local and social signups.
2013-01-24 Raymond Penners <[email protected]>
* account: Added `email_removed` signal.
* socialaccount: Populating of User model fields is now
centralized in the adapter, splitting up `name` into `first_name`
and `last_name` if these were not individually available.
2013-01-11 Raymond Penners <[email protected]>
* Ahmet Emre Aladağ contributed a Turkish translation, thanks!
* socialaccount: Added SocialAccountAdapter hook to allow for
intervention in social logins.
2013-01-07 Raymond Penners <[email protected]>
* google: support for Google's `verified_email` flag to determine
whether or not to send confirmation e-mails.
2012-12-26 Raymond Penners <[email protected]>
* Fábio Santos contributed a Portugese translation, thanks!
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).