Skip to content

Commit 7575ea3

Browse files
committed
Version bump 1.2.0
1 parent e98325a commit 7575ea3

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

authlib/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = 'Authlib'
2-
version = '1.1.0'
2+
version = '1.2.0'
33
author = 'Hsiaoming Yang <[email protected]>'
44
homepage = 'https://authlib.org/'
55
default_user_agent = '{}/{} (+{})'.format(name, version, homepage)

docs/changelog.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ Here you can see the full list of changes between each Authlib release.
99
Version 1.2.0
1010
-------------
1111

12-
**Release date not decided**
12+
**Released on Dec 6, 2022**
1313

1414
- Not passing ``request.body`` to ``ResourceProtector``, via :gh:`issue#485`.
1515
- Use ``flask.g`` instead of ``_app_ctx_stack``, via :gh:`issue#482`.
1616
- Add ``headers`` parameter back to ``ClientSecretJWT``, via :gh:`issue#457`.
1717
- Always passing ``realm`` parameter in OAuth 1 clients, via :gh:`issue#339`.
1818
- Implemented RFC7592 Dynamic Client Registration Management Protocol, via :gh:`PR#505`.
19-
19+
- Add ``default_timeout`` for requests ``OAuth2Session`` and ``AssertionSession``.
20+
- Deprecate ``jwk.loads`` and ``jwk.dumps``
2021

2122
Version 1.1.0
2223
-------------

tests/clients/test_django/test_oauth_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def test_openid_authorize(self):
222222

223223
token = get_bearer_token()
224224
token['id_token'] = generate_id_token(
225-
token, {'sub': '123'}, key,
225+
token, {'sub': '123'}, secret_key,
226226
alg='HS256', iss='https://i.b',
227227
aud='dev', exp=3600, nonce=query_data['nonce'],
228228
)

0 commit comments

Comments
 (0)