forked from omab/python-social-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangelog
2985 lines (2006 loc) · 91.7 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
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-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-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
* 2014-07-07 Matías Aguirre <[email protected]>
Make user-agent setting available for all backends. Refs #317
* 2014-07-04 Harz-FEAR <[email protected]>
fix for AssertionError in pyramid
* 2014-07-01 Ondrej Slinták <[email protected]>
Added Django 1.7 migrations
* 2014-07-01 davidhubbard <[email protected]>
fix PR #317
* 2014-07-01 davidhubbard <[email protected]>
override request() to fix "429 Too Many Requests"
* 2014-06-30 Matías Aguirre <[email protected]>
Tox runner with pyenv support
* 2014-06-24 Martey Dodoo <[email protected]>
Update link to Django example in documentation.
* 2014-06-22 Roman Levin <[email protected]>
Add note about access_type in docs
* 2014-06-22 Avi Alkalay <[email protected]>
user first_date doesn't belong here
* 2014-06-21 Avi Alkalay <[email protected]>
The Moves app backend
* 2014-06-18 Matías Aguirre <[email protected]>
Initial work towards OpenIdConnect. Refs #300. Refs #284
* 2014-06-18 Matías Aguirre <[email protected]>
Useful debug pipeling function
* 2014-06-18 Gabriel Le Breton <[email protected]>
text should not go into code block
* 2014-06-18 Nikolaev Andrey <[email protected]>
It was impossible to change the version API Vkotnakte
* 2014-06-16 Matías Aguirre <[email protected]>
Improve django example application look
* 2014-06-16 Matías Aguirre <[email protected]>
Fix key access on instagram backend
* 2014-06-14 Matías Aguirre <[email protected]>
Integrate flask app and flask mongoengine app
* 2014-06-14 Matías Aguirre <[email protected]>
PEP8
* 2014-06-14 Matías Aguirre <[email protected]>
Fix docstring
* 2014-06-14 Matías Aguirre <[email protected]>
Move common fields to base class in sqlalchemy ORMs.
* 2014-06-14 Matías Aguirre <[email protected]>
Use mongoengin ORM in django me app
* 2014-06-12 Matías Aguirre <[email protected]>
QQ backend
* 2014-06-09 Josh Hawn <[email protected]>
Update docker backend with Docker Hub endpoints
* 2014-06-08 Matías Aguirre <[email protected]>
Add missing module
* 2014-06-08 Matías Aguirre <[email protected]>
Set user backend reference in django app
* 2014-06-08 Matías Aguirre <[email protected]>
Update tests
* 2014-06-07 Matías Aguirre <[email protected]>
Version change (no backward compatible change)
* 2014-05-26 Matías Aguirre <[email protected]>
Refactor backend/strategy to avoid circular dependency
* 2014-06-07 Matías Aguirre <[email protected]>
Support MergeDict and MultiDict in partial cleanup. Refs #291
2014-06-07 v0.1.26
==================
* 2014-06-07 Matías Aguirre <[email protected]>
v0.1.26
* 2014-06-07 Matías Aguirre <[email protected]>
Fix google-plus scope, support server-side flow
2014-06-07 v0.1.25
==================
* 2014-06-07 Matías Aguirre <[email protected]>
v0.1.25
* 2014-06-07 Matías Aguirre <[email protected]>
Support deprecated and new Google API. Refs #292. Refs #285
* 2014-06-07 Matías Aguirre <[email protected]>
Fix pipeline example
* 2014-06-01 Matías Aguirre <[email protected]>
Document steam player data saving
* 2014-05-28 Matías Aguirre <[email protected]>
Remove eclipse settings from PR merge
* 2014-05-26 Matías Aguirre <[email protected]>
Document google scopes deprecation. Refs #285
* 2014-05-26 Matías Aguirre <[email protected]>
Fix title underline
* 2014-05-26 Matías Aguirre <[email protected]>
Make request parameter optional. Refs #286
* 2014-05-26 Matías Aguirre <[email protected]>
PEP8
* 2014-05-24 Devin Sevilla <[email protected]>
Rdio API methods use POST
* 2014-05-22 Michael Godshall <[email protected]>
Fixed Django 1.7 admin
* 2014-05-20 Hector Zhao <[email protected]>
avoid updating default settings
* 2014-05-17 Matías Aguirre <[email protected]>
v0.2.0-dev
2014-05-17 v0.1.24
==================
* 2014-05-17 Matías Aguirre <[email protected]>
v0.1.24
* 2014-05-17 Matías Aguirre <[email protected]>
Example for ajax auth. Refs #272, #238
* 2014-05-17 Matías Aguirre <[email protected]>
Circumvent recursive import issue in admin. Fixes #269
* 2014-05-17 Matías Aguirre <[email protected]>
Update google scopes, remove the soon to be deprecated ones. Fixes #273
* 2014-05-17 Matías Aguirre <[email protected]>
Fix title underline in docs
* 2014-05-17 Ryan Choi <[email protected]>
remove mashery stuff from oauth; constrain it to beats
* 2014-05-17 Ryan Choi <[email protected]>
oauth for beats
* 2014-05-15 Jason Sanford <[email protected]>
Add links.
* 2014-05-15 Ryan Choi <[email protected]>
remove commented code for spotify
* 2014-05-15 Ryan Choi <[email protected]>
spotify oauth
* 2014-05-15 Jason Sanford <[email protected]>
Python 2.6-friendly string formatting.
* 2014-05-15 Jason Sanford <[email protected]>
Document MapMyFitness
* 2014-05-15 Matías Aguirre <[email protected]>
Change priority for new user redirect location
* 2014-05-15 Jason Sanford <[email protected]>
Test MapMyFitness backend
* 2014-05-14 Jason Sanford <[email protected]>
Get started with MapMyFitness OAuth2
* 2014-05-13 Matías Aguirre <[email protected]>
MongoEngine ORM support for flask applications
* 2014-05-13 swmerko <[email protected]>
from http API to https API
* 2014-05-12 Matías Aguirre <[email protected]>
Remove unused import
* 2014-05-10 Mark Lee <[email protected]>
Replace references to python-oauth2 with references to requests-oauthlib
* 2014-05-08 Smamaxs <[email protected]>
get email on login
* 2014-05-07 Marno Krahmer <[email protected]>
Change the authorization url for the xing api
* 2014-05-06 Matías Aguirre <[email protected]>
PEP8 and docs about Facebook Graph 2.0 backends
* 2014-05-06 Matías Aguirre <[email protected]>
Settings to override default scope/attrs and docs about them. Refs #258
* 2014-05-06 Daniel Ryan <[email protected]>
added new backend classes for Facebook that use the Open Graph 2.0
endpoints
* 2014-05-01 Matías Aguirre <[email protected]>
PEP8 and logic simplification
* 2014-05-01 Kyle Richelhoff <[email protected]>
Added LoginRadius backend.
* 2014-04-30 momamene <[email protected]>
Add Kakao backend
* 2014-04-30 Matías Aguirre <[email protected]>
Update amazon docs, drop outdate details about bug. Fixes #260
* 2014-04-23 Matías Aguirre <[email protected]>
Disable redirect_state in strava backend. Fixes #259
* 2014-04-23 Matías Aguirre <[email protected]>
Allow overrideable values for AX schema attrs and SReg attributes in
OpenId. Fixes #258
* 2014-04-23 Matías Aguirre <[email protected]>
Refactor fullname, first name and last name generation. Fixes #240
* 2014-04-23 Serg Baburin <[email protected]>
Using https as required by the API.
* 2014-04-19 Your Name <[email protected]>
User model fields accessors clashes issue solved
* 2014-04-18 Matías Aguirre <[email protected]>
Switch VK OpenAPI to session intead of cookies.
* 2014-04-14 David Blado <[email protected]>
linkedin now requires redirect uris to be verified:
https://developer.linkedin.com/blog/register-your-oauth-2-redirect-urls
* 2014-04-14 Matías Aguirre <[email protected]>
PEP8
* 2014-04-14 Hannes Ljungberg <[email protected]>
Add Twitch backend
* 2014-04-10 Matías Aguirre <[email protected]>
Remove unused parameters from pipeline prototypes
* 2014-04-08 Alexander Chernigov <[email protected]>
Handle properly refusing when entering via twitter
* 2014-04-04 Matías Aguirre <[email protected]>
Remove doc about deprecated setting. Refs #241
* 2014-04-03 Matías Aguirre <[email protected]>
Option for open id providers to specify the username key in the values
* 2014-04-03 Matías Aguirre <[email protected]>
Include strava backend in the index
* 2014-04-02 (cdep) illabout <[email protected]>
Fix small spelling mistake.
* 2014-04-02 Joe Hura <[email protected]>
Add support for Vimeo OAuth 2 as part of Vimeo API v3
* 2014-04-01 Krishan Gupta <[email protected]>
Update settings.rst
* 2014-04-01 Damien <[email protected]>
Incorrect syntax given in the documention
* 2014-04-01 Matías Aguirre <[email protected]>
Fix use-case snippet
* 2014-04-01 Matías Aguirre <[email protected]>
Switch custom redirect state to off in mendeley OAuth2. Closes #234
* 2014-04-01 Matías Aguirre <[email protected]>
Enable Last.fm in example applications
* 2014-04-01 Matías Aguirre <[email protected]>
Last.fm docs
* 2014-04-01 Matías Aguirre <[email protected]>
Refactor Last.fm backend (simplify code)
* 2014-03-26 root <[email protected]>
Added backend for Last.Fm. There is probably an easier way to implement
this.
* 2014-03-28 Matías Aguirre <[email protected]>
Make exception raise optional with setting. Add tests and docs
* 2014-03-27 Matías Aguirre <[email protected]>
Stop tox on first error
* 2014-03-27 Matías Aguirre <[email protected]>
Avoid passing multiple arguments to disconnect partial pipeline
* 2014-03-27 Matías Aguirre <[email protected]>
Improve partial session cleaner code. Refs #231
* 2014-03-27 Piotr Czesław Kalmus <[email protected]>
login with bitbucket account, error when any verified email is set
* 2014-03-27 Matías Aguirre <[email protected]>
Link docker docs in backends index
* 2014-03-27 Matías Aguirre <[email protected]>
PEP8
* 2014-03-25 Fernando <[email protected]>
initial version of docker backend
* 2014-03-26 Matías Aguirre <[email protected]>
Flag dev version
2014-03-26 v0.1.23
==================
* 2014-03-26 Matías Aguirre <[email protected]>
v0.1.23
* 2014-03-24 Yohan Boniface <[email protected]>
OpenStreetMap: no img element if user has no avatar
* 2014-03-23 Matías Aguirre <[email protected]>
Define a custom user model
* 2014-03-23 Matías Aguirre <[email protected]>
Comment about enhanced security flag in Live backend. Refs #218
* 2014-03-23 Matías Aguirre <[email protected]>
Try to use django messages app, fallback to URL. Fixes #210
* 2014-03-23 Matías Aguirre <[email protected]>
Don't assign strategy in middleware. Closes #221
* 2014-03-23 Matías Aguirre <[email protected]>
Pass the social_user to login functions. Refs #190
* 2014-03-18 Matías Aguirre <[email protected]>
Multiple scopes use case
* 2014-03-18 Matías Aguirre <[email protected]>
Register by token use case
* 2014-03-16 Matías Aguirre <[email protected]>
Fix strava tests and username generation. Refs #217
* 2014-03-15 Auston Bunsen <[email protected]>
final changes
* 2014-03-15 Auston Bunsen <[email protected]>
updated some docs
* 2014-03-15 Auston Bunsen <[email protected]>
added strava support!
* 2014-03-15 Matías Aguirre <[email protected]>
Remove symlinks. Fixes #177
* 2014-03-15 Matías Aguirre <[email protected]>
Use stateless mode with Steam. Fixes #200
* 2014-03-15 Matías Aguirre <[email protected]>
Get social_user instance before login. Refs #190
* 2014-03-15 Matías Aguirre <[email protected]>
Simplify redirect cleaner method. Closes #191
* 2014-03-15 Matías Aguirre <[email protected]>
Use forms to disconnect
* 2014-03-15 Matías Aguirre <[email protected]>
Mention localhost limitation on facebook. Closes #207
* 2014-03-13 Andrey Kuzmin <[email protected]>
Removes flask dependency from webpy_app
* 2014-03-12 Dave Murphy <[email protected]>
Added backend for Ubuntu (One).
* 2014-03-09 Matías Aguirre <[email protected]>
Make oauth_token retrieval optional. Refs #212
* 2014-03-08 Baptiste Mispelon <[email protected]>
Fixed Django < 1.4 support in context processors.
* 2014-03-06 Matías Aguirre <[email protected]>
Remove bitdeli badge
* 2014-03-06 Peter Schmidt <[email protected]>
Add some missing dependencies for running
`social.apps.django_app.default.tests`
* 2014-03-01 Matías Aguirre <[email protected]>
Link backend docs in index
* 2014-03-01 Matías Aguirre <[email protected]>
Docs about flask error handling
* 2014-03-01 Matías Aguirre <[email protected]>
Mark dev version
* 2014-03-01 Matías Aguirre <[email protected]>
v0.1.22
* 2014-02-28 Andrey Kuzmin <[email protected]>
Fixes broken email confirmation for SQLAlchemy storage and webpy_app
* 2014-02-27 Sebastian Bassi <[email protected]>
Update mendeley.py
* 2014-02-27 Matías Aguirre <[email protected]>
Don't update user if it's set to None (non-authenticated pipeline
continuation). Refs #198
* 2014-02-27 Matías Aguirre <[email protected]>
Set is_new flag on pipeline if user is not new. Refs #201
* 2014-02-27 Matías Aguirre <[email protected]>
Better error message
* 2014-02-25 Matías Aguirre <[email protected]>
Add 'user' to default scope on coinbase backend. Closes #199
* 2014-02-24 Matías Aguirre <[email protected]>
User USERNAME_FIELD on mongoengine. Closes #197
* 2014-02-21 Matías Aguirre <[email protected]>
Dev marker
* 2014-02-18 David Kingman <[email protected]>
Removed commit marker
* 2014-02-13 Matías Aguirre <[email protected]>
PEP8, Python3 and example fixes
* 2014-02-13 Thomas Lovett <[email protected]>
fix copy-paste typo in callback url
* 2014-02-13 Thomas Lovett <[email protected]>
add clef to main README
* 2014-02-14 Yan Kalchevskiy <[email protected]>
Fixed a typo.
* 2014-02-13 Matías Aguirre <[email protected]>
Vimeo backend
* 2014-02-13 Matías Aguirre <[email protected]>
Move badge to the top
* 2014-02-13 Bitdeli Chef <[email protected]>
Add a Bitdeli badge to README
* 2014-02-13 Matías Aguirre <[email protected]>
Docs about associate user by email
* 2014-02-12 Matías Aguirre <[email protected]>
Style recent docs
* 2014-02-13 Joe B. Lewis <[email protected]>
added information for FIELDS_STORED_IN_SESSION
* 2014-02-12 Hassek <[email protected]>
removed extra_data override
* 2014-02-11 Hassek <[email protected]>
updated live connection for better support
* 2014-02-10 Matías Aguirre <[email protected]>
CherryPy mention in project index
* 2014-02-10 Matías Aguirre <[email protected]>
CherryPy docs
* 2014-02-10 Matías Aguirre <[email protected]>
Disconnection on example app
* 2014-02-10 Matías Aguirre <[email protected]>
Pass user on disconnect
* 2014-02-10 Matías Aguirre <[email protected]>
Get extra_data from details on openid too
* 2014-02-10 Matías Aguirre <[email protected]>
Mendeley OAuth2 in example app
* 2014-02-10 Matías Aguirre <[email protected]>
Fix Mendeley OAuth2 implementation, use https URLs
* 2014-02-10 Matías Aguirre <[email protected]>
Switch parent class to avoid overrides
* 2014-02-10 Matías Aguirre <[email protected]>
Finishe CherryPy app support and add example application
* 2014-02-10 Matías Aguirre <[email protected]>
Mendeley OAuth2 docs and thanks to Sebastian Bassi (initial author)
* 2014-02-10 Matías Aguirre <[email protected]>
Mendeley OAuth2 backend
* 2014-02-10 Matías Aguirre <[email protected]>
Fix AuthFailed calls
* 2014-02-10 Matías Aguirre <[email protected]>
Raise social-auth exception on connection error. Closes #155
* 2014-02-10 Matías Aguirre <[email protected]>
Parse token if it's an string (keep a compatible API). Refs #180
* 2014-02-09 Matías Aguirre <[email protected]>
Stick with sure 1.2.3 (higher is broken, I should drop sure)
* 2014-02-09 Matías Aguirre <[email protected]>
Update sure to 1.2.5
* 2014-02-09 Matías Aguirre <[email protected]>
Fix LinkedIn OAuth2 backend, pass access token parameter in querystring.
Closes #181
2014-02-05 v0.1.21
==================
* 2014-02-05 Matías Aguirre <[email protected]>
v0.1.21
* 2014-02-05 Matías Aguirre <[email protected]>
Fix iexact field lookup. Refs #179
* 2014-02-05 Matías Aguirre <[email protected]>
Restore BackendWrapper to avoid session issues (this backend is
deprecated). Refs #128
* 2014-02-05 Matías Aguirre <[email protected]>
Case insensitive query on django. Closes #179
* 2014-02-03 Matías Aguirre <[email protected]>
Exclude sure broken version 1.2.4
* 2014-02-01 Michisu, Toshikazu <[email protected]>
Add version parameter to foursquare backend
* 2014-01-23 Matías Aguirre <[email protected]>
Use response encoding only when available. Refs #173
* 2014-01-21 Matías Aguirre <[email protected]>
Add pixelpin to backends index
* 2014-01-21 Matías Aguirre <[email protected]>
Ensure encode() before md5 call for python3. Closes #168
* 2014-01-21 lukos <[email protected]>
Added PixelPin to list of providers
* 2014-01-21 Matías Aguirre <[email protected]>
PEP8, file formats and line lengths fixes
* 2014-01-21 luke <[email protected]>
Add documentation for PixelPin
* 2014-01-21 luke <[email protected]>
Added new PixelPin provider.
* 2014-01-20 Matías Aguirre <[email protected]>
Use same DB name as other examples
* 2014-01-20 Yasin Aktimur <[email protected]>
Serializer changed.
* 2014-01-18 Matías Aguirre <[email protected]>
Support Weibo domain as username by setting. Closes #164
* 2014-01-18 Matías Aguirre <[email protected]>
Snippet to get people from circles on Google+
* 2014-01-17 Matías Aguirre <[email protected]>
Override get_user_id on tumblr backend. Refs #136
2014-01-17 v0.1.20
==================
* 2014-01-17 Matías Aguirre <[email protected]>
v0.1.20
* 2014-01-17 Matías Aguirre <[email protected]>
Decode bytes on Python3 otherwise it breaks session saving on Django. Refs
#139
* 2014-01-16 Matías Aguirre <[email protected]>
Fix linkedin docs about attributes names. Closes #161
* 2014-01-16 Matías Aguirre <[email protected]>
Also support old keys format in linkedin backend for basic data
2014-01-16 v0.1.19
==================
* 2014-01-16 Matías Aguirre <[email protected]>
v0.1.19
* 2014-01-16 Matías Aguirre <[email protected]>
Generate packages names dynamically
2014-01-16 v0.1.18
==================
* 2014-01-16 Matías Aguirre <[email protected]>
v0.1.18
* 2014-01-15 Matías Aguirre <[email protected]>
Raise missing parameter error in facebook. Refs #153
* 2014-01-15 harshiljain <[email protected]>
AUTHORIZATION_URL changed to https
* 2014-01-14 Matías Aguirre <[email protected]>
PEP8
* 2014-01-14 Javier G. Sogo <[email protected]>
stores 'access_token' for GooglePlusAuth
* 2014-01-14 Javier G. Sogo <[email protected]>
for FacebookOAuth2::process_revoke_token_response call super (solves type
with 'status_code') and custom processing
* 2014-01-14 Javier G. Sogo <[email protected]>
moved revoking stuff to OAuthAuth class (should it be moved to BaseAuth?)
* 2014-01-13 Max Tepkeev <[email protected]>
odnoklassniki backend iframe app fix
* 2014-01-10 xen <[email protected]>
Cleanup docs
* 2014-01-10 xen <[email protected]>
Simplify SQLAlchemy API usage
* 2014-01-10 xen <[email protected]>
Update to follow current state in documentations
* 2014-01-08 Roberto Robles <[email protected]>
Remove SOCIAL_AUTH prefix on redirect_uri function
* 2014-01-08 Roberto Robles <[email protected]>
Fixed issue with redirect_uri with https
* 2014-01-08 Matías Aguirre <[email protected]>
Link Taobao docs on backends index
* 2014-01-08 Matías Aguirre <[email protected]>
Docs styling and PEP8
* 2014-01-08 Jichao Ouyang <[email protected]>
taobao docs
* 2014-01-08 Jichao Ouyang <[email protected]>
get token with POST method
* 2014-01-07 Matías Aguirre <[email protected]>
PEP8 and cleanups. Refs #145
* 2014-01-07 Matías Aguirre <[email protected]>
Move URLs gathering to helper
* 2014-01-07 Matías Aguirre <[email protected]>
Fix dox underline
* 2014-01-07 Jichao Ouyang <[email protected]>
remove unused import
* 2014-01-07 Jichao Ouyang <[email protected]>
add to django example
* 2014-01-07 Jichao Ouyang <[email protected]>
add support for taobao
* 2014-01-06 Adam Coddington <[email protected]>
Updating readme to proclaim OAuth2 support for Dropbox.
* 2014-01-06 Adam Coddington <[email protected]>
Updating Dropbox documentation to include notes regarding OAuth2 support.
* 2014-01-06 Adam Coddington <[email protected]>
Adding Dropbox OAuth2 Support.
* 2014-01-06 Edwin Knuth <[email protected]>
increasing length of salt field for django apps, fixes #141
* 2014-01-06 Matías Aguirre <[email protected]>
Simplify partial handling on actions
* 2014-01-06 Matías Aguirre <[email protected]>
Updated readme with other dependencies. Closes #140
* 2014-01-06 Jichao Ouyang <[email protected]>
add support for taobao
* 2014-01-04 Matías Aguirre <[email protected]>
Always send email validations is required
* 2014-01-04 Matías Aguirre <[email protected]>
Move extra-data logic to base clase
* 2014-01-02 Matías Aguirre <[email protected]>
Fix ID_KEY for Tumblr backend. Refs #136
* 2014-01-02 Matías Aguirre <[email protected]>
Use cases doc. Refs #137
* 2014-01-01 Matías Aguirre <[email protected]>
Fix docstring. Refs #136
* 2013-12-28 Matías Aguirre <[email protected]>
Line chars limit in docs. Refs #135
* 2013-12-28 Matías Aguirre <[email protected]>
PEP8. Refs #135
* 2013-12-28 Xmypblu <[email protected]>
Add support for OpenStreetMap OAuth
* 2013-12-27 Matías Aguirre <[email protected]>
Update porting docs regarding session value
* 2013-12-27 Matías Aguirre <[email protected]>
PEP8
* 2013-12-26 Nicolas Cortot <[email protected]>
Support for MongoEngine authentication using Custom User Model
* 2013-12-25 Nick Sullivan <[email protected]>
Update reddit.py
* 2013-12-17 Jay Parlar <[email protected]>
Tiny typo fix
* 2013-12-16 maxtepkeev <[email protected]>
fix session expiration in vk backend
* 2013-12-11 Kevin Tran <[email protected]>
Added support for named URLs and URL translation using the django built-in
resolve_url before giving the url to tje HttpResponseRedirect. See also
https://code.djangoproject.com/ticket/15552
* 2013-12-11 Bob Alcorn <[email protected]>
Updated pipeline example to include externalized auth;
* 2013-12-09 Matías Aguirre <[email protected]>
Avoid broken email entries on yahoo API. Closes #125
* 2013-12-09 Matías Aguirre <[email protected]>
Allow unauthorized token retrieval/storage overrideable. Refs #111
* 2013-12-07 Matías Aguirre <[email protected]>
Constant type compare on HMAC signatures. Closes #122
* 2013-12-07 monkut <[email protected]>
Removed non-ascii character from author string
* 2013-12-06 Hans <[email protected]>
Add test backends to the package.
* 2013-12-06 Rodrigue Villetard <[email protected]>
Missing trailing slash on complete url
* 2013-12-03 Matías Aguirre <[email protected]>
PEP8. Refs #116
* 2013-12-03 Stephen McDonald <[email protected]>
Add refs to getpocket.com in readme + docs
* 2013-12-03 Stephen McDonald <[email protected]>
getpocket.com backend
* 2013-12-02 Matías Aguirre <[email protected]>
Helper to get current backend instance. Refs #114
* 2013-11-30 Matías Aguirre <[email protected]>
Set current strategy on pyramid app
* 2013-11-30 Matías Aguirre <[email protected]>
Simplify pyramid settings access
* 2013-11-30 Matías Aguirre <[email protected]>
Set current strategy on webpy and flask apps
* 2013-11-29 Matías Aguirre <[email protected]>
PEP8
* 2013-11-28 Matías Aguirre <[email protected]>
Link to backends docs in the modules instead of repeating the docs. Refs
#107
* 2013-11-28 Matías Aguirre <[email protected]>
Yammer docs
* 2013-11-28 Matías Aguirre <[email protected]>
Improves to Yahoo docs
* 2013-11-28 Matías Aguirre <[email protected]>
Xing docs
* 2013-11-28 Matías Aguirre <[email protected]>
Trello docs
* 2013-11-28 Matías Aguirre <[email protected]>
Podio docs
* 2013-11-28 Matías Aguirre <[email protected]>
Mendeley docs
* 2013-11-28 Matías Aguirre <[email protected]>
Fix backends index order
* 2013-11-28 Matías Aguirre <[email protected]>
LiveJournal docs
* 2013-11-28 Matías Aguirre <[email protected]>
Jawbone docs
* 2013-11-28 Matías Aguirre <[email protected]>
Foursquare backend docs
* 2013-11-28 Matías Aguirre <[email protected]>
Fitbit docs
* 2013-11-28 Matías Aguirre <[email protected]>
Fedora openid docs
* 2013-11-28 Matías Aguirre <[email protected]>
Fix douban oauth1 title
* 2013-11-28 Matías Aguirre <[email protected]>
Dailymotion docs
* 2013-11-28 Matías Aguirre <[email protected]>
File format fix to coinbase docs
* 2013-11-28 Matías Aguirre <[email protected]>