forked from omab/django-social-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1651 lines (1199 loc) · 64.4 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
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ChangeLog
=========
0.7.20 / 2013-02-12
-------------------
* Convert access_token into a Token instance on OAuth backends
0.7.19 / 2013-02-08
-------------------
* Add option to use email address as username. Closes #597
* Updating Google OpenID, OAuth and OAuth2 documentation links.
* remove unnecessary South documentation, fix typos
* Fix rst indention
* Add description of ``SOCIAL_AUTH_FIELDS_STORED_IN_SESSION``
* Use named kwargs to access arguments in user_data. Closes #587
* Added stackoverflow backend
* - Support for custom user model (django 1.5)
* Add saving extra data from POST or GET to session
* Added zip_safe option to setup.py
* Add tests to setup.py
* Update models section with fields lengths settings in south migrations. Refs #579
* Use fields lenght settings in south migrations. Closes #579
* Updated changelog. Closes #580
* Remove repeated v1 in readability path.
0.7.18 / 2013-01-15
-------------------
* Check for social_auth.backends.oauth2 before using it. Closes #574
* Merge pull request #577 from Troytft/patch-1
* Update social_auth/urls.py
* Update social_auth/urls.py
* Add migrations to setup.py conf. Refs #410
* South migrations for recent indexes/constraints. Closes #410
* Run slugify only if enabled by setting. Refs #569
* Merge pull request #569 from appel268576/master
* PEP8
* Merge pull request #571 from kjoconnor/readability
* Merge pull request #572 from fmarier/new_browserid_urls
* Update BrowserID/Persona URLs
* Fixing
* Adding comments
* Fixing variable name
* Fixing tokens
* Overriding tokens method ala Twitter
* PEP8/pyflakes fixes
* added slugify to ensure that users from Linkedin / Facebook have clean usernames
* fullname isn't working
* fullname isn't working
* DSA expects it as fullname
* Adding docs
* Adding email_into_address to extra_data
* Adding myself
* Adding to backends index
* Adding to example
* Adding to example
* Updating docs
* Adding to docs
* Merge remote-tracking branch 'upstream/master' into readability
* Missing an argument, fixing extra_data
* Readability also returns email_into_address
* Tweak association and nonce models fields lengths. Refs #539
* Should be an else there
* auth_complete?
* Hrmm
* Merge branch 'master' of git://github.com/omab/django-social-auth into readability
* PEP8
* Fix loop
* Clear docs about pipeline return values
* Add extra arguments to create_user. Closes #565
* Get auth extra arguments from setting too
0.7.17 / 2013-01-05
-------------------
* Add management commands to setup.py conf. Closes #564
* Avoid AttributeError on backend_setting call. Closes #561
0.7.16 / 2013-01-04
-------------------
* Merge branch 'master' of github.com:omab/django-social-auth
0.7.15 / 2013-01-04
-------------------
* Merge pull request #558 from krvss/master
* Merge pull request #559 from theJohnnyBrown/linkedin-docs-example
* add some more info to the linkedin backend docs
* Simple example of authentication using popups.
* Merge pull request #556 from ashchristopher/master
* Merge remote-tracking branch 'upstream/master'
* Added support for constraining authentication to a GitHub organization.
0.7.14 / 2012-12-28
-------------------
* Merge branch 'master' of github.com:omab/django-social-auth
* Add user to kwargs only if not None (avoid overwriting saved value with None)
* Filter associations QS by user
* Merge pull request #555 from juanpex/patch-1
* Update doc/configuration.rst
0.7.13 / 2012-12-24
-------------------
* Merge pull request #554 from sheppard/master
* Merge branch 'master' of github.com:omab/django-social-auth
* Merge branch 'master' of github.com:omab/django-social-auth
* Clean Nonces and Associations commands. Refs #410
* Merge pull request #549 from gfronza/master
* Merge pull request #551 from sbshetty01/master
* Merge pull request #552 from fmr/fix/instagram_missing_fullname
* Adding readability
* Use correct key to retrieve full name
* Added missing removeAssociation method
* Deal with IntegrityError when signing up a django 1.5 custom model user
0.7.12 / 2012-12-16
-------------------
* Merge branch 'master' of github.com:omab/django-social-auth
0.7.11 / 2012-12-16
-------------------
* Merge pull request #548 from alexey-sveshnikov/patch-1
* Update doc/backends/vkontakte.rst
* Enable state support for Stripe backend. Closes #547
* allowed_to_disconnect should only consider socialauths for the specified user
* Protect disconnect with CSRF (disabled by default). Closes #160
* Merge branch 'master' of github.com:omab/django-social-auth
* Check for next in request.REQUEST for those cases that POST directly to /complete/foobar/ view. Closes #455
* Merge pull request #546 from seansay/douban_refresh_token
* added refresh_token extra_data to douban oauth 2 support
* Merge branch 'token_refresh'
* OAuth2 token refresh support. Closes #492
* Merge pull request #545 from martey/readme-fixes
* Fix Google Groups link.
* Fix spelling error.
* Soundcloud docs and PEP8. Refs #544
* Behance docs. Refs #543
* Merge pull request #543 from estebistec/behance
* Merge pull request #544 from bluszcz/master
* Adds support for SoundCloud
* Add behance authentication backend
* Support unicode characters when cleaning username. Closes #540
* Add setting to make uid field length configurable. Refs #539
* Pass next parameter if the user is not redirected to next
* PEP8
* Merge pull request #537 from 9688/master
* Merge pull request #535 from NorthIsUp/disqusauth
* Merge pull request #538 from Morgul/master
* Removed incorrect use of the assertion expiration as the session expiration.
* Merge branch 'master' of https://github.com/9688/django-social-auth
* Merge branch 'master' of https://github.com/9688/django-social-auth
* Merge branch 'master' of https://github.com/9688/django-social-auth
* Authorization of applications of Facebook Canvas. The FACEBOOK_APP_AUTH setup, if truth then Canvas authorization is added. The FACEBOOK_APP_NAMESPACE setup is added - sets the application name if that isn't specified FACEBOOK_APP_ID is used. For authorization url http://<my host>/complete/facebook/
* removed public key from request as it is not needed
* added disqus.rst
* Authorization of applications of Facebook Canvas. The FACEBOOK_APP_AUTH setup, if truth then Canvas authorization is added. The FACEBOOK_APP_NAMESPACE setup is added - sets the application name if that isn't specified FACEBOOK_APP_ID is used. For authorization url http://<my host>/complete/facebook/
* added disqus
* Fix evernote exceptions import. Closes #531
* Restore UUID length setting. Closes #532
* Mention mailing list and IRC channel on README.rst
* Mention how server datetime might cause errors on some backends. Refs #522
* Restore login url path
* Remove html valid badges
* Updated example app to django 1.4
* Ignore fabfile.py
0.7.10 / 2012-11-14
-------------------
* PEP8
* Merge pull request #529 from sbshetty01/master
* #500 #507 #524 #224 Fixed create_user and disconnect for mongoengine
* Merge pull request #528 from barracel/master
* Fix do_auth() call passing extra parameters. Refs #525
* Removed the use of 'or' because it made impossible the use of reverse_lazy in SOCIAL_AUTH_LOGIN_REDIRECT_URL setting
* Link missing backends doc
* Merge branch 'master' of git://github.com/henward0/django-social-auth into henward0
* Added angel.rst to backend/docs
* Restore file ending line
* Merge pull request #527 from bradbeattie/master
* Extending error messages
* PEP8 on angel backend
* Merge branch 'master' of github.com:omab/django-social-auth
* Refactor exception handling/processing. Deprecate exception processors setting in favor of middleware.
* Merge pull request #526 from henward0/master
* Added Angel List support to contrib
* Override create_user() and mimic mongoengine functionality. Refs #524
* Fix create_user call on mongoengine. Closes #524
* Ensure state parameter definion (if required). Closes #483
* Multiple unathorized tokens supported. Closes #521
* Merge pull request #519 from dgouldin/master
0.7.9 / 2012-11-11
-------------------
* Adding TripIt backend.
* Link fix
* Stripe backend
* Remove ununsed attribute
* Split auth url and complete process in smaller methods
* Fix exception instances. Refs #518
* Small doc about register-by-access-token feature
* Separate auth process to single method on OAuth
* Small code cleanup on mailru backend
* PEP8. Refs #517
* Merged StockTwits OAuth backend. Closes #517
* Xing backend. Closes #506
* Ignore local settings file
* Make scope available for OAuth1 and OAuth2 backends
* VK backend doc update to reflect settings names. Closes #493
* Disconnect only valid users. Closes #224
* Fixes to keep python2.5 support. Closes #481
* Clean username using default regex from django/mongoengine. Closes #484
* Use case update. Closes #505
* Simplify and apply PEP8 on yammer backends. Refs #514
* Merge pull request #514 from mrmch/master
* Merge pull request #511 from dhendo/master
* Merge pull request #512 from pygeek/patch-1
* Avoid evaluating user if create_user was omitted. Refs #513
* Flag inactive user support
* Update social_auth/backends/pipeline/social.py
* Merged upstream
* Cache openid request instance. Refs #509
* Properly default to None on mongoengine, leave email for django backend (django 1.3 requires email on creating a user). Refs #500, #507
* Removed dummy email, default email to blank
* Simpler user model definition and save only valid fields. Closes #510
* Fix shopify import
0.7.8 / 2012-11-01
-------------------
* Merge pull request #508 from scheeser/master
* Add support for setting additional PAPE settings on the OpenID request.
* Ensure the session is set-up no matter which order the calls come in. Return a temporary email address for the user, or no account will be created.
* PEP8 and small cleanup on Shopify backend. Refs #503
* Merge pull request #503 from dhendo/master
* Added shopify support
* updated yammer staging to use _STAGING_ settings
* Merge pull request #502 from tadeo/master
* Update doc/configuration.rst
* Update doc/backends/oauth.rst
* Don't pass email if not defined. Closes #500
* yammer staging
* Small code cleanup and PEP8 on dailymotion backend
* adding yammer staging
* still trying to get shit tow ork
* trying to pull mugshot_url
* latest bug fix
* Merge pull request #499 from amirouche/dailymotion
* using a copy of data now
* added a backend for dailymotion
* working auth and pulling basic user data
* updated auth url for yammer
* updates
* updated yammer oauth, time to test
* adding yammer oauth
* Merge branch 'master' of github.com:omab/django-social-auth
* Catch token-revoke error in vkontakte backend. Closes #494
* Merge pull request #491 from vicalloy/master
* bug fix:social_auth/middleware.py if message is unicode will get a error
* fix weibo backend: if no name in userinfo will get a error
0.7.7 / 2012-10-11
-------------------
* Merge branch 'master' of github.com:omab/django-social-auth
* Update twitter credentials api path. Closes #485
* Docstring
* Merge branch 'master' of github.com:krvss/django-social-auth
* Merge pull request #477 from rda-dev/master
* Yandex raise "400 error: redirect_uri_mismatch" when redirect_state appending to redirect_uri
* Merge pull request #475 from garrypolley/master
* SocialAuthBackend only authenticates, not need to inherit from ModelBackend
* Merge pull request #472 from vicalloy/master
* add username to EXTRA_DATA for douban and weibo backends
* Use set over LinkedIn scopes to avoid error. Closes #471
0.7.6 / 2012-09-24
-------------------
* Code simplifications and doc about OpenID PAPE extension usage. Refs #469
* Merge pull request #469 from maxgrosse/master
* Merge pull request #468 from vicalloy/master
* OpenID.PAPE.max_auth_age configurable from settings
* OpenID: Using PAPE extension with max_auth_age=0
* modified: backends/contrib/douban.py old douban api is not standard OAuth2.0 I added some special processing for douban. It seems that douban has fix it. I removed related code.
* Merge pull request #463 from CodeTag/master
* Merge pull request #464 from mrmch/master
* changed associate_complete to check redirect_value first before backend_setting
* Fixes documentation grammar error
* Merge pull request #9 from adw0rd/master
* Return a list of nicknames instead one nickname in backends.contrib.VKontakteBackend [https://github.com/adw0rd/django-social-auth/issues/1] Fixed
* Doc and endline formats
* Merge pull request #460 from seansay/master
* update docs for douban support
* PEP8 and endline format
* Merge pull request #459 from vicalloy/master
- fix bug for weibo
- bug fix
- add OAuth2.0 for douban
* PEP8 and doc stylings. Refs #456
* Merge pull request #456 from jammons/master
* Merge pull request #453 from stefanw/extra-args-per-request
* Use self.data instead of self.request.GET to access parameters
* Adding new scope parameter to LinkedIn library.
* Override \*_AUTH_EXTRA_ARGUMENTS with GET request parameters
* Merge pull request #451 from betonimig/master
* Update social_auth/backends/__init__.py
* Merge pull request #449 from krvss/master
* VKontakte IFrame application authentication
0.7.5 / 2012-08-22
------------------
* Make the pipeline raise import and not-callable errors. Refs #376
* Merge branch 'master' of github.com:omab/django-social-auth
* Update docs droping deprecated setting and explanation of security risk for associate_by_email. Refs #289
* Merge pull request #443 from droptype/master
* Merge pull request #444 from droptype/minor-docs-cleanup
* Minor docs cleanup
* Allow exception processors to redirect to arbitrary URLs
0.7.2 / 2012-07-28
------------------
* Merge branch 'timeouts'. Closes #420
* Merge pull request #421 from estebistec/master
* Add missing User class attribute to mongoengine's UserSocialAuth
* Doc about getdefaulttimeout()/setdefaulttimeout() and timeout parameter
* urllib2.urlopen timeout from settings. Refs #420
* Merge pull request #419 from krvss/master
* Fixing of VKontate OpenAPI authentication
* Merge pull request #418 from ozexpert/patch-1
* Update social_auth/db/mongoengine_models.py
* Merge pull request #413 from stephenLee/patch-1
* Update social_auth/backends/contrib/weibo.py
* Weibo docs and PEP8. Refs #411
* Merge pull request #411 from hepochen/master
* add small doc for contrib/weibo.py
* add a backend for weibo.com
* Support django 1.4 emtpy value in LazyDict. Closes #409
* Validate that current backend matches partial pipeline data. Closes #408
* Better parameter name
2012-06-16 Kulbir <ksinghsandhu@gmail.com>
* doc/backends/twilio.md, social_auth/backends/contrib/twilio.py: added
twilio backend
2012-06-12 Matías Aguirre <matiasaguirre@gmail.com>
* example/app/pipeline.py, example/app/views.py, example/settings.py,
example/templates/form2.html, example/urls.py: Example for multiple partial
pipeline usage. Closes #369
* social_auth/backends/__init__.py, social_auth/backends/pipeline/misc.py:
Allow multiple pipeline breaks. Refs #369
2012-06-07 Sean Lee <iseansay@gmail.com>
* doc/backends/douban.rst, doc/backends/index.rst,
example/local_settings.py.template, example/settings.py: added docs & setting
example for douban support
2012-06-04 Hassek <nullwriter@gmail.com>
* doc/backends/evernote.rst, social_auth/backends/contrib/evernote.py:
updated docs and better exception handling when a user declines the Auth
connection
2012-05-28 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/backends/instagram.rst: Add instagram scope doc to avoid
confusions. Refs #345
2012-05-15 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/configuration.rst: Mention SOCIAL_AUTH_LAST_LOGIN setting.
Refs #348
2012-05-15 Cihan Okyay <okyaycihan@gmail.com>
* social_auth/locale/tr/LC_MESSAGES/django.mo,
social_auth/locale/tr/LC_MESSAGES/django.po: turkish locale
2012-05-09 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/__init__.py, social_auth/backends/contrib/evernote.py,
social_auth/backends/contrib/live.py, social_auth/backends/contrib/mailru.py,
social_auth/backends/contrib/odnoklassniki.py,
social_auth/backends/contrib/vkontakte.py,
social_auth/backends/contrib/yahoo.py,
social_auth/backends/contrib/yandex.py, social_auth/backends/exceptions.py,
social_auth/backends/facebook.py: PEP8
2012-05-09 Stas Kravets <krvss@mail.ru>
* doc/backends/facebook.rst, social_auth/backends/contrib/mailru.py,
social_auth/backends/contrib/odnoklassniki.py,
social_auth/backends/contrib/vkontakte.py,
social_auth/backends/contrib/yandex.py: Logging update to use log function
from utils, Facebook documentation update for merge
* README.rst, example/local_settings.py.template,
example/templates/done.html, setup.py: Preparing for merge with main branch -
more clean-ups and documents update
* README.rst, doc/backends/google.rst, doc/backends/vkontakte.rst,
doc/configuration.rst, example/app/views.py, requirements.txt, setup.py,
social_auth/views.py: Preparing for merge with main branch - cleaning up old
merge differences
2012-05-07 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/__init__.py, social_auth/backends/google.py,
social_auth/backends/utils.py: Move oauth request for consumer-based-oauth to
snippet in utils. Refs #338
* README.rst, doc/backends/evernote.rst, doc/backends/index.rst,
doc/contributions.rst, social_auth/backends/contrib/evernote.py: Small code
styles changes and docs about evernote backend. Refs #341
2012-05-07 Stas Kravets <krvss@mail.ru>
* example/local_settings.py.template, example/settings.py,
social_auth/backends/contrib/vkontakte.py,
social_auth/backends/contrib/yandex.py: Merging of vkontakte and yandex
backends with bacher09 versions. Preparations for merge with omab master.
2012-05-04 Stas Kravets <krvss@mail.ru>
* social_auth/backends/contrib/mailru.py,
social_auth/backends/contrib/odnoklassniki.py,
social_auth/backends/contrib/vkontakte.py: Minor optimization and fixes
2012-05-03 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/contrib/github.py,
social_auth/backends/contrib/yandex.py, social_auth/backends/facebook.py:
Clean empty spaces
* social_auth/backends/__init__.py, social_auth/backends/contrib/live.py,
social_auth/backends/google.py: Simplify get_scope() code. Apply scope vars
changes to live backend. Refs #340
2012-05-04 Slava Bacherikov <slava@bacher09.org>
* social_auth/backends/__init__.py, social_auth/backends/contrib/github.py,
social_auth/backends/contrib/vkontakte.py, social_auth/backends/facebook.py,
social_auth/backends/google.py: Change get_scope method in BaseOAuth2 class.
2012-05-03 Slava Bacherikov <slava@bacher09.org>
* README.rst, social_auth/backends/contrib/vkontakte.py: Change in
VK_EXTRA_DATA
2012-05-02 Hassek <nullwriter@gmail.com>
* .gitignore, social_auth/backends/contrib/evernote.py: first attempt to
support evernote
2012-05-03 Andrew Korzhuev <wolfon@gmail.com>
* social_auth/backends/contrib/live.py,
social_auth/backends/contrib/yahoo.py: Throw exceptions if data-retrieval
fails. Better comments
2012-05-02 Andrew Korzhuev <wolfon@gmail.com>
* README.rst, doc/backends/index.rst, doc/backends/yahoo.rst,
doc/configuration.rst, doc/contributions.rst, doc/intro.rst: Yahoo OAuth docs
2012-04-27 niQo <niqo AT nospam>
* doc/backends/skyrock.rst, example/local_settings.py.template,
example/settings.py: Tests for Skyrock provider
* README.rst, doc/configuration.rst, doc/intro.rst: documentation update for
Skyrock provider
2012-04-27 Andrew Korzhuev <wolfon@gmail.com>
* README.rst, doc/backends/live.rst, doc/configuration.rst, doc/intro.rst:
MSN Live Connect README files
2012-04-26 slon7 <ilya.suslonov@mail.ru>
* README.rst, social_auth/backends/contrib/vkontakte.py: Added VK_EXTRA_DATA
to pass extra fields when gathering the user profile data
2012-04-23 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/pipeline.rst: Fix example pipeline doc.
* README.rst, doc/backends/flickr.rst: Update flickr doc mentioning
permissions error case.
2012-04-18 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/deprecated.rst, example/templates/done.html,
social_auth/decorators.py, social_auth/urls.py, social_auth/views.py:
Deprecate /associate/ URLs in favor of /login/ and /complete/ with
user.is_authenticated() check. Closes #319
2012-04-17 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/__init__.py, social_auth/backends/contrib/github.py:
Code cleanup, move methods to superclass
* README.rst, doc/miscellaneous.rst: Typo
2012-04-17 Slava Bacherikov <slava@bacher09.org>
* example/settings.py, social_auth/backends/contrib/yandex.py: Add yandex.
2012-04-16 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/backends/bitbucket.rst, doc/backends/dropbox.rst,
doc/backends/flickr.rst, doc/backends/index.rst: Added sphinx doc for missing
backends.
* social_auth/backends/contrib/bitbucket.py,
social_auth/backends/contrib/flickr.py: PEP8 applied to bitbucket backend.
Refs #317
2012-04-16 Thomas Whitton <oracal@oracal-EP45-UD3LR.(none)>
* README.rst, social_auth/backends/contrib/bitbucket.py: Added Bitbucket
backend
2012-04-15 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/configuration.rst, social_auth/backends/__init__.py: Force
https:// in redirect URIs if setting is defined. Closes #281
* README.rst, doc/miscellaneous.rst: Update misc section. Refs #315
2012-04-15 Slava Bacherikov <slava@bacher09.org>
* example/settings.py, social_auth/backends/__init__.py,
social_auth/backends/contrib/github.py: Rewrited Github auth backend to new
api.
* doc/backends/vkontakte.rst, doc/intro.rst: Add more info about vkontakte.
* doc/backends/index.rst, doc/configuration.rst: Update docs, add info about
vkontakte.
2012-04-13 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/__init__.py, social_auth/backends/contrib/dropbox.py,
social_auth/backends/contrib/fitbit.py,
social_auth/backends/contrib/flickr.py,
social_auth/backends/contrib/foursquare.py,
social_auth/backends/contrib/github.py,
social_auth/backends/contrib/instagram.py,
social_auth/backends/contrib/linkedin.py,
social_auth/backends/contrib/orkut.py,
social_auth/backends/contrib/vkontakte.py, social_auth/backends/facebook.py,
social_auth/backends/google.py, social_auth/backends/twitter.py: Flexible
arguments on user_data() method. Refs #313.
2012-04-13 Slava Bacherikov <slava@bacher09.org>
* example/local_settings.py.template, example/settings.py,
social_auth/backends/contrib/vkontakte.py: Add support Vkontakte.
2012-04-09 Andrii Kostenko <andrey@kostenko.name>
* social_auth/tests/base.py, social_auth/tests/facebook.py,
social_auth/tests/google.py, social_auth/tests/twitter.py: fixed tests:
default pipelines, fixed twitter&facebook, respect for
SOCIAL_AUTH_ENABLED_BACKEND in google test
2012-04-08 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/configuration.rst: Change default value in doc to reflect
code
* README.rst, doc/backends/facebook.rst, doc/configuration.rst: Drop
meaningless text
2012-03-29 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/backends/oauth.rst, doc/backends/openid.rst,
social_auth/backends/__init__.py, social_auth/backends/google.py: Avoid
refresh_token overwrite on further logins. Closes #299
* README.rst, doc/backends/facebook.rst, social_auth/backends/facebook.py:
Define setting to pass extra arguments to facebook.com/me. Closes #301
2012-03-14 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/index.rst, doc/tokens.rst,
social_auth/backends/__init__.py, social_auth/backends/twitter.py,
social_auth/models.py: Add tokens property to easilly access tokens per
backend. Closes #290
2012-03-01 Matías Aguirre <matiasaguirre@gmail.com>
* contrib/tests/runtests.py, contrib/tests/test_core.py, doc/conf.py,
example/app/models.py, example/app/pipeline.py, example/app/views.py,
example/manage.py, setup.py, social_auth/backends/__init__.py,
social_auth/backends/contrib/fitbit.py,
social_auth/backends/contrib/foursquare.py,
social_auth/backends/contrib/gae.py, social_auth/backends/contrib/github.py,
social_auth/backends/contrib/instagram.py, social_auth/backends/facebook.py,
social_auth/backends/google.py, social_auth/context_processors.py,
social_auth/signals.py, social_auth/store.py, social_auth/tests/facebook.py,
social_auth/tests/google.py, social_auth/utils.py, social_auth/views.py: PEP8
* README.rst, doc/configuration.rst, doc/miscellaneous.rst, doc/testing.rst,
social_auth/backends/__init__.py, social_auth/backends/browserid.py,
social_auth/backends/contrib/gae.py, social_auth/backends/contrib/github.py,
social_auth/backends/contrib/livejournal.py,
social_auth/backends/exceptions.py, social_auth/backends/facebook.py,
social_auth/backends/google.py, social_auth/backends/pipeline/associate.py,
social_auth/backends/pipeline/social.py, social_auth/backends/twitter.py,
social_auth/utils.py, social_auth/views.py: Differentiate exceptions raised.
Closes #119. Refs #175
2012-02-29 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/configuration.rst: Remove deprecated setting from docs.
Refs #175.
2012-02-26 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/__init__.py, social_auth/utils.py,
social_auth/views.py: Clean partial pipeline before auth process begins. Refs
#271
* social_auth/backends/__init__.py, social_auth/backends/pipeline/misc.py,
social_auth/views.py: Clean partial pipeline on Stop exception. Closes #271
2012-02-24 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/contrib/gae.py, social_auth/backends/gae.py: Move
GoogleAppEngine backend to contrib and apply pep8. Refs #258.
2012-02-23 tschmidt <tschmidt@sacfoodcoop.com>
* doc/backends/google.rst, social_auth/backends/google.py: added
GOOGLE_WHITE_LISTED_EMAILS setting and updated docs
2012-02-23 Andrii Kostenko <andrey@kostenko.name>
* social_auth/tests/base.py, social_auth/tests/twitter.py: fixed twitter
tests
2012-02-22 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/configuration.rst, social_auth/views.py: Inicial per
backend settings, just URLs so far.
* social_auth/utils.py, social_auth/views.py: Per backend-settings option.
2012-02-21 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/miscellaneous.rst: Google group. Closes #263
2012-02-20 tschmidt <tschmidt@sacfoodcoop.com>
* doc/backends/google.rst, social_auth/backends/google.py: added
GOOGLE_WHITE_LISTED_DOMAINS setting to Google OAuth, updated documentation
2012-02-19 Andrii Kostenko <andrey@kostenko.name>
* social_auth/locale/ru/LC_MESSAGES/django.mo,
social_auth/locale/ru/LC_MESSAGES/django.po: changed "authentication" to
"authorization"
2012-02-17 Andrii Kostenko <andrey@kostenko.name>
* social_auth/backends/__init__.py, social_auth/backends/exceptions.py,
social_auth/backends/pipeline/social.py,
social_auth/locale/ru/LC_MESSAGES/django.mo,
social_auth/locale/ru/LC_MESSAGES/django.po, social_auth/tests/facebook.py,
social_auth/utils.py, social_auth/views.py: Account already in use exception
Moved exception class to exceptions.py module
2012-02-16 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/browserid.py, social_auth/backends/contrib/github.py,
social_auth/backends/facebook.py: Add missing 'auth' arguments before
authenticate. Refs #255
* README.rst, doc/configuration.rst: Remove old doc
2012-02-16 Andrii Kostenko <andrey@kostenko.name>
* setup.py, social_auth/backends/__init__.py,
social_auth/locale/ru/LC_MESSAGES/django.mo,
social_auth/locale/ru/LC_MESSAGES/django.po, social_auth/utils.py,
social_auth/views.py: User-friendly errors, russian translation
2012-02-16 Stas Kravets <krvss@mail.ru>
* .gitignore, README.rst, doc/backends/browserid.rst,
doc/backends/github.rst, doc/backends/google.rst, doc/backends/index.rst,
doc/backends/instagram.rst, doc/configuration.rst, doc/deprecated.rst,
doc/index.rst, doc/intro.rst, doc/miscellaneous.rst, doc/pipeline.rst,
doc/use_cases.rst, example/app/pipeline.py, example/app/views.py,
example/local_settings.py.template, example/settings.py,
example/templates/base.html, example/templates/done.html,
example/templates/form.html, example/templates/home.html, example/urls.py,
social_auth/__init__.py, social_auth/backends/__init__.py,
social_auth/backends/browserid.py, social_auth/backends/contrib/dropbox.py,
social_auth/backends/contrib/flickr.py,
social_auth/backends/contrib/foursquare.py,
social_auth/backends/contrib/github.py,
social_auth/backends/contrib/instagram.py,
social_auth/backends/contrib/linkedin.py,
social_auth/backends/contrib/livejournal.py,
social_auth/backends/contrib/orkut.py, social_auth/backends/facebook.py,
social_auth/backends/google.py, social_auth/backends/pipeline/__init__.py,
social_auth/backends/pipeline/associate.py,
social_auth/backends/pipeline/misc.py,
social_auth/backends/pipeline/social.py,
social_auth/backends/pipeline/user.py, social_auth/backends/twitter.py,
social_auth/backends/yahoo.py, social_auth/context_processors.py,
social_auth/models.py, social_auth/tests/__init__.py,
social_auth/tests/facebook.py, social_auth/tests/google.py,
social_auth/tests/twitter.py, social_auth/urls.py, social_auth/utils.py,
social_auth/views.py: Merging latest changes from omab
2012-02-15 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/__init__.py, social_auth/utils.py: Save model
instances into session in a easy format to retrieve it later. Refs #251
2012-02-14 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/__init__.py, social_auth/backends/pipeline/misc.py,
social_auth/views.py: Improve and fix partial pipeline arguments management.
Closes #251
* README.rst, doc/pipeline.rst: Styling
* README.rst, doc/configuration.rst, social_auth/views.py: Raise exceptions
setting. Closes #248.
2012-02-13 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/pipeline.rst: Doc fix
2012-02-12 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/backends/index.rst, doc/backends/instagram.rst,
social_auth/backends/contrib/instagram.py: Instagram doc and small code
styling. Refs #247
2012-02-12 Ravi Kotecha <kotecha.ravi@gmail.com>
* .gitignore, README.rst, example/settings.py,
social_auth/backends/contrib/instagram.py: Add Instagram support
2012-02-11 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/backends/browserid.rst, doc/configuration.rst,
doc/miscellaneous.rst, doc/use_cases.rst, example/settings.py,
example/templates/base.html, example/templates/done.html,
example/templates/home.html, social_auth/backends/__init__.py,
social_auth/backends/browserid.py: BrowserID support. Closes #228
2012-02-09 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/index.rst, doc/use_cases.rst: Use cases doc section. Closes
#239
* README.rst, doc/configuration.rst: More ReST fixes
* README.rst, doc/configuration.rst: ReST fixes
* README.rst, doc/configuration.rst, social_auth/context_processors.py,
social_auth/utils.py: Context processor improvements on code and doc. Closes
#245
* social_auth/backends/__init__.py,
social_auth/backends/contrib/foursquare.py,
social_auth/backends/contrib/github.py,
social_auth/backends/contrib/linkedin.py,
social_auth/backends/contrib/livejournal.py,
social_auth/backends/contrib/orkut.py, social_auth/backends/facebook.py,
social_auth/backends/google.py, social_auth/backends/twitter.py,
social_auth/backends/yahoo.py, social_auth/utils.py, social_auth/views.py:
Improve logging. Closes #244
2012-02-07 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/backends/github.rst: Small clarification about github conf.
Refs #241
2012-02-06 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/configuration.rst, social_auth/backends/__init__.py: Extra
arguments for request-token process. Closes #235
* README.rst, doc/pipeline.rst: Line number
* README.rst, doc/pipeline.rst, example/app/pipeline.py,
example/app/views.py, example/local_settings.py.template,
example/templates/form.html, example/urls.py,
social_auth/backends/__init__.py, social_auth/backends/google.py,
social_auth/backends/pipeline/__init__.py,
social_auth/backends/pipeline/misc.py, social_auth/urls.py,
social_auth/views.py: Partial pipeline. Refs #90
2012-02-05 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/deprecated.rst, doc/index.rst, doc/pipeline.rst: Deprecated
settings doc
* README.rst, doc/index.rst, doc/intro.rst, doc/pipeline.rst,
social_auth/backends/__init__.py: Pipeline doc
2012-02-04 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/__init__.py, social_auth/backends/contrib/dropbox.py,
social_auth/backends/contrib/flickr.py,
social_auth/backends/contrib/github.py,
social_auth/backends/contrib/linkedin.py,
social_auth/backends/contrib/orkut.py, social_auth/backends/facebook.py,
social_auth/backends/google.py, social_auth/backends/pipeline/associate.py,
social_auth/backends/pipeline/social.py,
social_auth/backends/pipeline/user.py, social_auth/models.py,
social_auth/tests/__init__.py, social_auth/tests/facebook.py,
social_auth/tests/google.py, social_auth/tests/twitter.py,
social_auth/views.py: Improve settings values gathering
2012-01-20 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/configuration.rst: Doc about django auth backend. Refs #154
2012-01-20 Alexander Todorov <atodorov@otb.bg>
* Makefile, django-social-auth.spec: add .spec file and Makefile to build RPM
package
2012-01-20 yekibud <tony@yekibud.com>
* doc/backends/google.rst, social_auth/backends/google.py: added GOOGLE_
prefix to WHITE_LISTED_DOMAINS setting
2012-01-17 tschmidt <tschmidt@sacfoodcoop.com>
* doc/backends/google.rst, social_auth/backends/google.py: changed Google
OpenID WHITE_LISTED_DOMAINS setting to only check strings and added
documentation
2012-01-04 Stas Kravets <krvss@mail.ru>
* example/local_settings.py.template, example/settings.py,
social_auth/backends/contrib/yandex.py: Yandex OAuth2 support for Ya.ru and
Moi Krug added
2011-12-30 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/__init__.py, social_auth/backends/contrib/dropbox.py,
social_auth/backends/contrib/flickr.py,
social_auth/backends/contrib/foursquare.py,
social_auth/backends/contrib/github.py,
social_auth/backends/contrib/livejournal.py,
social_auth/backends/contrib/orkut.py,
social_auth/backends/pipeline/social.py,
social_auth/backends/pipeline/user.py: Small PEP8 fixes and import orders
* social_auth/backends/__init__.py, social_auth/views.py: Pipeline call
cleanups
2011-12-29 Stephen McDonald <steve@jupo.org>
* social_auth/backends/__init__.py, social_auth/context_processors.py,
social_auth/utils.py: Refactored loading of BACKENDS to provide a proper
entry point (get_backends) responsible for populating BACKENDS where
required.
2011-12-25 Alexey Kinyov <rudy@05bit.com>
* LICENCE, LICENCE.django-openid-auth, LICENSE, LICENSE.django-openid-auth,
README.rst: * renames: LICENCE -> LICENSE, LICENCE.django-openid-auth ->
LICENSE.django-openid-auth * chapter on basic usage added to README.rst
2011-12-25 Stephen McDonald <steve@jupo.org>
* README.rst, doc/configuration.rst: Fixed a docs typo.
* example/settings.py, example/social_auth: Remove duplicate package from the
example app and load it from the parent path in the settings module.
* social_auth/tests/base.py, social_auth/tests/facebook.py,
social_auth/tests/google.py, social_auth/tests/twitter.py: Added testing for
cached backend loading.
* README.rst, doc/configuration.rst: Removed SOCIAL_AUTH_IMPORT_BACKENDS from
docs as its deprecated.
2011-12-22 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/__init__.py, social_auth/backends/google.py: Fix
google oauth athorization request. Closes #202.
2011-12-18 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/configuration.rst, social_auth/views.py: Difference
active/inactive users on complete process. Closes #197
2011-10-25 Matías Aguirre <matiasaguirre@gmail.com>
* example/settings.py, social_auth/backends/contrib/flickr.py: Fix Flickr
attribute getter
2011-10-18 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/__init__.py, social_auth/utils.py,
social_auth/views.py: Clean imports
2011-10-17 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/pipeline/__init__.py,
social_auth/backends/pipeline/associate.py,
social_auth/backends/pipeline/social.py,
social_auth/backends/pipeline/user.py: Issue warnings for deprecated
settings. Refs gh-90
* example/settings.py, social_auth/backends/__init__.py,
social_auth/backends/exceptions.py,
social_auth/backends/pipeline/__init__.py,
social_auth/backends/pipeline/associate.py,
social_auth/backends/pipeline/social.py,
social_auth/backends/pipeline/user.py, social_auth/views.py: Pipeline. Refs
gh-90
2011-10-10 Daniel G. Taylor <dan@programmer-art.org>
* README.rst, social_auth/backends/contrib/flickr.py: Add Flickr backend
2011-10-06 Daniel G. Taylor <dan@programmer-art.org>
* README.rst, social_auth/backends/contrib/dropbox.py: Add support for
Dropbox OAuth so that users can associate their account with Dropbox and
allow getting / putting files easily
2011-09-27 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/configuration.rst: Fix docs. Closes gh-149
2011-09-26 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/__init__.py, social_auth/backends/facebook.py: Migrate
Facebook to OAuth2. Closes gh-134
2011-09-20 Stas Kravets <krvss@mail.ru>
* social_auth/backends/contrib/mailru.py,
social_auth/backends/contrib/odnoklassniki.py,
social_auth/backends/contrib/vkontakte.py: Adding logging to OAuth backends:
log the api call errors
2011-09-19 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/models.py, social_auth/views.py: Remove ERROR_KEY/NAME_KEY
2011-09-19 Mathijs de Bruin <mathijs@mathijsfietst.nl>
* social_auth/backends/__init__.py, social_auth/backends/facebook.py: Some
exception logging, making debugging easier.
* social_auth/backends/__init__.py,
social_auth/backends/contrib/foursquare.py,
social_auth/backends/contrib/github.py,
social_auth/backends/contrib/linkedin.py,
social_auth/backends/contrib/livejournal.py,
social_auth/backends/contrib/orkut.py, social_auth/backends/facebook.py,
social_auth/backends/google.py, social_auth/backends/twitter.py,
social_auth/backends/yahoo.py, social_auth/views.py: Make a named logger
available everywhere we might need it.
2011-09-16 Matías Aguirre <matiasaguirre@gmail.com>
* social_auth/backends/__init__.py, social_auth/signals.py: Send signal for
cases where tracking failed registering is needed
* social_auth/backends/__init__.py, social_auth/views.py: Allow views to pass
extra parameters to authentication backends
2011-09-12 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/miscellaneous.rst: Fix link reference
2011-09-09 Matías Aguirre <matiasaguirre@gmail.com>
* README.rst, doc/miscellaneous.rst: Mention
http://djangopackages.com/grids/g/social-auth-backends/ in docs