Skip to content

Commit f045f46

Browse files
committed
1.4.0 preparation
1 parent 39fe529 commit f045f46

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

HISTORY.rst

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
11
History
22
-------
33

4-
v1.4.0 (TBD)
4+
v1.4.0 (27 Feb 2024)
55
++++++++++++++++++++++++
6+
7+
Full set of changes are in [github](https://github.com/requests/requests-oauthlib/milestone/4?closed=1).
8+
9+
Additions & changes:
10+
611
- ``OAuth2Session`` now correctly uses the ``self.verify`` value if ``verify``
712
is not overridden in ``fetch_token`` and ``refresh_token``. Fixes `#404
813
<https://github.com/requests/requests-oauthlib/issues/404>`_.
914
- ``OAuth2Session`` constructor now uses its ``client.scope`` when a ``client``
1015
is provided and ``scope`` is not overridden. Fixes `#408
1116
<https://github.com/requests/requests-oauthlib/issues/408>`_
17+
- Add ``refresh_token_request`` and ``access_token_request`` compliance hooks
18+
- Add PKCE support and Auth0 example
1219
- Add support for Python 3.8-3.12
1320
- Remove support of Python 2.x, <3.7
1421
- Migrated to Github Action
15-
- Add PKCE support
22+
- Updated dependencies
23+
- Cleanup some docs and examples
1624

1725
v1.3.1 (21 January 2022)
1826
++++++++++++++++++++++++

requests_oauthlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .oauth2_auth import OAuth2
77
from .oauth2_session import OAuth2Session, TokenUpdated
88

9-
__version__ = "1.4.0-dev"
9+
__version__ = "1.4.0"
1010

1111
import requests
1212

0 commit comments

Comments
 (0)