Skip to content

Releases: requests/requests-oauthlib

v2.0.0

22 Mar 21:13
7af9125
Compare
Choose a tag to compare
Merge pull request #534 from iliakur/patch-1

Drop py2 support from the wheel

v1.3.1

29 Jan 19:00
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.3.0...v1.3.1

v1.3.0

02 Nov 07:46
Compare
Choose a tag to compare
  • Instagram compliance fix
  • Added force_querystring argument to fetch_token() method on OAuth2Session

v1.2.0

02 Nov 07:46
Compare
Choose a tag to compare
  • This project now depends on OAuthlib 3.0.0 and above. It does not support
    versions of OAuthlib before 3.0.0.
  • Updated oauth2 tests to use 'sess' for an OAuth2Session instance instead of auth
    because OAuth2Session objects and methods acceept an auth paramether which is
    typically an instance of requests.auth.HTTPBasicAuth
  • OAuth2Session.fetch_token previously tried to guess how and where to provide
    "client" and "user" credentials incorrectly. This was incompatible with some
    OAuth servers and incompatible with breaking changes in oauthlib that seek to
    correctly provide the client_id. The older implementation also did not raise
    the correct exceptions when username and password are not present on Legacy
    clients.
  • Avoid automatic netrc authentication for OAuth2Session.

v1.1.0

09 Jan 15:15
Compare
Choose a tag to compare
  • Adjusted version specifier for oauthlib dependency: this project is
    not yet compatible with oauthlib 3.0.0.
  • Dropped dependency on nose.
  • Minor changes to clean up the code and make it more readable/maintainable.

v1.0.0

04 Jun 09:11
Compare
Choose a tag to compare
  • Removed support for Python 2.6 and Python 3.3.
    This project now supports Python 2.7, and Python 3.4 and above.
  • Added several examples to the documentation.
  • Added plentymarkets compliance fix.
  • Added a token property to OAuth1Session, to match the corresponding
    token property on OAuth2Session.