forked from omab/python-social-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog
3893 lines (2617 loc) · 119 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
2015-06-24 v0.2.11
==================
* 2015-06-24 Matías Aguirre <matiasaguirre@gmail.com>
v0.2.11
* 2015-06-19 Matías Aguirre <matiasaguirre@gmail.com>
Link docs
* 2015-06-19 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2015-06-18 Braden MacDonald <braden@opencraft.com>
Added documentation
* 2015-06-17 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2015-05-21 Braden MacDonald <braden@opencraft.com>
Minor cleanups
* 2015-05-20 Braden MacDonald <braden@opencraft.com>
Minor consistency fix
* 2015-05-20 Braden MacDonald <braden@opencraft.com>
Add an integration point for extra security layers like
eduPersonEntitlement
* 2015-05-20 Braden MacDonald <braden@opencraft.com>
Make IdP name format slightly more flexible
* 2015-05-11 Braden MacDonald <braden@opencraft.com>
Add python-saml requirement (temporary commit)
* 2015-05-08 Braden MacDonald <braden@opencraft.com>
Tests for SAML backend
* 2015-04-30 Braden MacDonald <braden@opencraft.com>
SAML2 backend using OneLogin's python-saml
2015-05-29 v0.2.10
==================
* 2015-05-29 Matías Aguirre <matiasaguirre@gmail.com>
v0.2.10
* 2015-05-29 Matías Aguirre <matiasaguirre@gmail.com>
Newline at end of file
* 2015-05-29 Matías Aguirre <matiasaguirre@gmail.com>
Fix changetip docs errors
* 2015-05-29 Matías Aguirre <matiasaguirre@gmail.com>
Coding style
* 2015-05-29 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2015-05-29 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2015-05-29 Matías Aguirre <matiasaguirre@gmail.com>
Avoid storing empty values from user details
* 2015-05-26 vinhub <vin.bhalerao@gmail.com>
Added Azure AD docs to index.rst
* 2015-05-26 Vinayak (Vin) Bhalerao <vin.bhalerao@gmail.com>
Removed
* 2015-05-25 sushantgawali <sushant.gawali@gmail.com>
changes in extra_data
* 2015-05-18 sushantgawali <vin.bhalerao@gmail.com>
added copyright / license notices
* 2015-05-15 sushantgawali <vin.bhalerao@gmail.com>
updated test cases
* 2015-05-13 sushantgawali <vin.bhalerao@gmail.com>
added get_auth_token method for ease of use
* 2015-05-12 sushantgawali <vin.bhalerao@gmail.com>
added test cases for AzureADOAuth2 refresh token method added
* 2015-05-11 sushantgawali <vin.bhalerao@gmail.com>
added generic resource setting added license text added documentation file
* 2015-05-11 sushantgawali <vin.bhalerao@gmail.com>
cleaned up unneeded Sharepoint related code
* 2015-05-11 sushantgawali <vin.bhalerao@gmail.com>
Added provider for Microsoft Azure Active Directory OAuth2
* 2015-05-20 Marek Jalovec <marek.jalovec@gmail.com>
Fixes "ImportError: No module named packages.urllib3.poolmanager" error
(fixes #617)
* 2015-05-20 blurrcat <blurrcat@gmail.com>
fix Fitbit OAuth 1 authorization URL
* 2015-05-17 duoduo369 <duoduo3369@gmail.com>
add weixin backends
* 2015-05-16 Andrew Starr-Bochicchio <a.starr.b@gmail.com>
Add a DigitalOcean backend.
* 2015-05-08 Matías Aguirre <matiasaguirre@gmail.com>
Ensure that all the requirements are installed
* 2015-05-08 Matías Aguirre <matiasaguirre@gmail.com>
Fix syntax (backward compatible)
* 2015-05-07 Matías Aguirre <matiasaguirre@gmail.com>
Dev version flagged
2015-05-07 v0.2.9
=================
* 2015-05-07 Matías Aguirre <matiasaguirre@gmail.com>
v0.2.9
* 2015-05-07 Matías Aguirre <matiasaguirre@gmail.com>
Fix manifest definition
2015-05-07 v0.2.8
=================
* 2015-05-07 Matías Aguirre <matiasaguirre@gmail.com>
v0.2.8
* 2015-05-02 Avi אבי Alkalay אלקלעי <avibrazil@gmail.com>
Fixed Moves link on list of providers
* 2015-05-02 Avi אבי Alkalay אלקלעי <avibrazil@gmail.com>
Added Moves to the list of providers
* 2015-05-01 Matías Aguirre <matiasaguirre@gmail.com>
Add note about TLSv1 support in Amazon backend
* 2015-05-01 Matías Aguirre <matiasaguirre@gmail.com>
Support SSL protocol override, default Amazon to TLSv1. Fixes #603
* 2015-04-27 Matías Aguirre <matiasaguirre@gmail.com>
Fix typos in docs (thanks to vsobolmaven)
* 2015-04-21 Matías Aguirre <matiasaguirre@gmail.com>
Make URLs trailing slash be configurable by setting. Refs #505
* 2015-04-20 Matías Aguirre <matiasaguirre@gmail.com>
Use get_json() helper
* 2015-04-20 Nick Sullivan <nick@sullivanflock.com>
Documentation for ChangeTip backend
* 2015-04-20 Nick Sullivan <nick@sullivanflock.com>
fail gracefully on missing email
* 2015-04-19 Matías Aguirre <matiasaguirre@gmail.com>
Allow to remove team from username in slack backend
* 2015-04-19 Matías Aguirre <matiasaguirre@gmail.com>
Flag dev version
2015-04-19 v0.2.7
=================
* 2015-04-19 Matías Aguirre <matiasaguirre@gmail.com>
v0.2.7
* 2015-04-19 Matías Aguirre <matiasaguirre@gmail.com>
Don't send redirect_state to slack backend
* 2015-04-17 Nick Sullivan <nick@sullivanflock.com>
use api domain for changetip request
* 2015-04-17 Nick Sullivan <nick@sullivanflock.com>
ChangeTip backend
* 2015-04-16 Matías Aguirre <matiasaguirre@gmail.com>
Fix clean username regex. Fixes #594
* 2015-04-16 Matías Aguirre <matiasaguirre@gmail.com>
PEP8 and switch check order
* 2015-04-16 Matías Aguirre <matiasaguirre@gmail.com>
Take into account that sometimes API v2.3 returns the old querystring
format. Fixes #592
* 2015-04-16 Matías Aguirre <matiasaguirre@gmail.com>
Move OAuth1 method out from the base class
* 2015-04-16 zz <zz.at.field@gmail.com>
Fix the final_username may be empty and will skip the loop.
* 2015-04-16 ys.chi <duguschi@gmail.com>
Alter email max length for Django app
* 2015-04-15 Matías Aguirre <matiasaguirre@gmail.com>
Remove single-use var
* 2015-04-15 Matías Aguirre <matiasaguirre@gmail.com>
Clean any pipeline remanents when starting the process. Refs #325
* 2015-04-15 Matías Aguirre <matiasaguirre@gmail.com>
Flag dev version
* 2015-04-15 Matías Aguirre <matiasaguirre@gmail.com>
Swtich Twitter API to POST (as it's documented)
* 2015-04-15 Christian Pedersen <chripede@gmail.com>
Append trailing slash in Django
2015-04-14 v0.2.6
=================
* 2015-04-14 Matías Aguirre <matiasaguirre@gmail.com>
v0.2.6
* 2015-04-14 Matías Aguirre <matiasaguirre@gmail.com>
Include tests requirements files. Fixes #590
* 2015-04-13 Matías Aguirre <matiasaguirre@gmail.com>
Fix publish task
2015-04-13 v0.2.5
=================
* 2015-04-13 Matías Aguirre <matiasaguirre@gmail.com>
v0.2.5
* 2015-04-13 Matías Aguirre <matiasaguirre@gmail.com>
Fix wheel support. Refs #588
* 2015-04-13 Matías Aguirre <matiasaguirre@gmail.com>
Add email to default list of protected userfields (popular demand)
2015-04-11 v0.2.4
=================
* 2015-04-11 Matías Aguirre <matiasaguirre@gmail.com>
v0.2.4
* 2015-04-11 Matías Aguirre <matiasaguirre@gmail.com>
Fix setting name (make it backend related). Refs #586
* 2015-04-10 Matías Aguirre <matiasaguirre@gmail.com>
Link to post about access-token based authentication
* 2015-04-08 Matías Aguirre <matiasaguirre@gmail.com>
Move revoke methods to common class. Fixes #484
* 2015-04-08 Matías Aguirre <matiasaguirre@gmail.com>
Fix settings names on spotify docs. Fixes #475
* 2015-04-07 Matías Aguirre <matiasaguirre@gmail.com>
Fix links in docs
* 2015-04-07 Matías Aguirre <matiasaguirre@gmail.com>
Fix Facebook test case after API version change. Refs #480
* 2015-04-07 Matías Aguirre <matiasaguirre@gmail.com>
Update Facebook to API v2.3
* 2015-04-07 Matías Aguirre <matiasaguirre@gmail.com>
Fix get_scope() override example
* 2015-04-07 Matías Aguirre <matiasaguirre@gmail.com>
Raise error if token was passed but it's incomplete. Fixes #574
* 2015-04-06 Matías Aguirre <matiasaguirre@gmail.com>
Flag dev version
* 2015-04-06 Matt Robenolt <matt@ydekproductions.com>
Build a wheel, and upload with twine
* 2015-04-04 Matías Aguirre <matiasaguirre@gmail.com>
Log error messages. Fixes #507
* 2015-04-04 Matías Aguirre <matiasaguirre@gmail.com>
Pass all arguments to extra_data (save access token).
* 2015-04-04 Matías Aguirre <matiasaguirre@gmail.com>
Improve http error handling on auth_complete/do_auth. Fixes #304
* 2015-04-04 Matías Aguirre <matiasaguirre@gmail.com>
Update docs about SOCIAL_AUTH_PROTECTED_USER_FIELDS. Fixes #459
* 2015-04-04 Matías Aguirre <matiasaguirre@gmail.com>
Optional trailing slash on django apps. Fixes #505
* 2015-04-04 Matías Aguirre <matiasaguirre@gmail.com>
Improve deprecation notice on behance docs
* 2015-04-04 Matías Aguirre <matiasaguirre@gmail.com>
Add notice about behance broken api. Refs #530
* 2015-04-04 Matías Aguirre <matiasaguirre@gmail.com>
Remove unsupported attribute from alter field migration
* 2015-04-04 Matías Aguirre <matiasaguirre@gmail.com>
Remove hard limitations on PyJWT and requests-oauthlib versions. Fixes #531
* 2015-04-04 Matías Aguirre <matiasaguirre@gmail.com>
Change title
* 2015-04-04 Matías Aguirre <matiasaguirre@gmail.com>
Link backend docs
* 2015-04-04 Matías Aguirre <matiasaguirre@gmail.com>
Add docs about disconnection and logging out difference. Fixes #568
* 2015-04-03 Matías Aguirre <matiasaguirre@gmail.com>
Conditional import on transaction, update docs to mention it. Fixes #572
* 2015-04-03 Matías Aguirre <matiasaguirre@gmail.com>
Define a MANIFEST.in file. Fixes #578
* 2015-04-03 Lucas Roesler <roesler.lucas@gmail.com>
Allow inactive users to login
* 2015-04-02 Matías Aguirre <matiasaguirre@gmail.com>
Update django/mongoengine example (similar to default one). Refs #576
* 2015-04-02 Matías Aguirre <matiasaguirre@gmail.com>
Add backward compatibility on django app initialization. Refs #550
* 2015-04-01 M.Yasoob Ullah Khalid ☺ <yasoob.khld@gmail.com>
Update LICENSE
2015-03-31 v0.2.3
=================
* 2015-03-31 Matías Aguirre <matiasaguirre@gmail.com>
v0.2.3
* 2015-03-31 Matías Aguirre <matiasaguirre@gmail.com>
PEP8. Refs #570
* 2015-03-30 Krzysztof Hoffmann <krzysiekpl@gmail.com>
Added NaszaKlasa OAuth2 support
* 2015-03-29 Buddy Lindsey, Jr. <buddylindsey@users.noreply.github.com>
Add revoke token ability to strava
* 2015-03-29 Matías Aguirre <matiasaguirre@gmail.com>
Store github login in extra data by default. Refs #567
* 2015-03-25 Jun Wang <wj1918@hotmail.com>
set redirect_state to false for live oauth2
* 2015-03-25 Matías Aguirre <matiasaguirre@gmail.com>
Fix backend, add quick docs. Refs #549
* 2015-03-25 Matías Aguirre <matiasaguirre@gmail.com>
Add rednose to python3 requirements too
* 2015-03-23 Jerome Lefeuvre <jerome.lefeuvre@gmail.com>
Add setup.cfg to configure flake8 and nosetests
* 2015-03-23 Jerome Lefeuvre <jerome.lefeuvre@gmail.com>
Add rednose for colored output log
* 2015-03-21 Andrei Petre <andreipetre@icloud.com>
Add missing migration for Django app
* 2015-03-19 José Padilla <jpadilla@webapplicate.com>
Specify algorithm for encoding and decoding
* 2015-03-19 José Padilla <jpadilla@webapplicate.com>
Require PyJWT>=1.0.0,<2.0.0
* 2015-03-19 Matías Aguirre <matiasaguirre@gmail.com>
Remove debug print
* 2015-03-19 Matías Aguirre <matiasaguirre@gmail.com>
Flush sqlalchemy session to get the object ids. Refs #390
* 2015-03-19 Johannes <johtso@gmail.com>
Start pipeline with default details arg
* 2015-03-19 Jerome Lefeuvre <jerome.lefeuvre@gmail.com>
Add `python_chameleon` to setup
* 2015-03-17 Matías Aguirre <matiasaguirre@gmail.com>
Ensure to flush the db session (needed for Pyramid + sqlalchemy). Refs #390
* 2015-03-12 DanielJDufour <daniel.j.dufour@gmail.com>
update for django 1.9
* 2015-03-12 Matt Howland <matt.howland@lab45.com>
Create vend.py
* 2015-03-12 Johannes <johtso@gmail.com>
Increase min request-oauthlib version to 0.3.1
* 2015-03-12 Adam Bogdał <adam@bogdal.pl>
Add wunderlist backend to the list
* 2015-03-11 Florian Eßer <f.esser@rwth-aachen.de>
Update index.html
* 2015-03-10 Adam Bogdał <adam@bogdal.pl>
Add wunderlist oauth2 backend
* 2015-03-07 Matías Aguirre <matiasaguirre@gmail.com>
PEP8, quotes and extra_data
* 2015-03-06 Florian Eßer <f.esser@rwth-aachen.de>
Add backend for EVE Online Single Sign-On (OAuth2)
https://developers.eveonline.com/resource/single-sign-on
* 2015-03-05 Matías Aguirre <matiasaguirre@gmail.com>
PEP8 and simplify code
* 2015-03-05 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2015-03-05 Rafael Muñoz Cárdenas <rafael.munoz@deliveryhero.com>
Add extra info on Google+ Sign-In doc
* 2015-03-03 dobestan <dobestan@gmail.com>
update Kakao OAuth2 backend : update auth process- Fixes #538
* 2015-03-03 dobestan <dobestan@gmail.com>
Enable KakaoOAuth2 on example app
* 2015-03-03 dobestan <dobestan@gmail.com>
Disable redirect_state in kakao backend. Fixes #538
* 2015-03-02 Tom Clancy <tclancy@gmail.com>
Update google.rst
* 2015-03-02 Hassek <tomas@onereceipt.me>
modified docs
* 2015-02-25 Hassek <tomas@onereceipt.me>
fixed refresh tokens for yahoo
* 2015-02-25 Hassek <tomas@onereceipt.me>
added OAuth2 support to yahoo. Also, removed OAuth1 since yahoo will not be
supporting it anymore
* 2015-02-24 Matías Aguirre <matiasaguirre@gmail.com>
Cleanup imports and hmac creation, fix python3 compatibility
* 2015-02-24 zz <zz.at.field@gmail.com>
Fix Issue #532, get UID when use access_token ajax auth in weibo backends.
* 2015-02-24 zz <zz.at.field@gmail.com>
Fix Issue #532, get UID when use access_token ajax auth in weibo backends.
* 2015-02-23 Matías Aguirre <matiasaguirre@gmail.com>
Fix zotero tests
2015-02-23 v0.2.2
=================
* 2015-02-23 Matías Aguirre <matiasaguirre@gmail.com>
v0.2.2
* 2015-02-23 Matías Aguirre <matiasaguirre@gmail.com>
PEP8/PyFlakes
* 2015-02-21 Motoki Naruse <motoki@naru.se>
login_user takes 3 parameters
* 2015-02-21 Motoki Naruse <motoki@naru.se>
Include template engine
* 2015-02-21 Motoki Naruse <motoki@naru.se>
Email column is duplicated
* 2015-02-18 Sergey Kozub <sergey.kozub@p9ft.com>
fix python3 handling of openid backend on sqlalchemy storage (use str
instead of bytes)
* 2015-02-16 Chris Lamb <chris@chris-lamb.co.uk>
Don't use "import" in example method paths docs to avoid confusion
* 2015-02-15 tell-k <ffk2005@gmail.com>
fixed bug.
* 2015-02-15 tell-k <ffk2005@gmail.com>
add document url.
* 2015-02-15 tell-k <ffk2005@gmail.com>
Add dribble backend.
* 2015-02-14 Alejandro Baronetti <baroale@gmail.com>
Fixed issue: GET dictionary is immutable. I am not using MergeDict because
it will be deprecated
* 2015-02-13 Chris Martin <ch.martin@gmail.com>
Include username in Reddit extra_data
* 2015-02-12 Eugene Agafonov <e.a.agafonov@gmail.com>
[facebook-oauth2] Verifying Graph API Calls with appsecret_proof
* 2015-02-11 tell-k <ffk2005@gmail.com>
refs #512 fixed typo
* 2015-02-11 tell-k <ffk2005@gmail.com>
refs #512 fixed bug for py2.6
* 2015-02-11 tell-k <ffk2005@gmail.com>
add qiita backend
* 2015-02-10 Matías Aguirre <matiasaguirre@gmail.com>
Pyflakes
* 2015-02-10 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2015-02-07 Alejandro Baronetti <baroale@gmail.com>
Fix: REQUEST has been deprecated in Django 1.7, so we need to merge
dictionaries
* 2015-02-06 Clinton Blackburn <clinton.blackburn@gmail.com>
Updated PyJWT Dependency
* 2015-02-06 Rafael Muñoz Cárdenas <rafael.munoz@deliveryhero.com>
Update Google documentation
* 2015-02-03 Matías Aguirre <matiasaguirre@gmail.com>
Add test for nationbuilder backend
* 2015-02-03 Matías Aguirre <matiasaguirre@gmail.com>
Move common code to base class
* 2015-02-03 Matías Aguirre <matiasaguirre@gmail.com>
NationBuilder backend
* 2015-02-03 Matías Aguirre <matiasaguirre@gmail.com>
Define methods to customize urls in OAuth2 backends
* 2015-02-03 Matías Aguirre <matiasaguirre@gmail.com>
Enable debug pipeline in example app
* 2015-02-03 Ian Wienand <iwienand@redhat.com>
Ensure email is not None
* 2015-02-02 Chris DeBlois <chris.deblois@globant.com>
updated mendeley oauth2 to use new api resource and also updated to grab
new profile_id, name and bio
* 2015-02-02 Ian Wienand <iwienand@redhat.com>
Add support for Launchpad OpenId
* 2015-01-30 rivf <rivfader3@gmail.com>
Fixed jawbone authentification
* 2015-01-27 Adam Babik <adam.babik@10clouds.com>
Added coursera backend to README
* 2015-01-27 Adam Babik <adam.babik@10clouds.com>
Docs for coursera backend
* 2015-01-23 Adam Babik <adam.babik@10clouds.com>
Added Coursera backend to django_example
* 2015-01-23 Adam Babik <adam.babik@10clouds.com>
Added backend for Coursera
* 2015-01-20 ayush <ayush@quettra.com>
Added nonce unique constraint
* 2015-01-19 Matías Aguirre <matiasaguirre@gmail.com>
Patch tornado arguments/cookies getting. Refs #445. Refs #346
* 2015-01-10 Chris Barna <chris@unbrain.net>
Store Spotify's refresh_token.
* 2015-01-07 Nick Sullivan <nick@sullivanflock.com>
cleanly handle both a scope of 'identity' only and also fill in more data
if we have 'read' access
* 2015-01-07 Nick Sullivan <nick@sullivanflock.com>
properly handle data, so that it is more future proof, again. This time fix
issue with team_url
* 2015-01-07 Nick Sullivan <nick@sullivanflock.com>
update in a way that will be more future proof
* 2015-01-07 Nick Sullivan <nick@sullivanflock.com>
when scope is reduced, the response from slack is different, handle both
* 2015-01-05 Ben Davis <bendavis78@gmail.com>
Fixed extra_data field in django 1.7 initial migration
* 2015-01-02 Jun Wang <wj1918@hotmail.com>
Fix YahooOAuth get primary email sorting order
* 2015-01-02 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2015-01-02 Matías Aguirre <matiasaguirre@gmail.com>
Link docs, apply PEP8, change quotes and code style
* 2015-01-02 Matías Aguirre <matiasaguirre@gmail.com>
Change expression
* 2015-01-02 travoltino <romansoloha@gmail.com>
Update base.py
* 2014-12-29 Alex Muller <alex.muller@digital.cabinet-office.gov.uk>
Correct Django SESSION_COOKIE_AGE setting
* 2014-12-28 Nick Sullivan <nick@sullivanflock.com>
Documentation for slack backend
* 2014-12-28 Nick Sullivan <nick@sullivanflock.com>
Slack backend
* 2014-12-24 Alex Muller <alex.muller@digital.cabinet-office.gov.uk>
Update GitHub documentation
* 2014-12-19 Frankie Robertson <frankie@robertson.name>
Fix #460: Call force_text on _URL settings to support reverse_lazy with
default session serializer
* 2014-11-27 James Potter <james.potter@gmail.com>
Update django.rst
* 2014-11-26 Anna Warzecha <anna.warzecha@gmail.com>
User ID is required to use any further requests
* 2014-11-26 Sasha Golubev <erwerthg@gmail.com>
Added backend for professionali.ru
* 2014-11-24 Lukas Klein <lukas@productgang.com>
Removed Orkut backend
* 2014-11-24 Matías Aguirre <matiasaguirre@gmail.com>
Remove Flask-SQLAlchemy dependency from example app
* 2014-11-23 Matías Aguirre <matiasaguirre@gmail.com>
Simplify flask app initialization
* 2014-11-22 Matías Aguirre <matiasaguirre@gmail.com>
Allow initial definition of protected attributes
* 2014-11-22 Matías Aguirre <matiasaguirre@gmail.com>
Quick khan academy docs
* 2014-11-22 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2014-11-22 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2014-11-21 tschilling <schillingt@better-simple.com>
Allow the pipeline to change the redirect url. Moves the popping of the
redirect value from the session to after the pipe line executes.
* 2014-11-19 Seán Hayes <gasphynx@gmail.com>
Added support for Django's User.EMAIL_FIELD.
* 2014-11-18 Anna Warzecha <anna.warzecha@gmail.com>
Changed test name
* 2014-11-18 Anna Warzecha <anna.warzecha@gmail.com>
Fixed docs
* 2014-11-18 Anna Warzecha <anna.warzecha@gmail.com>
Khan Academy oauth support now fully working
* 2014-11-18 Anna Warzecha <anna.warzecha@gmail.com>
Struggling with Khan Academy again...
* 2014-11-16 Anna Warzecha <anna.warzecha@gmail.com>
Fix backend name formatting
* 2014-11-16 Anna Warzecha <anna.warzecha@gmail.com>
Fix readme
* 2014-11-16 Anna Warzecha <anna.warzecha@gmail.com>
Basic Khan Academy support
* 2014-11-15 Matías Aguirre <matiasaguirre@gmail.com>
Avoid override of custom-usernames fields with plain generated username.
Refs #435
* 2014-11-15 Matías Aguirre <matiasaguirre@gmail.com>
Fix docs. Refs #436
* 2014-11-14 Matías Aguirre <matiasaguirre@gmail.com>
Remove x flag from .py file
* 2014-11-11 Matías Aguirre <matiasaguirre@gmail.com>
Example on how to re-prompt a google user to get the refresh_token
* 2014-11-07 Miguel Paolino <miguel.paolino@datakin.io>
Added zotero test, work in progress
* 2014-11-07 Miguel Paolino <miguel.paolino@datakin.io>
Udpated README to include the Zotero backend mention
* 2014-11-07 Miguel Paolino <miguel.paolino@datakin.io>
Fixed doc line
* 2014-11-07 Miguel Paolino <miguel.paolino@datakin.io>
Added Zotero OAuth1 backend
* 2014-11-02 Matías Aguirre <matiasaguirre@gmail.com>
Pass request to pyramid strategy. Refs #390
* 2014-11-02 Matías Aguirre <matiasaguirre@gmail.com>
Update changelog. Refs #421
* 2014-11-01 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2014-11-01 John Lynn <jlynn@hearsaycorp.com>
Fix typo for AUTH_USER_MODEL
* 2014-11-01 Matías Aguirre <matiasaguirre@gmail.com>
Set no-cache on views
* 2014-11-01 Matías Aguirre <matiasaguirre@gmail.com>
Rename tokens to access_token. Refs #430
* 2014-11-01 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2014-11-01 Matías Aguirre <matiasaguirre@gmail.com>
PEP8 + basic docs. Refs #412
* 2014-11-01 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2014-10-30 Matías Aguirre <matiasaguirre@gmail.com>
Link missing doc
* 2014-10-30 Matías Aguirre <matiasaguirre@gmail.com>
Fix use case snippet
* 2014-10-29 Alex Parij <paris.alex@gmail.com>
Update base.py
* 2014-10-29 Mitchel Humpherys <mitch.special@gmail.com>
use correct tense for `to meet'
* 2014-10-26 John Lynn <jlynn@hearsaycorp.com>
Fix custom user model migrations for Django 1.7
* 2014-10-23 Matías Aguirre <matiasaguirre@gmail.com>
Pick github primary email first. Fixes #413
* 2014-10-16 Christopher Grebs <cg@webshox.org>
Fix migration issue on python 3
* 2014-10-12 SilentSokolov <silentsokolov@gmail.com>
Fix does not match the number of arguments (for vk and ok backend)
* 2014-10-08 Michal Karzyński <bitbucket@karzyn.com>
Salesforce OAuth2 support
* 2014-10-07 Matías Aguirre <matiasaguirre@gmail.com>
PEP8 and module rename
* 2014-10-07 Matías Aguirre <matiasaguirre@gmail.com>
Travisci update
* 2014-10-07 Matías Aguirre <matiasaguirre@gmail.com>
Enable pypy and replace sugar with unittest2. Refs #410
* 2014-10-07 Omer Katz <omer.drow@gmail.com>
Added Python 3.4 and PyPy to the build matrix.
* 2014-10-04 micahhausler <micah.hausler@ambition.com>
Added Django 1.7 App Config
* 2014-10-02 micahhausler <micah.hausler@ambition.com>
Switched list_display order for UserSocialAuth
* 2014-10-02 micahhausler <micah.hausler@ambition.com>
Added string method to UserSocialAuth model
* 2014-10-03 Daniel Holmes <daniel.holmes@djcentric.com>
Use new GoogleOAuth2 Spec
* 2014-10-01 Laban <lmwangi@gmail.com>
Incorrect import path for db model
* 2014-09-30 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2014-09-30 Matías Aguirre <matiasaguirre@gmail.com>
Convert docstring to comments, PEP8
* 2014-09-29 Lee Jaeyoung <jaeyoung@monodiary.net>
Apply more detailed address for kakao
* 2014-09-29 Lee Jaeyoung <jaeyoung@monodiary.net>
Add Kakao to README.rst
* 2014-09-28 David Zerrenner <dazer017@gmail.com>
Added some legal stuff
* 2014-09-27 Aarni Koskela <akx@iki.fi>
Recreate migration with Django 1.7 final and re-PEP8.
* 2014-09-26 Matías Aguirre <matiasaguirre@gmail.com>
Use getattr to get current backend from request
* 2014-09-25 Matías Aguirre <matiasaguirre@gmail.com>
Doc about custom url namespace. Refs #399
* 2014-09-25 Matías Aguirre <matiasaguirre@gmail.com>
Configurable django views namespace. Refs #399
* 2014-09-25 Matías Aguirre <matiasaguirre@gmail.com>
PEP8 and more
* 2014-09-24 Vera Mazhuga <vera@axiacore.com>
master add SCOPE_SEPARATOR to DisqusOAuth2
* 2014-09-24 dzerrenner <dazer017@gmail.com>
added a backend for Battle.net Oauth2 auth
* 2014-09-23 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2014-09-23 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2014-09-23 David Henderson <david.henderson@triggeredmessaging.com>
Removed prefix, added example of details object.
* 2014-09-23 David Henderson <david.henderson@triggeredmessaging.com>
No good reason to skip a class
* 2014-09-21 Matías Aguirre <matiasaguirre@gmail.com>
Don't update a setting value. Refs #378. Refs #377
* 2014-09-21 Tim Savage <tim.savage@poweredbypenguins.org>
Update installing.rst
* 2014-09-21 Tim Savage <tim.savage@poweredbypenguins.org>
Update README.rst
* 2014-09-18 Matías Aguirre <matiasaguirre@gmail.com>
Print arguments in the debug pipeline
* 2014-09-16 Stefan Kröner <sk-github@kanen.at>
Allow more Trello settings
* 2014-09-12 Matías Aguirre <matiasaguirre@gmail.com>
Add debug pipeline to example app
* 2014-09-12 Matías Aguirre <matiasaguirre@gmail.com>
Update snippet
* 2014-09-12 David Henderson <david.henderson@triggeredmessaging.com>
Updated to use latest api wrapper
* 2014-09-11 Matías Aguirre <matiasaguirre@gmail.com>
Flag dev version
2014-09-11 v0.2.1
=================
* 2014-09-11 Matías Aguirre <matiasaguirre@gmail.com>
v0.2.1
* 2014-09-11 Matías Aguirre <matiasaguirre@gmail.com>
Take into account inconsistent instagram responses
* 2014-09-11 Matías Aguirre <matiasaguirre@gmail.com>
Mension product-name google requirement
* 2014-09-11 Matías Aguirre <matiasaguirre@gmail.com>
Flag dev version
2014-09-11 v0.2.0
=================
* 2014-09-11 Matías Aguirre <matiasaguirre@gmail.com>
v0.2.0
* 2014-09-11 Matías Aguirre <matiasaguirre@gmail.com>
Restore @strategy decorator with warning message
* 2014-09-09 Tsung Hung <hungmasterj@gmail.com>
updated the docs to add migrations for 1.7 while updated a constant so the
warning message does not appear when running command line
* 2014-09-09 Tsung Hung <hungmasterj@gmail.com>
updated the docs to add migrations for 1.7 while updated a constant so the
warning message does not appear when running command line
* 2014-09-07 Amol Kher <markhelo@gmail.com>
Jawbone needs params instead of data as requests
* 2014-09-07 Caio Ariede <caio.ariede@gmail.com>
Support for MineID.org
* 2014-09-03 Matías Aguirre <matiasaguirre@gmail.com>
Added commets detailing pipeline functionality. Refs #361
* 2014-08-31 Matías Aguirre <matiasaguirre@gmail.com>
Enable state parameter for angel.co and spotify.com backends. Fixes #367
* 2014-08-29 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2014-08-29 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2014-08-27 Gianluca Pacchiella <gianluca.pacchiella@ktln2.org>
Fix typo
* 2014-08-27 Clinton Blackburn <clinton.blackburn@gmail.com>
Updated OpenId Connect Test Mixin
* 2014-08-25 Matt Luongo <mhluongo@gmail.com>
Use a more flexible South user migration approach.
* 2014-08-21 Matt Luongo <mhluongo@gmail.com>
Remove South from mandatory requirements.
* 2014-08-21 Matt Luongo <mhluongo@gmail.com>
Split up the Django 1.7+ & South migrations.
* 2014-08-21 Max Nanis <max@maxnanis.com>
Small grammatical edit
* 2014-08-19 Martey Dodoo <martey@marteydodoo.com>
Fix repository links in thanks document.
* 2014-08-18 Parker Phinney <parker.phinney@gmail.com>
changed default behavior of SESSION_EXPIRATION setting
* 2014-08-18 Ross Crawford-d'Heureuse <ross@lawpal.com>
added goclio
* 2014-08-16 Matías Aguirre <matiasaguirre@gmail.com>
Link/img change
* 2014-08-16 Matías Aguirre <matiasaguirre@gmail.com>
RTD badge
* 2014-08-16 Matías Aguirre <matiasaguirre@gmail.com>
PEP8
* 2014-08-15 Matías Aguirre <matiasaguirre@gmail.com>
Support passwordless schema on mail validation pipeline
* 2014-08-14 Matías Aguirre <matiasaguirre@gmail.com>
Fix backend reference. Fixes #350
* 2014-08-12 = <=>
Add pushbullet backends
* 2014-08-09 Matías Aguirre <matiasaguirre@gmail.com>
Fix disconnect buttons styles
* 2014-08-09 Matías Aguirre <matiasaguirre@gmail.com>
PEP8 and fixed tests. Refs #348
* 2014-08-08 Clinton Blackburn <clinton.blackburn@gmail.com>
Added Open ID Connect base backend
* 2014-08-08 Josh Probst <jprobst21@gmail.com>
numeric index for format
* 2014-08-07 Matías Aguirre <matiasaguirre@gmail.com>
Fix user syncdb. Refs #342
* 2014-08-07 Matías Aguirre <matiasaguirre@gmail.com>
Simplify moves backend code and add documentation. Refs #307
* 2014-08-05 Vadym Petrychenko <darthwade@users.noreply.github.com>
Update vk.rst
* 2014-08-02 Matías Aguirre <matiasaguirre@gmail.com>
Landscape conf
* 2014-08-02 Matías Aguirre <matiasaguirre@gmail.com>
Support redirect_state in OAuth1 backends too (enable twitter by default).
Refs #338
* 2014-08-02 Matías Aguirre <matiasaguirre@gmail.com>
Enable DropboxOAuth2 on example app
* 2014-07-29 Chris Lamb <chris@chris-lamb.co.uk>
Also populate Strava name from 'lastname' attribute:
* 2014-07-29 Chris Lamb <chris@chris-lamb.co.uk>
Correct reference to 'firstname' when populating forenames from Strava.
* 2014-07-29 Chris Lamb <chris@chris-lamb.co.uk>
Correct Stava scoping/permissions example.
* 2014-07-28 Chris Martin <ch.martin@gmail.com>
Clean up language in social/tests/README.rst
* 2014-07-27 Matías Aguirre <matiasaguirre@gmail.com>
Docs about writing custom pipeline functions