forked from omab/django-social-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1880 lines (1150 loc) · 62.4 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2012-03-14 Matías Aguirre <[email protected]>
* README.rst, doc/index.rst, doc/tokens.rst,
social_auth/backends/__init__.py, social_auth/backends/twitter.py,
social_auth/models.py: Add tokens property to easilly access tokens per
backend. Closes #290
2012-03-13 Matías Aguirre <[email protected]>
* ChangeLog: ChangeLog update
* social_auth/backends/pipeline/associate.py: Check setting with default
value that makes sense. Closes #289
* social_auth/__init__.py: v0.6.7
2012-03-12 Janez Stupar <[email protected]>
* social_auth/views.py: Transfer redirect parameter (?next=) into new
session. May come handy in our next view.
2012-03-09 Matías Aguirre <[email protected]>
* social_auth/backends/google.py: Rename var. Refs #284
2012-03-09 Keiko Oda <[email protected]>
* social_auth/backends/google.py: add a function that gets name, given_name,
family_name and add to user_details from google OAuth2
2012-03-05 Michael Armida <[email protected]>
* social_auth/backends/__init__.py: make BaseOAuth2 behave like
ConsumerBasedOAuth when requesting an access token leads to a HTTP 400;
previously it lead to an unhandled exception, although I don't know that
"Authentication process canceled" is much better
2012-03-03 Matías Aguirre <[email protected]>
* ChangeLog: Added changelog generated from git log
* social_auth/backends/__init__.py: Only load defined (and enabled) backends.
Closes #277.
2012-03-01 Matías Aguirre <[email protected]>
* social_auth/tests/google.py: PEP8
* contrib/tests/runtests.py, contrib/tests/test_core.py, doc/conf.py,
example/app/models.py, example/app/pipeline.py, example/app/views.py,
example/manage.py, setup.py, social_auth/backends/__init__.py,
social_auth/backends/contrib/fitbit.py,
social_auth/backends/contrib/foursquare.py,
social_auth/backends/contrib/gae.py, social_auth/backends/contrib/github.py,
social_auth/backends/contrib/instagram.py, social_auth/backends/facebook.py,
social_auth/backends/google.py, social_auth/context_processors.py,
social_auth/signals.py, social_auth/store.py, social_auth/tests/facebook.py,
social_auth/tests/google.py, social_auth/utils.py, social_auth/views.py: PEP8
* README.rst, doc/configuration.rst, doc/miscellaneous.rst, doc/testing.rst,
social_auth/backends/__init__.py, social_auth/backends/browserid.py,
social_auth/backends/contrib/gae.py, social_auth/backends/contrib/github.py,
social_auth/backends/contrib/livejournal.py,
social_auth/backends/exceptions.py, social_auth/backends/facebook.py,
social_auth/backends/google.py, social_auth/backends/pipeline/associate.py,
social_auth/backends/pipeline/social.py, social_auth/backends/twitter.py,
social_auth/utils.py, social_auth/views.py: Differentiate exceptions raised.
Closes #119. Refs #175
2012-02-29 Matías Aguirre <[email protected]>
* README.rst, doc/configuration.rst: Remove deprecated setting from docs.
Refs #175.
2012-02-29 Adam McKerlie <[email protected]>
* social_auth/backends/contrib/flickr.py: Typo
2012-02-26 Matías Aguirre <[email protected]>
* social_auth/backends/__init__.py, social_auth/utils.py,
social_auth/views.py: Clean partial pipeline before auth process begins. Refs
#271
* .gitignore: Ignore test databases
* social_auth/backends/__init__.py, social_auth/backends/pipeline/misc.py,
social_auth/views.py: Clean partial pipeline on Stop exception. Closes #271
2012-02-24 Matías Aguirre <[email protected]>
* social_auth/backends/contrib/gae.py, social_auth/backends/gae.py: Move
GoogleAppEngine backend to contrib and apply pep8. Refs #258.
* social_auth/backends/contrib/fitbit.py: PEP8 and use dsa setting util
2012-02-24 Larry Price <[email protected]>
* social_auth/backends/contrib/fitbit.py: replaced with a version based on
the flickr backend. Works for basic functionality.
2012-02-24 Seyi Ogunyemi <[email protected]>
* doc/configuration.rst: Update doc/configuration.rst
* README.rst: Remove reference to deprecated SOCIAL_AUTH_USERNAME_FIXER.
2012-02-23 tschmidt <[email protected]>
* doc/backends/google.rst, social_auth/backends/google.py: added
GOOGLE_WHITE_LISTED_EMAILS setting and updated docs
2012-02-22 Matías Aguirre <[email protected]>
* social_auth/views.py: Add missing argument.
* README.rst, doc/configuration.rst, social_auth/views.py: Inicial per
backend settings, just URLs so far.
* social_auth/utils.py, social_auth/views.py: Per backend-settings option.
2012-02-21 Matías Aguirre <[email protected]>
* README.rst, doc/miscellaneous.rst: Google group. Closes #263
2012-02-20 Larry Price <[email protected]>
* social_auth/backends/contrib/fitbit.py: Added the fitbit.py which started
off as a clone of the github interface. current status: NOT FUNCTIONAL YET
Trying to debug.
2012-02-20 tschmidt <[email protected]>
* doc/backends/google.rst, social_auth/backends/google.py: added
GOOGLE_WHITE_LISTED_DOMAINS setting to Google OAuth, updated documentation
2012-02-20 Matías Aguirre <[email protected]>
* social_auth/backends/__init__.py: Catch OAuth 400 response when user denies
access. Closes #260
2012-02-19 User <[email protected]>
* social_auth/backends/gae.py: change name to google-appengine to match some
of the other backends. make sure we don't get redirected from our auth_url.
2012-02-18 Derrick Petzold <[email protected]>
* social_auth/views.py: If the user was already logged in they would not be
redirected to the corrent url if it was overriden in the session.
2012-02-18 User <[email protected]>
* social_auth/backends/gae.py: Get GAE backend working properly.
2012-02-17 User <[email protected]>
* social_auth/backends/gae.py: Add a social_auth wrapper backend around the
Google App Engine User API.
2012-02-16 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.6.6
* social_auth/backends/browserid.py, social_auth/backends/contrib/github.py,
social_auth/backends/facebook.py: Add missing 'auth' arguments before
authenticate. Refs #255
* README.rst, doc/configuration.rst: Remove old doc
2012-02-16 Johannes Holmberg <[email protected]>
* social_auth/backends/pipeline/misc.py: Use list.index instead of
tuple.index to regain compatibility with Python 2.5
* social_auth/backends/pipeline/misc.py: Add own tuple_index function to stay
compatible with python 2.5
2012-02-15 Matías Aguirre <[email protected]>
* social_auth/backends/pipeline/user.py: Overrideable user check for
get_username pipeline. Refs #253
* social_auth/backends/__init__.py, social_auth/utils.py: Save model
instances into session in a easy format to retrieve it later. Refs #251
2012-02-14 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.6.5
* social_auth/backends/__init__.py, social_auth/backends/pipeline/misc.py,
social_auth/views.py: Improve and fix partial pipeline arguments management.
Closes #251
2012-02-14 Jannis Leidel <[email protected]>
* README.rst: Fixed formatting of README file to correctly render as rST on
PyPI.
2012-02-14 Matías Aguirre <[email protected]>
* README.rst, doc/pipeline.rst: Styling
* README.rst, doc/configuration.rst, social_auth/views.py: Raise exceptions
setting. Closes #248.
* social_auth/__init__.py: v0.6.4
* social_auth/backends/yahoo.py: Change Yahoo OpenID URL. Closes #249
2012-02-13 Matías Aguirre <[email protected]>
* README.rst, doc/pipeline.rst: Doc fix
2012-02-12 Matías Aguirre <[email protected]>
* README.rst, doc/backends/index.rst, doc/backends/instagram.rst,
social_auth/backends/contrib/instagram.py: Instagram doc and small code
styling. Refs #247
2012-02-12 Ravi Kotecha <[email protected]>
* .gitignore, README.rst, example/settings.py,
social_auth/backends/contrib/instagram.py: Add Instagram support
2012-02-11 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.6.3
* README.rst, doc/backends/browserid.rst, doc/configuration.rst,
doc/miscellaneous.rst, doc/use_cases.rst, example/settings.py,
example/templates/base.html, example/templates/done.html,
example/templates/home.html, social_auth/backends/__init__.py,
social_auth/backends/browserid.py: BrowserID support. Closes #228
2012-02-10 Matías Aguirre <[email protected]>
* doc/index.rst: Remove repeated section
2012-02-09 Matías Aguirre <[email protected]>
* social_auth/backends/facebook.py: Protect dict access. Closes #246
* README.rst, doc/index.rst, doc/use_cases.rst: Use cases doc section. Closes
#239
* README.rst, doc/configuration.rst: More ReST fixes
* README.rst, doc/configuration.rst: ReST fixes
* README.rst, doc/configuration.rst, social_auth/context_processors.py,
social_auth/utils.py: Context processor improvements on code and doc. Closes
#245
* social_auth/backends/twitter.py: Check for denied access on twitter
backend.
* social_auth/backends/__init__.py,
social_auth/backends/contrib/foursquare.py,
social_auth/backends/contrib/github.py,
social_auth/backends/contrib/linkedin.py,
social_auth/backends/contrib/livejournal.py,
social_auth/backends/contrib/orkut.py, social_auth/backends/facebook.py,
social_auth/backends/google.py, social_auth/backends/twitter.py,
social_auth/backends/yahoo.py, social_auth/utils.py, social_auth/views.py:
Improve logging. Closes #244
2012-02-08 Johannes Holmberg <[email protected]>
* social_auth/backends/__init__.py: Add a BACKENDS dictionary for the basic
OpenID backend, allowing it to be discovered by get_backends.
* social_auth/backends/__init__.py: Rename the BACKENDS cache to keep
get_backends from discovering it.
2012-02-07 Matías Aguirre <[email protected]>
* README.rst, doc/backends/github.rst: Small clarification about github conf.
Refs #241
2012-02-06 Matías Aguirre <[email protected]>
* social_auth/views.py: Simplfy code
* README.rst, doc/configuration.rst, social_auth/backends/__init__.py: Extra
arguments for request-token process. Closes #235
* social_auth/backends/google.py: PEP8
* README.rst, doc/pipeline.rst: Line number
* README.rst, doc/pipeline.rst, example/app/pipeline.py,
example/app/views.py, example/local_settings.py.template,
example/templates/form.html, example/urls.py,
social_auth/backends/__init__.py, social_auth/backends/google.py,
social_auth/backends/pipeline/__init__.py,
social_auth/backends/pipeline/misc.py, social_auth/urls.py,
social_auth/views.py: Partial pipeline. Refs #90
2012-02-05 Matías Aguirre <[email protected]>
* README.rst, doc/deprecated.rst, doc/index.rst, doc/pipeline.rst: Deprecated
settings doc
* social_auth/__init__.py: v0.6.2
* README.rst, doc/index.rst, doc/intro.rst, doc/pipeline.rst,
social_auth/backends/__init__.py: Pipeline doc
2012-02-04 Matías Aguirre <[email protected]>
* social_auth/backends/__init__.py, social_auth/backends/contrib/dropbox.py,
social_auth/backends/contrib/flickr.py,
social_auth/backends/contrib/github.py,
social_auth/backends/contrib/linkedin.py,
social_auth/backends/contrib/orkut.py, social_auth/backends/facebook.py,
social_auth/backends/google.py, social_auth/backends/pipeline/associate.py,
social_auth/backends/pipeline/social.py,
social_auth/backends/pipeline/user.py, social_auth/models.py,
social_auth/tests/__init__.py, social_auth/tests/facebook.py,
social_auth/tests/google.py, social_auth/tests/twitter.py,
social_auth/views.py: Improve settings values gathering
2012-02-01 Matías Aguirre <[email protected]>
* social_auth/backends/__init__.py: PEP8
2012-02-01 Andjelko Horvat <[email protected]>
* social_auth/backends/__init__.py: Do not sign OAuth authorization request
(see http://tools.ietf.org/html/rfc5849#page-10).
2012-01-22 Matías Aguirre <[email protected]>
* social_auth/views.py: Remove space
2012-01-21 Matías Aguirre <[email protected]>
* LICENSE: Update license
2012-01-20 Matías Aguirre <[email protected]>
* README.rst, doc/configuration.rst: Doc about django auth backend. Refs #154
2012-01-20 Alexander Todorov <[email protected]>
* Makefile, django-social-auth.spec: add .spec file and Makefile to build RPM
package
2012-01-20 Matías Aguirre <[email protected]>
* social_auth/views.py: Use get instead of pop to get redirect value from
session. Refs #192
* social_auth/views.py: Get '?next=' value before the session is trashed.
Refs #221
2012-01-20 yekibud <[email protected]>
* doc/backends/google.rst, social_auth/backends/google.py: added GOOGLE_
prefix to WHITE_LISTED_DOMAINS setting
2012-01-18 Riccardo Magliocchetti <[email protected]>
* README.rst: README.rst: Remove reference to south introspection for
JSONField Since https://github.com/omab/django-social-auth/pull/57 the code
has been added to fields.py so no need to mention it in the README.
2012-01-17 tschmidt <[email protected]>
* doc/backends/google.rst, social_auth/backends/google.py: changed Google
OpenID WHITE_LISTED_DOMAINS setting to only check strings and added
documentation
2012-01-16 tschmidt <[email protected]>
* social_auth/backends/google.py: fixed WHITE_LISTED_DOMAINS default setting
and exception handling
2012-01-16 tschmidt <none@none>
* social_auth/backends/google.py: restrict google login by white-listed
domains
2012-01-10 Sid Mitra <[email protected]>
* social_auth/backends/__init__.py: Passing request instance to pipeline
methods.
2012-01-09 Andres Villavicencio <[email protected]>
* social_auth/backends/__init__.py: Using dict.get to avoid KeyError
2012-01-09 Matías Aguirre <[email protected]>
* social_auth/backends/pipeline/user.py: Avoid override of id/pk attributes
with service provided data. Closes #217
2012-01-09 Andres Villavicencio <[email protected]>
* social_auth/backends/__init__.py: Fix to make
SOCIAL_AUTH_NEW_USER_REDIRECT_URL work
2012-01-02 Ravi Kotecha <[email protected]>
* social_auth/backends/contrib/foursquare.py: Fix for backend breaking with
"KeyError('lastName')" if foursquare user doesn't have a lastName set.
2011-12-30 Matías Aguirre <[email protected]>
* social_auth/backends/__init__.py, social_auth/backends/contrib/dropbox.py,
social_auth/backends/contrib/flickr.py,
social_auth/backends/contrib/foursquare.py,
social_auth/backends/contrib/github.py,
social_auth/backends/contrib/livejournal.py,
social_auth/backends/contrib/orkut.py,
social_auth/backends/pipeline/social.py,
social_auth/backends/pipeline/user.py: Small PEP8 fixes and import orders
* social_auth/backends/__init__.py, social_auth/views.py: Pipeline call
cleanups
2011-12-29 Stephen McDonald <[email protected]>
* social_auth/backends/__init__.py, social_auth/context_processors.py,
social_auth/utils.py: Refactored loading of BACKENDS to provide a proper
entry point (get_backends) responsible for populating BACKENDS where
required.
* social_auth/context_processors.py: Cleaned up whitespace.
2011-12-28 Matías Aguirre <[email protected]>
* social_auth/tests/twitter.py: Remove pdb line
2011-12-27 Matías Aguirre <[email protected]>
* doc/configuration.rst: Doc fixes
2011-12-25 Alexey Kinyov <[email protected]>
* LICENCE, LICENCE.django-openid-auth, LICENSE, LICENSE.django-openid-auth,
README.rst: * renames: LICENCE -> LICENSE, LICENCE.django-openid-auth ->
LICENSE.django-openid-auth * chapter on basic usage added to README.rst
2011-12-25 Stephen McDonald <[email protected]>
* README.rst, doc/configuration.rst: Fixed a docs typo.
* example/settings.py, example/social_auth: Remove duplicate package from the
example app and load it from the parent path in the settings module.
* social_auth/tests/base.py, social_auth/tests/facebook.py,
social_auth/tests/google.py, social_auth/tests/twitter.py: Added testing for
cached backend loading.
* README.rst, doc/configuration.rst: Removed SOCIAL_AUTH_IMPORT_BACKENDS from
docs as its deprecated.
* social_auth/backends/__init__.py: Refactored backend loading to avoid a
race condition. Fixes #204
2011-12-22 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.6.1
* social_auth/backends/__init__.py, social_auth/backends/google.py: Fix
google oauth athorization request. Closes #202.
2011-12-21 Tim Richardson <[email protected]>
* social_auth/backends/__init__.py: Since "Google-Oauth2" is called precisely
that and we want to use "GOOGLE_OAUTH2_AUTH_EXTRA_ARGUMENTS = {'access_type':
'offline'}" in our settings we must replace "-" with "_"
2011-12-18 Matías Aguirre <[email protected]>
* social_auth/backends/facebook.py: Fix log parameters
* social_auth/backends/facebook.py: Remove extra line
* README.rst, doc/configuration.rst, social_auth/views.py: Difference
active/inactive users on complete process. Closes #197
2011-12-15 Youngrok pak <[email protected]>
* social_auth/views.py: read redirect field value from session before login()
will flush session
2011-12-13 Daniel Greenfeld <[email protected]>
* doc/conf.py: Bump the version in Sphinx to match the released version. This
is confusing me! ;)
2011-12-06 Przemek Lewandowski <[email protected]>
* social_auth/backends/facebook.py: Unnecessary set django username as
facebook full name.
2011-12-03 Sandeep <[email protected]>
* social_auth/views.py: Patch for login error message.
2011-11-24 Przemek Lewandowski <[email protected]>
* social_auth/backends/__init__.py: Fixed is_new user flag from pipelines to
complete_process view helper.
2011-11-18 Matías Aguirre <[email protected]>
* social_auth/backends/pipeline/user.py: That was dumb. Fixes #182
2011-11-18 Steven Van Bael <[email protected]>
* social_auth/backends/__init__.py: Override get_user() in SocialAuthBackend
so it supports returning users from a custom user model
2011-11-17 Matías Aguirre <[email protected]>
* social_auth/fields.py: Use str(e) to get exception message. Refs gh-176
2011-11-15 Matías Aguirre <[email protected]>
* social_auth/fields.py: Fix JSONField rendering on admin section. Closes
gh-176
2011-11-14 Matías Aguirre <[email protected]>
* social_auth/backends/__init__.py: Don't incude OpenId backend if disabled.
Closes gh-179
2011-10-31 Matías Aguirre <[email protected]>
* social_auth/backends/facebook.py: Code cleanup
2011-10-29 Matías Aguirre <[email protected]>
* social_auth/backends/google.py: PEP8
2011-10-29 mlavin <[email protected]>
* social_auth/backends/google.py: Don't set xoauth_displayname for registered
Google OAuth applications. Refs #156.
2011-10-28 Matías Aguirre <[email protected]>
* social_auth/backends/pipeline/social.py: Return User to avoid garbage user
creation. Closes gh-169
2011-10-25 Matías Aguirre <[email protected]>
* social_auth/backends/pipeline/user.py: PyLint
* example/settings.py, social_auth/backends/contrib/flickr.py: Fix Flickr
attribute getter
* social_auth/backends/contrib/flickr.py: PyLint
2011-10-22 Matías Aguirre <[email protected]>
* social_auth/backends/__init__.py: Fix syntax error
2011-10-21 Matías Aguirre <[email protected]>
* social_auth/fields.py: South migration code for JSONField. Refs gh-57
2011-10-18 Matías Aguirre <[email protected]>
* social_auth/backends/__init__.py, social_auth/utils.py,
social_auth/views.py: Clean imports
2011-10-18 Luis Nell <[email protected]>
* setup.py: Add new non-magical pipeline to setup.py
2011-10-17 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.6.0
* social_auth/backends/pipeline/__init__.py,
social_auth/backends/pipeline/associate.py,
social_auth/backends/pipeline/social.py,
social_auth/backends/pipeline/user.py: Issue warnings for deprecated
settings. Refs gh-90
* social_auth/backends/__init__.py: Remove debug code. Refs gh-90
* example/settings.py, social_auth/backends/__init__.py,
social_auth/backends/exceptions.py,
social_auth/backends/pipeline/__init__.py,
social_auth/backends/pipeline/associate.py,
social_auth/backends/pipeline/social.py,
social_auth/backends/pipeline/user.py, social_auth/views.py: Pipeline. Refs
gh-90
2011-10-10 Daniel G. Taylor <[email protected]>
* social_auth/backends/contrib/flickr.py: Fix Dropbox references to say
Flickr instead.
2011-10-10 Daniel G. Taylor <[email protected]>
* README.rst: Update contributors in README
* social_auth/context_processors.py: Add context processor to access social
auth information by backend name, useful to easily provide backend-specific
functionality in your app by checking e.g. social_auth.facebook and allowing
the user to publish to Facebook if it exists.
* README.rst, social_auth/backends/contrib/flickr.py: Add Flickr backend
2011-10-06 Daniel G. Taylor <[email protected]>
* social_auth/backends/contrib/dropbox.py: Remove unneeded print statement
* README.rst: Fix typo
* README.rst, social_auth/backends/contrib/dropbox.py: Add support for
Dropbox OAuth so that users can associate their account with Dropbox and
allow getting / putting files easily
2011-09-27 Matías Aguirre <[email protected]>
* README.rst, doc/configuration.rst: Fix docs. Closes gh-149
2011-09-26 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.5.13
* social_auth/backends/__init__.py, social_auth/backends/facebook.py: Migrate
Facebook to OAuth2. Closes gh-134
2011-09-19 Matías Aguirre <[email protected]>
* social_auth/backends/twitter.py: Fix twitter first_name/last_name filling.
Closes gh-146
* social_auth/models.py, social_auth/views.py: Remove ERROR_KEY/NAME_KEY
2011-09-19 Mathijs de Bruin <[email protected]>
* social_auth/backends/facebook.py: Even more detailed logging of fetched
user data.
* social_auth/backends/__init__.py: Whoops.
* social_auth/utils.py: Beware of cyclical imports!
* social_auth/backends/__init__.py: Some more logging.
* social_auth/views.py: Get rid of session logging (?) and replaced by proper
Python error logging, including request data (so Sentry knows what to do with
it).
* social_auth/backends/facebook.py: Whoops in FB logging patch.
* social_auth/backends/__init__.py, social_auth/backends/facebook.py: Some
exception logging, making debugging easier.
* social_auth/utils.py: Helper function for 'clean' logging of data.
* social_auth/backends/__init__.py,
social_auth/backends/contrib/foursquare.py,
social_auth/backends/contrib/github.py,
social_auth/backends/contrib/linkedin.py,
social_auth/backends/contrib/livejournal.py,
social_auth/backends/contrib/orkut.py, social_auth/backends/facebook.py,
social_auth/backends/google.py, social_auth/backends/twitter.py,
social_auth/backends/yahoo.py, social_auth/views.py: Make a named logger
available everywhere we might need it.
2011-09-16 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.5.12
* social_auth/views.py: Additional params to complete view
* social_auth/backends/__init__.py: Define sender
* social_auth/__init__.py: v0.5.11
* social_auth/backends/__init__.py, social_auth/signals.py: Send signal for
cases where tracking failed registering is needed
* social_auth/backends/__init__.py, social_auth/views.py: Allow views to pass
extra parameters to authentication backends
2011-09-15 George Dorn <[email protected]>
* social_auth/urls.py: Don't assume that the association_id (actually, user
id) is a number.
2011-09-12 Matías Aguirre <[email protected]>
* README.rst, doc/miscellaneous.rst: Fix link reference
2011-09-11 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.5.10
2011-09-09 Matías Aguirre <[email protected]>
* README.rst, doc/miscellaneous.rst: Mention
http://djangopackages.com/grids/g/social-auth-backends/ in docs
2011-09-08 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.5.9
* social_auth/views.py: Leave exception handling to decorator
2011-09-07 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.5.8
2011-09-06 Matías Aguirre <[email protected]>
* README.rst, doc/configuration.rst, social_auth/views.py: Switch for
sanitize redirect call
2011-08-29 Matías Aguirre <[email protected]>
* social_auth/context_processors.py: Fix error on context processor. Closes
gh-137.
* example/app/views.py, example/templates/error.html, social_auth/views.py:
Use messages framework if available. Refs gh-136
* social_auth/views.py: Improve error handling. Closes gh-136
2011-08-29 Marco Monaco <[email protected]>
* social_auth/views.py: removed logging
* social_auth/views.py: modified the exception handling to be more uniform
with social_auth
2011-08-28 Matías Aguirre <[email protected]>
* social_auth/backends/contrib/github.py: Use blank string if no email.
Closes gh-135
2011-08-26 Marco Monaco <[email protected]>
* social_auth/views.py: if a backend crashes the exception is catched, logged
and the user is redirected to a specific error page
2011-08-25 Matías Aguirre <[email protected]>
* README.rst, doc/backends/google.rst, doc/configuration.rst,
example/local_settings.py.template, social_auth/backends/google.py: Rename
GOOGLE_OAUTH2_CLIENT_KEY to GOOGLE_OAUTH2_CLIENT_ID, keep backward
compatibility name. Closes gh-133
* README.rst, doc/backends/google.rst: Doc fix
* social_auth/__init__.py: v0.5.7
* social_auth/backends/__init__.py: Protect for possible race condition. Refs
#131
2011-08-24 Matías Aguirre <[email protected]>
* README.rst, doc/configuration.rst, social_auth/backends/__init__.py,
social_auth/backends/contrib/github.py, social_auth/backends/facebook.py: Add
setting to define extra arguments that should be sent to providers
* social_auth/backends/facebook.py: Style for items
* social_auth/backends/facebook.py: Reduce indentation
2011-08-23 Mike Zupan <[email protected]>
* README.rst: error in the readme.. should be foursquare not orkut for the
FoursquareBackend
2011-08-22 Matías Aguirre <[email protected]>
* social_auth/models.py: Remove fields and methods check for custom user
models. Closes gh-126
2011-08-22 revolunet <[email protected]>
* social_auth/backends/contrib/github.py: fix typo first_name
2011-08-22 Matías Aguirre <[email protected]>
* README.rst, doc/backends/github.rst, doc/backends/index.rst,
social_auth/backends/contrib/github.py: Small changes to github backend doc
and code. Refs #122
2011-08-21 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.5.6
* social_auth/backends/__init__.py: Fix user details update
2011-08-19 revolunet <[email protected]>
* README.rst: README update for github
* README.rst, example/local_settings.py.template,
social_auth/backends/contrib/github.py: add github OAuth backend fix #122
2011-07-25 Cassus Adam Banko <[email protected]>
* social_auth/tests/__init__.py: settings options to control which tests to
run SOCIAL_AUTH_TEST_TWITTER, SOCIAL_AUTH_TEST_GOOGLE,
SOCIAL_AUTH_TEST_FACEBOOK
2011-07-26 Cassus Adam Banko <[email protected]>
* social_auth/backends/facebook.py: switch to urllib2 urlopen - the old one
blocked for a long time
2011-08-16 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.5.5
* social_auth/views.py: Do not use current user when completing /login/
process. Closes gh-107
2011-08-13 Michael Bashkirov <[email protected]>
* social_auth/backends/__init__.py: Fixed bug in OpenIDBackend.extra_data()
2011-07-11 Lior Sion <[email protected]>
* README.rst: slight readme change to avoid confusion
2011-08-14 Matías Aguirre <[email protected]>
* README.rst, doc/configuration.rst: Mention URL names prefix in doc. Refs
gh-115
* social_auth/__init__.py: v0.5.4
* social_auth/backends/__init__.py: Avoid updating with empty values. Closes
gh-111
* social_auth/__init__.py: v0.5.3
* social_auth/views.py: Remove more lame prints
* social_auth/__init__.py: v0.5.2
* social_auth/context_processors.py: Remove lame print :-/
* social_auth/__init__.py: v0.5.1
* README.rst, doc/configuration.rst: Document context processors. Refs gh-113
* example/app/views.py, example/settings.py, example/templates/done.html,
example/templates/home.html: Make use of context processors on example app.
Refs gh-113
* social_auth/context_processors.py, social_auth/utils.py: SocialAuth context
processors. Closes gh-113
* README.rst, doc/configuration.rst, example/settings.py,
social_auth/backends/__init__.py: Add setting to control enabled backends.
Closes gh-112
* social_auth/views.py: Decorate views to retrieve backend or return http
error if not correct. Closes gh-116
* social_auth/__init__.py: v0.5.0
* social_auth/backends/google.py: Use primary email as user ID for Google
OpenId. Closes gh-117
2011-07-17 Matías Aguirre <[email protected]>
* social_auth/views.py: Avoid csrf check on complete views in case provider
uses POST and doesn't send CSRF token. Refs gh-67
2011-07-16 Matías Aguirre <[email protected]>
* social_auth/backends/__init__.py: Use details username only if it's
non-blank. Closes gh-104
2011-07-14 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.4.2
* social_auth/backends/__init__.py, social_auth/views.py: Refactor repeated
code. Refs gh-102
2011-07-14 Siddharth Mitra <[email protected]>
* social_auth/views.py: Adding exception handling for Value Error: Account
already in use, in view.associate_complete
2011-07-11 Matías Aguirre <[email protected]>
* social_auth/backends/__init__.py: Change data loading order to be more
useful when signals are called. Refs gh-99
* social_auth/__init__.py: v0.4.1
* social_auth/views.py: Fix association redirect URL bug
2011-07-10 Matías Aguirre <[email protected]>
* example/local_settings.py.template: Misspell
* example/local_settings.py.template: Fix URL name in example settings.
Closes gh-101
2011-07-03 Matías Aguirre <[email protected]>
* example/app/views.py, example/templates/done.html,
example/templates/home.html: Dynamic backend list on example app
* social_auth/__init__.py: v0.4.0
* example/templates/done.html, example/templates/home.html,
social_auth/tests/facebook.py, social_auth/tests/google.py,
social_auth/tests/twitter.py, social_auth/urls.py, social_auth/views.py:
Non-backward compatible URL name changes. Closes gh-95
* social_auth/views.py: Redirect new users to properly. Closes gh-98
2011-06-29 Matías Aguirre <[email protected]>
* README.rst, doc/configuration.rst, social_auth/views.py: Association and
Disconnect custom URLs
* README.rst, doc/configuration.rst, social_auth/views.py: Associationd and
Disconnect custom URLs
2011-06-21 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.3.20
* social_auth/backends/contrib/linkedin.py: Fix linkedin data processing.
Closes #91
* README.rst, doc/miscellaneous.rst: Add import note to warn about recursive
import case
* example/app/views.py, example/templates/done.html,
social_auth/backends/__init__.py, social_auth/urls.py: Rename disconnect
individual view and simplify example done view. Refs #85.
* social_auth/backends/contrib/livejournal.py: Correct exception
initialization
* social_auth/backends/facebook.py: Use facebook username if present in
response. Closes gh-83
* social_auth/views.py: Move some settings to the top
2011-06-20 Matías Aguirre <[email protected]>
* social_auth/backends/__init__.py: Force username field limit when
generating username. Closes gh-93
2011-06-20 Flavio Curella <[email protected]>
* social_auth/views.py: fixes an UnboundLocalError that occours when
SOCIAL_AUTH_SESSION_EXPIRATION is set to False
2011-06-13 Rohan Jain <[email protected]>
* example/settings.py: Redirect to / on login Prevent 404 for profile page
by redirecting to '/' page always on login.
* social_auth/backends/__init__.py, social_auth/urls.py,
social_auth/views.py: Disconnect accounts by associations. Fix gh-#85 Add
url for disconnecting by individual association. Allow association id as arg
when dissociating. This does not add any backward compatibility issues.
2011-06-03 Matías Aguirre <[email protected]>
* README.rst: Link to Read the Docs documentation
* social_auth/__init__.py: v0.3.19
* README.rst, doc/configuration.rst, social_auth/backends/__init__.py,
social_auth/views.py: Add redirect url for newly created users. Closes gh-47
2011-06-02 Matías Aguirre <[email protected]>
* social_auth/__init__.py: v0.3.18
* README.rst, doc/backends/facebook.rst, doc/backends/google.rst,
doc/backends/oauth.rst, doc/backends/openid.rst, doc/backends/twitter.rst,
doc/configuration.rst, doc/demo.rst, doc/installing.rst, doc/signals.rst,
doc/testing.rst: Docs small improvements
* README.rst, doc/backends/index.rst, doc/backends/linkedin.rst,
social_auth/backends/contrib/linkedin.py: Add linkedin fields selector
support
2011-05-30 Matías Aguirre <[email protected]>
* social_auth/models.py: Properly split custom user string for get_model
usage. Closes gh-80