2024-04-05 12:57:33 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
py-requests-oauthlib: update to 2.0.0.
v2.0.0 (22 March 2024)
++++++++++++++++++++++++
Full set of changes are in \
[github](https://github.com/requests/requests-oauthlib/milestone/4?closed=1).
Additions & changes:
- ``OAuth2Session`` now correctly uses the ``self.verify`` value if ``verify``
is not overridden in ``fetch_token`` and ``refresh_token``. Fixes `#404
<https://github.com/requests/requests-oauthlib/issues/404>`_.
- ``OAuth2Session`` constructor now uses its ``client.scope`` when a ``client``
is provided and ``scope`` is not overridden. Fixes `#408
<https://github.com/requests/requests-oauthlib/issues/408>`_
- Add ``refresh_token_request`` and ``access_token_request`` compliance hooks
- Add PKCE support and Auth0 example
- Add support for Python 3.8-3.12
- Remove support of Python 2.x, <3.7
- Migrated to Github Action
- Updated dependencies
- Cleanup some docs and examples
|
2024-03-17 15:08:17 by Thomas Klausner | Files touched by this commit (3) | |
Log message:
py-requests-oauthlib: update to 1.4.0.
v1.4.0 (27 Feb 2024)
++++++++++++++++++++++++
Additions & changes:
- ``OAuth2Session`` now correctly uses the ``self.verify`` value if ``verify``
is not overridden in ``fetch_token`` and ``refresh_token``. Fixes `#404
<https://github.com/requests/requests-oauthlib/issues/404>`_.
- ``OAuth2Session`` constructor now uses its ``client.scope`` when a ``client``
is provided and ``scope`` is not overridden. Fixes `#408
<https://github.com/requests/requests-oauthlib/issues/408>`_
- Add ``refresh_token_request`` and ``access_token_request`` compliance hooks
- Add PKCE support and Auth0 example
- Add support for Python 3.8-3.12
- Remove support of Python 2.x, <3.7
- Migrated to Github Action
- Updated dependencies
- Cleanup some docs and examples
|
2023-11-07 23:38:10 by Thomas Klausner | Files touched by this commit (112) |
Log message:
*: latest py-sphinx only support Python 3.9+
|
2022-02-06 20:04:17 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-requests-oauthlib: updated to 1.3.1
v1.3.1 (21 January 2022)
- Add initial support for OAuth Mutual TLS (draft-ietf-oauth-mtls)
- Add eBay compliance fix
- Add Spotify OAuth 2 Tutorial
- Add support for python 3.8, 3.9
- Fixed LinkedIn Compliance Fixes
- Fixed ReadTheDocs Documentation and sphinx errors
- Moved pipeline to GitHub Actions
|
2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595) |
Log message:
*: bump PKGREVISION for egg.mk users
They now have a tool dependency on py-setuptools instead of a DEPENDS
|
2021-10-26 13:18:07 by Nia Alarie | Files touched by this commit (605) |
Log message:
security: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Unfetchable distfiles (fetched conditionally?):
./security/cyrus-sasl/distinfo \
cyrus-sasl-dedad73e5e7a75d01a5f3d5a6702ab8ccd2ff40d.patch.v2
|
2021-10-07 16:54:50 by Nia Alarie | Files touched by this commit (606) |
Log message:
security: Remove SHA1 hashes for distfiles
|
2021-03-07 18:16:51 by Adam Ciarcinski | Files touched by this commit (1) |
Log message:
py-requests-oauthlib: mark as incompatible with Python 2.7
|
2019-11-07 14:34:37 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-requests-oauthlib: updated to 1.3.0
1.3.0:
- Instagram compliance fix
- Added ``force_querystring`` argument to fetch_token() method on OAuth2Session
|
2019-01-16 10:39:40 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-requests-oauthlib: updated to 1.2.0
v1.2.0:
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:
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.
|