This repository has been archived by the owner on Nov 29, 2017. It is now read-only.
forked from pennersr/django-allauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
938 lines (555 loc) · 28.9 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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
2015-11-09 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.24.1 released: non-test code accidentally had test
packages as a dependency.
2015-11-08 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.24.0 released.
* Django 1.9b1 compatibility.
* Increased `SocialApp` key/secret/token sizes to 191, decreased
`SocialAccount.uid` size to 191. The latter was done in order to
accomodate for MySQL in combination with utf8mb4 and contraints on
`uid`. Note that `uid` is used to store OpenID URLs, which can
theoretically be longer than 191 characters, although in practice
this does not seem to be the case. In case you really need to
control the `uid` length, set
`settings.SOCIALACCOUNT_UID_MAX_LENGTH` accordingly. Migrations
are in place.
2015-08-13 Raymond Penners <raymond.penners@intenct.nl>
* Seppo Erviälä contributed a Finnish translation, thanks!
2015-08-05 Raymond Penners <raymond.penners@intenct.nl>
* Iurii Kriachko contributed a Basecamp provider, thanks!
2015-08-02 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.23.0 released.
2015-07-29 Raymond Penners <raymond.penners@intenct.nl>
* David Friedman contributed Edmodo support, thanks!
* Added support for `ACCOUNT_LOGIN_ON_PASSWORD_RESET` (thanks
Julen!)
2015-07-23 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.22.0 released.
2015-07-22 Raymond Penners <raymond.penners@intenct.nl>
* Reversal of the email confirmation url can now be overridden in
the adapter (`get_email_confirmation_url`). Additionally, the
complete confirmation email handling can be overridden via
`send_confirmation_mail`.
* Dropped support for Python 2.6 and Django <1.6.
2015-07-21 Raymond Penners <raymond.penners@intenct.nl>
* Template context processors are no longer used.
* The Facebook Graph API fields (/me/?fields=...) can now be
configured using the provider `FIELDS` setting.
* The default Facebook Graph API version is now v2.4.
2015-07-02 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.21.0 released.
2015-06-27 Raymond Penners <raymond.penners@intenct.nl>
* You can now tweak the authentication params per OAuth provider,
as you already could for OAuth2. Contributed by Peter Rowlands,
thanks.
* Nattaphoom Ch. contributed a Thai translation, thanks!
2015-06-14 Raymond Penners <raymond.penners@intenct.nl>
* Guoyu Hao contributed a Baidu provider, thanks!
2015-06-03 Raymond Penners <raymond.penners@intenct.nl>
* Rod Xavier Bondoc contributed support logging out on password
change (see setting: `ACCOUNT_LOGOUT_ON_PASSWORD_CHANGE`)
2015-05-25 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.20.0 released.
2015-05-20 Raymond Penners <raymond.penners@intenct.nl>
* Given that the `max_length` for the Django 1.8 `EmailField` has
been bumped to 254, allauth is following up. Migrations
(`account`) are in place.
2015-02-27 Raymond Penners <raymond.penners@intenct.nl>
* Patrick Paul contributed a provider for Evernote, thanks!
* Josh Wright contributed a provider for Spotify, thanks!
2015-02-12 Raymond Penners <raymond.penners@intenct.nl>
* Björn Andersson added support for Dropbox OAuth2, thanks!
* guoqiao contributed a provider for Douban, thanks!
2015-02-05 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.19.1 released.
* Fixed migrations when using South & Django 1.6.
2015-01-04 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.19.0 released.
2014-12-25 Raymond Penners <raymond.penners@intenct.nl>
* Basil Shubin contributed an Odnoklassniki provider, thanks!
2014-12-10 Raymond Penners <raymond.penners@intenct.nl>
* Facebook: If the JS SDK is not available, for example due to a
browser plugin like Disconnect.me that blocks it, login falls back
to the regular non JS handshake.
2014-12-03 Raymond Penners <raymond.penners@intenct.nl>
* `is_safe_url` can now be overriden
2014-11-30 Raymond Penners <raymond.penners@intenct.nl>
* Facebook: The Graph API version is now configurable via
`SOCIALACCOUNT_PROVIDERS`.
2014-10-17 Raymond Penners <raymond.penners@intenct.nl>
* A Firefox Accounts provider was added by Jannis Leidel, thanks!
2014-09-15 Raymond Penners <raymond.penners@intenct.nl>
* Josh Owen contributed Coinbase support, thanks!
2014-09-11 Raymond Penners <raymond.penners@intenct.nl>
* Tomas Babej contributed a Slovak translation, thanks!
2014-09-03 Raymond Penners <raymond.penners@intenct.nl>
* Moved existing migrations into `south_migrations`
2014-08-13 Raymond Penners <raymond.penners@intenct.nl>
* "zbryikt" contributed a Taiwanese Chinese translation, thanks!
2014-08-12 Raymond Penners <raymond.penners@intenct.nl>
* Added support for custom password rules via `clean_password`.
* Version 0.18.0 released.
* SECURITY: the Persona provider now requires the `AUDIENCE`
parameter to be explicitly configured, as required by the Persona
specification for security reasons.
2014-08-08 Raymond Penners <raymond.penners@intenct.nl>
* Storing social access tokens is now optional
(`SOCIALACCOUNT_STORE_TOKENS`).
2014-07-26 Raymond Penners <raymond.penners@intenct.nl>
* Removed the inline Javascript from the `fbconnect.html`
template. This allows for a more strict `Content-Security-Policy`
(thanks to Andrean Franc).
2014-07-25 Raymond Penners <raymond.penners@intenct.nl>
* `nimiq` contributed ORCID support, thanks.
2014-07-22 Raymond Penners <raymond.penners@intenct.nl>
* All forms are now pluggable via a new setting:
`(SOCIAL)ACCOUNT_FORMS`.
2014-07-05 Raymond Penners <raymond.penners@intenct.nl>
* James Thompson contributed Windows Live support, thanks!
2014-06-16 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.17.0 released.
2014-06-06 Raymond Penners <raymond.penners@intenct.nl>
* `sourenaraya` contributed Mail.Ru support, thanks.
* account: Justin Michalicek contributed support to control
session life time and age: `ACCOUNT_SESSION_COOKIE_AGE` and
`ACCOUNT_SESSION_REMEMBER`.
2014-05-14 Raymond Penners <raymond.penners@intenct.nl>
* Serafeim Papastefanos contributed an Ukrainian translation,
thanks!
2014-05-09 Raymond Penners <raymond.penners@intenct.nl>
* `kkarwows` contributed AppConfig support, thanks.
2014-04-29 Raymond Penners <raymond.penners@intenct.nl>
* socialaccount: Added Xing provider.
2014-04-24 Raymond Penners <raymond.penners@intenct.nl>
* socialaccount: Marcin Skarbek contributed Hubic support, thanks!
2014-04-11 Raymond Penners <raymond.penners@intenct.nl>
* Volodymyr Yatsyk contributed an Ukrainian translation, thanks!
2014-03-31 Raymond Penners <raymond.penners@intenct.nl>
* `joke2k` contributed an Italian translation, thanks!
2014-03-22 Raymond Penners <raymond.penners@intenct.nl>
* socialaccount: All providers now support the `VERIFIED_EMAIL`
property have e-mail addresses forced to be interpreted as
verified.
2014-03-12 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.16.1 released.
* Facebook login via Javascript was broken if `auth_type` was not
set to `reauthenticate`, fixed.
2014-03-10 Raymond Penners <raymond.penners@intenct.nl>
* Support for hooking up a callback when `FB.init()` is ready
(`allauth.facebook.onInit`)
* Version 0.16.0 released.
* Nariman Gharib contributed a Persian translation, thanks!
2014-02-09 Raymond Penners <raymond.penners@intenct.nl>
* The custom signup form `save` has been deprecated in favour of a
`def signup(request, user)` method.
2014-02-08 Raymond Penners <raymond.penners@intenct.nl>
* Facebook reauthentication now uses an `auth_nonce`.
2014-02-07 Raymond Penners <raymond.penners@intenct.nl>
* Added a new option `ACCOUNT_LOGIN_ON_EMAIL_CONFIRMATION`, to
indicate whether or not e-mail confirmation is to automatically
log in.
2014-02-04 Raymond Penners <raymond.penners@intenct.nl>
* socialaccount: Added Bitbucket provider.
* Jack Shedd contributed Tumblr support, thanks!
* Romanos Tsouroplis contributed Foursquare support, thanks!
2014-01-15 Raymond Penners <raymond.penners@intenct.nl>
* "excessivedemon" contributed Flickr support, thanks!
2013-12-26 Raymond Penners <raymond.penners@intenct.nl>
* Luis Diego García contributed Amazon and Paypal support, thanks!
2013-12-04 Raymond Penners <raymond.penners@intenct.nl>
* Stuart Ross contributed LinkedIn OAuth 2.0 support, thanks!
2013-12-01 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.15.0 released.
* socialaccount: Added `is_auto_signup_allowed` to social account
adapter.
2013-11-27 Raymond Penners <raymond.penners@intenct.nl>
* facebook: Added a new setting: VERIFIED_EMAIL.
* socialaccount: a collision on e-mail address when you sign up
using a third party social account is now more clearly explained:
"An account already exists with this e-mail address. Please sign
in to that account first, then connect your Google account".
2013-11-26 Raymond Penners <raymond.penners@intenct.nl>
* account: You are now automatically logged in after confirming
your e-mail address during sign up.
2013-11-23 Raymond Penners <raymond.penners@intenct.nl>
* account: The `/accounts/login/` view now supports AJAX requests.
* account: Instead of directly rendering and returning a template,
logging in while the account is inactive or not yet confirmed now
redirects to two new views: `/accounts/inactive/` respectively
`/accounts/confirm-email/`.
* account: The `account/verification_sent.html` template no longer
receives the e-mail address in the context (`email`). Note that a
message containing that e-mail address is still emitted using the
messages framework.
* account: The `/accounts/confirm_email/key/` view has been
renamed to `/accounts/confirm-email/` (human
friendlier). Redirects are in place to handle old still pending
confirmations.
2013-11-22 Raymond Penners <raymond.penners@intenct.nl>
* facebook: The fbconnect.js script is now more pluggable.
2013-11-19 Raymond Penners <raymond.penners@intenct.nl>
* socialaccount: Markus Kaiserswerth contributed a Feedly
provider, thanks!
2013-11-18 Raymond Penners <raymond.penners@intenct.nl>
* socialaccount: Dropped django-avatar support.
2013-11-17 Raymond Penners <raymond.penners@intenct.nl>
* openid: First, last and full name are now also queried together
with the e-mail address. Thanks, @andrvb.
* openid: Compatibility fix for Django 1.6 (JSON serializer).
* account: Added support for `ACCOUNT_CONFIRM_EMAIL_ON_GET`.
2013-11-16 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.14.2 released.
* Compatibility fix for logging in with Django 1.6.
2013-11-01 Raymond Penners <raymond.penners@intenct.nl>
* Maksim Rukomoynikov contributed a Russian translation, thanks!
2013-10-28 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.14.1 released (PyPi did not render the README.rst
properly).
* Version 0.14.0 released.
2013-10-19 Raymond Penners <raymond.penners@intenct.nl>
* Stuart Ross contributed AngelList support, thanks!
2013-10-16 Raymond Penners <raymond.penners@intenct.nl>
* LinkedIn: profile fields that are to be fetched are now
configurable (`PROFILE_FIELDS` provider-level setting).
2013-10-13 Raymond Penners <raymond.penners@intenct.nl>
* Udi Oron contributed a Hebrew translation, thanks!
2013-10-09 Raymond Penners <raymond.penners@intenct.nl>
* Add setting `ACCOUNT_DEFAULT_HTTP_PROTOCOL` (HTTPS support).
* George Whewell contributed Instagram support, thanks!
2013-09-09 Raymond Penners <raymond.penners@intenct.nl>
* Refactored adapter methods relating to creating and populating
`User` instances.
2013-09-05 Raymond Penners <raymond.penners@intenct.nl>
* User creation methods in the `Default(Social)AccountAdapter` now
have access to the `request`.
2013-08-31 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.13.0 released.
2013-08-30 Raymond Penners <raymond.penners@intenct.nl>
* Koichi Harakawa contributed a Japanese translation, thanks!
* Added `is_open_for_signup` to DefaultSocialAccountAdapter.
2013-08-29 Raymond Penners <raymond.penners@intenct.nl>
* Added VK provider support.
2013-08-16 Raymond Penners <raymond.penners@intenct.nl>
* Marcin Spoczynski contributed a Polish translation, thanks!
2013-07-23 Raymond Penners <raymond.penners@intenct.nl>
* All views are now class-based.
* The password reset from key success response now redirects to a
"done" view (`/accounts/password/reset/key/done/`). This view has
its own `account/password_reset_from_key_done.html` template. In
previous versions, the success template was intertwined with the
`account/password_reset_from_key.html` template.
2013-07-19 Raymond Penners <raymond.penners@intenct.nl>
* `django.contrib.messages` is now optional.
2013-07-12 Raymond Penners <raymond.penners@intenct.nl>
* "jresins" contributed a simplified Chinese, thanks!
2013-07-01 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.12.0 released.
2013-06-29 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* Roberto Novaes contributed a Brazilian Portuguese translation,
thanks!
2013-06-18 Raymond Penners <raymond.penners@intenct.nl>
* Daniel Eriksson contributed a Swedish translation, thanks!
2013-06-11 Raymond Penners <raymond.penners@intenct.nl>
* You can now logout from both allauth and Facebook via a
Javascript helper: `window.allauth.facebook.logout()`.
2013-06-10 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* Tomas Marcik contributed a Czech translation, thanks!
2013-06-04 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.11.1 released (due to issue in disconnecting social
accounts).
2013-06-02 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.11.0 released.
2013-05-30 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* Bojan Mihelac contributed a Croatian translation, thanks!
2013-05-20 Raymond Penners <raymond.penners@intenct.nl>
* Messages (as in `django.contrib.messages`) are now configurable
through templates.
2013-04-25 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* Version 0.10.1 released.
* Cleaning of `username` can now be overriden via
`DefaultAccountAdapter.clean_username`
2013-04-16 Raymond Penners <raymond.penners@intenct.nl>
* Fixed potential error (`assert`) when connecting social
accounts.
2013-04-13 Raymond Penners <raymond.penners@intenct.nl>
* Added support for custom username handling in case of custom
user models (`ACCOUNT_USER_MODEL_USERNAME_FIELD`).
2013-04-12 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.10.0 released.
2013-04-08 Raymond Penners <raymond.penners@intenct.nl>
* Chris Davis contributed Vimeo support, thanks!
2013-04-03 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* Python 3 is now supported!
2013-03-28 Raymond Penners <raymond.penners@intenct.nl>
* Dropped dependency on (unmaintained?) oauth2 package, in favor
of requests-oauthlib.
2013-03-13 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* Robert Balfre contributed Dropbox support, thanks!
2013-02-19 Raymond Penners <raymond.penners@intenct.nl>
* socialaccount: Added support for Weibo.
2013-02-15 Raymond Penners <raymond.penners@intenct.nl>
* account: Added support for sending HTML e-mail. Add
"*_message.html" templates and they will be automatically picked
up.
2013-02-13 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* Added support for passing along extra parameters to the
`FB.login` API call.
2013-01-30 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.9.0 released.
2013-01-29 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* Ahmet Emre Aladağ contributed a Turkish translation, thanks!
* socialaccount: Added SocialAccountAdapter hook to allow for
intervention in social logins.
2013-01-07 Raymond Penners <raymond.penners@intenct.nl>
* google: support for Google's `verified_email` flag to determine
whether or not to send confirmation e-mails.
2012-12-26 Raymond Penners <raymond.penners@intenct.nl>
* Fábio Santos contributed a Portugese translation, thanks!
2012-12-22 Raymond Penners <raymond.penners@intenct.nl>
* socialaccount: Added support for Stack Exchange.
2012-12-14 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* Version 0.8.3 released.
2012-11-27 Raymond Penners <raymond.penners@intenct.nl>
* Markus Thielen contributed a German translation, thanks!
2012-11-26 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* account: Added option to completely disable e-mail verification
during signup.
2012-10-10 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* account: Aldiantoro Nugroho contributed support for a new
setting: ACCOUNT_USERNAME_MIN_LENGTH
2012-09-29 Raymond Penners <raymond.penners@intenct.nl>
* socialaccount: Added preliminary support for Mozilla Persona.
2012-09-28 Raymond Penners <raymond.penners@intenct.nl>
* account: Sam Solomon added various signals for email and
password related changes.
2012-09-08 Raymond Penners <raymond.penners@intenct.nl>
* account: Usernames may now contain @, +, . and - characters.
2012-09-03 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.8.1 released.
* Python 2.6.2 compatibility issue, fixed.
* The example project was unintentionally packaged, fixed.
2012-09-01 Raymond Penners <raymond.penners@intenct.nl>
* Version 0.8.0 released.
2012-08-29 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* account/socialaccount: Dropped the _tags postfix from the
template tag libraries. Simply use {% load account %} and {% load
socialaccount %}.
2012-08-21 Raymond Penners <raymond.penners@intenct.nl>
* Added signup and social login signals.
2012-08-17 Raymond Penners <raymond.penners@intenct.nl>
* SoundCloud: Rabi Alam contributed a SoundCloud provider, thanks!
2012-08-16 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* Version 0.7.0 released.
2012-07-06 Raymond Penners <raymond.penners@intenct.nl>
* Facebook: Facundo Gaich contributed support for dynamically
deriving the Facebook locale from the Django locale, thanks!.
2012-06-27 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* socialaccount: Added support for Google OAuth2 and Facebook
OAuth2. Fixed GitHub.
2012-06-22 Raymond Penners <raymond.penners@intenct.nl>
* account: Added verified_email_required decorator.
2012-06-20 Raymond Penners <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* 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 <raymond.penners@intenct.nl>
* allauth, socialaccount: Removed the last remaining bits of
hardcodedness with respect to the enabled social authentication
providers.
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).