All Versions
15
Latest Version
Avg Release Cycle
181 days
Latest Release
1583 days ago

Changelog History
Page 1

  • v1.0.0 Changes

    November 27, 2019

    Miscellaneous:

    
    - ๐Ÿ”– Version 1.0.0 released.
    
  • v1.0.0.a11 Changes

    November 27, 2019

    Miscellaneous:

    
    - ๐Ÿš€ Switch to tag-based releases.
    
  • v1.0.0.a10 Changes

    November 26, 2019

    ๐Ÿ’ฅ Breaking changes:

    
    - โœ‚ Removed support for :attr:`gender`, :attr:`link` and :attr:`birth_date` from :class:`.oauth2.Google` provider.
    - โœ‚ Removed ::attr:`User.location` in the class:`.oauth2.LinkedIn` provider.
    
    
    ๐Ÿ†• New features:
    ~~~~~~~~~~~~~
    
    - โž• Added support for :attr:`.User.city`, updated :attr:`.User.country` in the class:`.oauth2.LinkedIn` provider.
    - โž• Added support for :attr:`.User.email` to the :class:`.oauth1.Bitbucket` provider.
    - Added support for :attr:`email_verified` and :attr:`hosted_domain` to :class:`.oauth2.Google` provider.
    - ๐Ÿ‘Œ Support passing of user state in oauth2 to support variable redirect urls.
    - โž• Added support for :attr:`.User.country` and :attr:`.User.city` to :class: `oauth1.Twitter` provider.
    - โž• Add :attr:`.email` to :class:`oauth1.Twitter` provider.
    
    
    ๐Ÿ› Bug fixes:
    ~~~~~~~~~~
    
    - 0๏ธโƒฃ Adjusted naming of default scope for :class:`.oauth2.Facebook` to Facebook v2 API.
    - ๐Ÿ›  Fix #130: explicitly request fields from Facebook.
    - ๐Ÿ›  Fix #160: Handle token_type of bearer (lower-case).
    - The :class:`.oauth2.Google` provider now uses
      ``https://www.googleapis.com/oauth2/v3/userinfo?alt=json`` as the ``user_info_url``
      instead of the deprecated ``https://www.googleapis.com/plus/v1/people/me``.
    - ๐Ÿ›  Fix Twitter user info endpoint to include image url.
    
    
    ๐Ÿ“š Documentation:
    ~~~~~~~~~~~~~~
    
    - Do not include Google Appengine 1st generation modules.
    - ๐Ÿ— Simplify build and add ``build_docs.sh`` script.
        Overall cleanup: No more submodules, update foundation theme and more.
    
    
    Miscellaneous:
    ~~~~~~~~~~~~~~
    
    - ๐Ÿš€ Release-preparations:
      Do not include tests, examples and doc in egg/wheel;
      fix travis, add auto-deploy for PyPI and docs;
      enhance internal package setup, overall cleanup and update metdadata.
    
  • v0.2.0.a3

    November 26, 2019
  • v0.2.0.a2

    November 26, 2019
  • v0.2.0.a1

    November 25, 2019
  • v0.1.0 Changes

    July 01, 2015
    • Introduced the :attr:.User.access_token_response attribute.
    • โž• Added support for :attr:.User.email and :attr:.User.link to the :class:.oauth1.Plurk provider.
    • The :class:.oauth1.Flickr provider doesn't make the redundant API call during :meth:.oauth1.Flickr.update_user anymore.
    • โœ‚ Removed support for :attr:.User.birth_date and :attr:.User.gender from the :class:.oauth1.Yahoo provider.
    • โž• Added the :attr:.User.location attribute.
    • โœ‚ Removed support for :attr:.User.country and :attr:.User.city from :class:.oauth1.Twitter and :class:.oauth2.GitHub providers.
    • โœ‚ Removed support for :attr:.User.link and :attr:.User.picture from :class:.oauth1.Tumbler provider.
    • โœ‚ Removed support for :attr:.User.username and added support for :attr:.User.birth_date to :class:.oauth2.Facebook provider.
    • :class:.oauth2.Facebook provider now uses v2 api for user info request.
    • Removed the r_fullprofile and r_fullprofile scopes from :attr:.oauth2.LinkedIn.user_info_scope due to the Developer Program Transition <https://developer.linkedin.com/support/ developer-program-transition>__ and as a consequence removed support for :attr:.User.birth_date and :attr:.User.phone.
  • v0.0.13 Changes

    April 15, 2015
    • โœ‚ Removed logging of response body in the :meth:.providers.AuthorizationProvider.access() method.
    • ๐Ÿ›  Fixed an error in :class:.oauth2.Google when the access token request resulted in an OAuth 2 parameters can only have a single value: client_secret error.
  • v0.0.12 Changes

    April 07, 2015
    • Fixed import errors of the six module.
    • ๐Ÿ›  Fixed an bug when decoding binary provider response resulted in an error.
    • ๐Ÿ‘Œ Improved handling of ambiguous user location by some providers. Introduced the :class:.User.location attribute.
  • v0.0.11 Changes

    March 28, 2015
    • Added Python 3.x support thanks to Emmanuel Leblond <https://github.com/touilleMan>__.
    • ๐Ÿ›  Fixed a bug when :class:.authomatic.Response could not be decoded.
    • ๐Ÿ‘ The :class:.oauth2.Foursquare provider now supports :attr:.User.birth_date.