forked from omab/python-social-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog
2511 lines (1688 loc) · 76.9 KB
/
Changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
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-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]>
Fix backends order
* 2013-11-28 Matías Aguirre <[email protected]>
BelgiumEID docs
* 2013-11-28 Matías Aguirre <[email protected]>
AOL docs
* 2013-11-26 Norton Wang <[email protected]>
fix uid in coinbase oauth
* 2013-11-23 Norton Wang <[email protected]>
add coinbase docs, add runkeeper docs to index
* 2013-11-23 Norton Wang <[email protected]>
add coinbase oauth
* 2013-11-23 Norton Wang <[email protected]>
Add more examples to django_example, alphabetize, fix some grammar
* 2013-11-21 Matías Aguirre <[email protected]>
Fix setting name in docs. Refs #97
* 2013-11-21 Matías Aguirre <[email protected]>
Move default pipeline definitions to constants for easy import. Refs #99
* 2013-11-21 josseph <[email protected]>
Update weibo.py
* 2013-11-20 Jesse Pollak <[email protected]>
adds clef as a login provider
* 2013-11-20 maxtepkeev <[email protected]>
Make vk-app backend to retrieve additional user data in respect to the
*_EXTRA_DATA setting
* 2013-11-19 Matías Aguirre <[email protected]>
Fix typo
* 2013-11-19 Matías Aguirre <[email protected]>
Mention callback URL definition on linkedin when using oauth2. Refs #58
* 2013-11-18 Matías Aguirre <[email protected]>
Include backend name in setting if backend is defined. Refs #95
* 2013-11-18 Matías Aguirre <[email protected]>
PEP8 and simplifications. Refs #92
* 2013-11-18 Matías Aguirre <[email protected]>
Restore prvious link, fix schema in readthedocs link. Refs #93
* 2013-11-17 Sahil Gupta <[email protected]>
Updated README to point to the latest docs on Read The Docs.
* 2013-11-16 Marios <[email protected]>
Google Plus backend allows for a server-side flow that can grant a refresh
token that can be subsequently used to perform operations on behalf of the
user, even if the user is not online.
* 2013-11-14 Matías Aguirre <[email protected]>
Replace format call with string join. Closes #91
* 2013-11-14 Juan Riaza <[email protected]>
a better way
* 2013-11-14 Juan Riaza <[email protected]>
fitbit uid
* 2013-11-13 Matías Aguirre <[email protected]>
Fix OpenId PAPE max age check. Closes #89
* 2013-11-13 Matías Aguirre <[email protected]>
Changelog update
2013-11-13 v0.1.17
==================
* 2013-11-13 Matías Aguirre <[email protected]>
v0.1.17
* 2013-11-13 Matías Aguirre <[email protected]>
Support remember flag when calling login on flask app
* 2013-11-13 Nitish Rathi <[email protected]>
Use strategy.backend.name instead of strategy.backend_name
* 2013-11-13 Nitish Rathi <[email protected]>
Use strategy.backend.name instead of strategy.backend_name
* 2013-11-13 Nitish Rathi <[email protected]>
Use strategy.backend.name instead of strategy.backend_name
* 2013-11-13 Matías Aguirre <[email protected]>
Update ChangeLog
* 2013-11-13 Matías Aguirre <[email protected]>
Define exception to signal a backend-not-found error. Refs #83
* 2013-11-11 Алексей <[email protected]>
Raise Http404 in django auth view when the backend is not found
* 2013-11-10 Matías Aguirre <[email protected]>
Remove BackendWrapper reference and set current-strategy cache to access it
* 2013-11-10 Matías Aguirre <[email protected]>
Set social_ prefix on request attribute to avoid conflicts with other apps.
Keep social attribute if not set (backward compatibility)
* 2013-11-09 Matías Aguirre <[email protected]>
Update github docs regarding callback URL. Closes #66
* 2013-11-08 yegle <[email protected]>
Mod: URL for registering Windows Live key/secret
* 2013-11-08 Matías Aguirre <[email protected]>
Fix association id. Closes #78
* 2013-11-07 Matías Aguirre <[email protected]>
Mention method used
* 2013-11-07 Matías Aguirre <[email protected]>
Typo fix
* 2013-11-07 Matías Aguirre <[email protected]>
Update middleware docs
2013-11-07 v0.1.16
==================
* 2013-11-07 Matías Aguirre <[email protected]>
v0.1.16
* 2013-11-07 Matías Aguirre <[email protected]>
Remove unused vars
* 2013-11-07 Matías Aguirre <[email protected]>
Remove or check which always default to settings.DEBUG if RAISE_EXCEPTIONS
was False
* 2013-11-07 Michal Čihař <[email protected]>
Include actions module in distribution
* 2013-11-06 Matías Aguirre <[email protected]>
Ensure IDs to openid association removal. Closes #76
* 2013-11-05 Branden Rolston <[email protected]>
Update partial from session with newer kwargs.
* 2013-11-05 Branden Rolston <[email protected]>
Use mock.
* 2013-11-05 Matías Aguirre <[email protected]>
Link to tornado docs
* 2013-11-05 Matías Aguirre <[email protected]>
Fix to douban access token retrieval method. Closes #72
* 2013-11-05 Matías Aguirre <[email protected]>
Custom user model in mongoengine example app. Refs #70
* 2013-11-05 Matías Aguirre <[email protected]>
PEP8
* 2013-11-05 Matías Aguirre <[email protected]>
Mention tornado on readme and docs intro
* 2013-11-05 Axel Haustant <[email protected]>
Talk about tox in test documentation
* 2013-11-05 Axel Haustant <[email protected]>
Upgrade HTTPretty for OSX/Requets 2.0 compatibility
* 2013-11-05 Axel Haustant <[email protected]>
Added tox configuration
* 2013-11-05 Axel Haustant <[email protected]>
quote message for url inclusion
* 2013-11-04 Branden Rolston <[email protected]>
Return the updated dict.
* 2013-11-04 Matías Aguirre <[email protected]>
v0.1.15
2013-11-04 v0.1.15
==================
* 2013-11-04 Matías Aguirre <[email protected]>
v0.1.15
* 2013-11-04 Matías Aguirre <[email protected]>
Test runkeeper backend
* 2013-11-02 Matías Aguirre <[email protected]>
PEP8 and implement missing method
* 2013-11-02 Martin Santos <[email protected]>
Removed prints
* 2013-11-02 Matías Aguirre <[email protected]>
Fixes to Tornado application (mostly cookies handling)
* 2013-11-02 Martin Santos <[email protected]>
WIP: More changes
* 2013-11-02 Martin Santos <[email protected]>
WIP: strategy and example app
* 2013-11-01 Martin Santos <[email protected]>
Initial tornado support
* 2013-10-28 Andrey Mitroshin <[email protected]>
Function user_data returns list. This leads to exception in
social/backends/oauth.py (line 340): "ValueError, dictionary update
sequence element #0 has length 31; 2 is required". Taking 1st elementt of
that list fixes the error.
* 2013-10-23 Jason Sanford <[email protected]>
Add RunKeeper.
* 2013-10-23 Matías Aguirre <[email protected]>
Fix reference
* 2013-10-23 Matías Aguirre <[email protected]>
Add missing links
* 2013-10-23 Matías Aguirre <[email protected]>
Support python3-openid last changes on Association class
* 2013-10-23 Hannes Ljungberg <[email protected]>
Make partial_pipeline JSON serializable for django 1.6
* 2013-10-15 Matías Aguirre <[email protected]>
Add missing attribute to flask storage
* 2013-10-15 Matías Aguirre <[email protected]>
Fix typo. Closes #61
* 2013-10-14 Matías Aguirre <[email protected]>
Small fixes to apfuel doc. Refs #59
* 2013-10-14 z4r <[email protected]>
Appsfuel doc from dsa to psa
* 2013-10-14 z4r <[email protected]>
Appsfuel doc from dsa to psa
* 2013-10-10 Matías Aguirre <[email protected]>
Make BackendWrapper respect backends interface. Refs #53
* 2013-10-10 Matías Aguirre <[email protected]>
Docs regarding Django 1.6 and backends enforced into
AUTHENTICATION_BACKENDS. Refs #53
* 2013-10-10 Matías Aguirre <[email protected]>
Try setting with backend name and without
* 2013-10-10 Matías Aguirre <[email protected]>
Remove backend_name property
* 2013-10-10 Matías Aguirre <[email protected]>
Fix arguments on refresh_token() method. Refs #52
* 2013-10-10 Matías Aguirre <[email protected]>
Make backend_name a property. Refs #52
* 2013-10-10 Matías Aguirre <[email protected]>
Pass the correct name to strategy setting method
* 2013-10-08 Michal Čihař <[email protected]>
Add openSUSE OpenID login
* 2013-10-08 Matías Aguirre <[email protected]>
Fix url check type. Refs #49
* 2013-10-08 Matías Aguirre <[email protected]>
PEP8 and small simplification on sanitize_url check. Refs #49
* 2013-10-08 Matías Aguirre <[email protected]>
Clean every mergedict data type
* 2013-10-08 Matías Aguirre <[email protected]>
Force dict type over response (convert mergedict types)
* 2013-10-07 Matías Aguirre <[email protected]>
Enforce dict() on values
* 2013-10-07 Daniel Barreto <[email protected]>
Check for None when `sanitize_redirect` returns in `do_complete`.
* 2013-10-07 Daniel Barreto <[email protected]>
Make `sanitize_redirect` aware of possible proxies.
2013-10-07 v0.1.14
==================
* 2013-10-07 Matías Aguirre <[email protected]>
v0.1.14
* 2013-10-07 Matías Aguirre <[email protected]>
Fix encoding string between python2 and 3
* 2013-10-07 Matías Aguirre <[email protected]>
Always wrap openid session value
* 2013-10-07 Matías Aguirre <[email protected]>
Encode value to avoid Python3 errors. Refs #776
* 2013-10-06 Matías Aguirre <[email protected]>
Google plus sign in docs
* 2013-10-06 Matías Aguirre <[email protected]>
Fix links on google docs
* 2013-10-06 Matías Aguirre <[email protected]>
Google+ Sign In backend example
* 2013-10-06 Matías Aguirre <[email protected]>
Working Google+ Sign In backend
* 2013-10-06 Matías Aguirre <[email protected]>
Move process_error() to upper class
* 2013-10-05 Matías Aguirre <[email protected]>
Enable json serializer on example app
* 2013-10-04 Markus Holtermann <[email protected]>
Fixes #45 -- AttributeError while resolving the user model in Django
* 2013-10-03 Matías Aguirre <[email protected]>
Serialize only well-known types, rename function to remark the usage. Refs
#36
* 2013-10-03 Matías Aguirre <[email protected]>
Use seconds to set session expiration. Refs #36
* 2013-10-02 Matías Aguirre <[email protected]>
Rename verification code parameter to avoid clashing with backends
parameters
* 2013-10-02 nvbn <[email protected]>
Fix work with django 1.6
* 2013-10-02 nvbn <[email protected]>
Make JSONField compatible with python 3
* 2013-10-02 Matías Aguirre <[email protected]>
Update docs regarding yahoo keys. Refs #43
* 2013-09-29 Matías Aguirre <[email protected]>
Small code changes
* 2013-09-29 Matías Aguirre <[email protected]>
Remove path from urls
* 2013-09-28 Matías Aguirre <[email protected]>
Only run tests on social/tests
* 2013-09-28 Matías Aguirre <[email protected]>
Mention pyramid in keywords
* 2013-09-28 Matías Aguirre <[email protected]>
Remove python-coveralls
* 2013-09-28 Matías Aguirre <[email protected]>
Django tests
* 2013-09-28 Matías Aguirre <[email protected]>
Move base classes to directories
* 2013-09-27 Matías Aguirre <[email protected]>
Remove dbref=True from ReferenceField. Refs #42
* 2013-09-26 Matías Aguirre <[email protected]>
Process facebook errors on complete. Refs #40
* 2013-09-24 Matías Aguirre <[email protected]>
White list setting
* 2013-09-23 Matías Aguirre <[email protected]>
Simplified django example applications
* 2013-09-23 Matías Aguirre <[email protected]>
Add mongoengine to requirements
* 2013-09-22 Matías Aguirre <[email protected]>
Mongoengine example
* 2013-09-22 Matías Aguirre <[email protected]>
Fix url for django mongoengine support, add str_id() helper
* 2013-09-22 Matías Aguirre <[email protected]>
Refactor common code on username/email backends tests
* 2013-09-22 Matías Aguirre <[email protected]>
Email backend test
* 2013-09-22 Matías Aguirre <[email protected]>
Remove print line
* 2013-09-22 Matías Aguirre <[email protected]>
Code model on tests
* 2013-09-22 Matías Aguirre <[email protected]>
build_absolute_uri test case
* 2013-09-22 Matías Aguirre <[email protected]>
Small simplification on disconnect action
* 2013-09-22 Matías Aguirre <[email protected]>
Username backend test case
* 2013-09-22 Matías Aguirre <[email protected]>
Test suite defined on setup.py
* 2013-09-22 Matías Aguirre <[email protected]>
Move tests inside the social package
* 2013-09-22 Matías Aguirre <[email protected]>
Remove coveralls
* 2013-09-22 Matías Aguirre <[email protected]>
First try with coveralls
* 2013-09-22 Matías Aguirre <[email protected]>
More badges to README.rst
* 2013-09-22 Matías Aguirre <[email protected]>
Remove python 2.5 support from setup.py
* 2013-09-22 Matías Aguirre <[email protected]>
Doc clarification
* 2013-09-22 Matías Aguirre <[email protected]>
Changelog update
2013-09-22 v0.1.13
==================
* 2013-09-22 Matías Aguirre <[email protected]>
v0.1.13
* 2013-09-22 Matías Aguirre <[email protected]>
Move common code to base class
* 2013-09-22 Matías Aguirre <[email protected]>
Small improve to email partial pipeline on example app
* 2013-09-22 Matías Aguirre <[email protected]>
Fix titles and sections on some docs
* 2013-09-22 Matías Aguirre <[email protected]>
Link to pipeline section
* 2013-09-22 Matías Aguirre <[email protected]>
Code model docs
* 2013-09-22 Matías Aguirre <[email protected]>
Move email validation docs to pipeline.rst
* 2013-09-21 Matías Aguirre <[email protected]>
Improve email validation to only validate new accounts
* 2013-09-21 Matías Aguirre <[email protected]>
Email and Username backends docs
* 2013-09-21 Matías Aguirre <[email protected]>
Docstring fix
* 2013-09-21 Matías Aguirre <[email protected]>
Username backend
* 2013-09-21 Matías Aguirre <[email protected]>
Drop password