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