Skip to content

Commit

Permalink
Version bump 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lepture committed Dec 6, 2022
1 parent e98325a commit 7575ea3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion authlib/consts.py
@@ -1,5 +1,5 @@
name = 'Authlib'
version = '1.1.0'
version = '1.2.0'
author = 'Hsiaoming Yang <me@lepture.com>'
homepage = 'https://authlib.org/'
default_user_agent = '{}/{} (+{})'.format(name, version, homepage)
Expand Down
5 changes: 3 additions & 2 deletions docs/changelog.rst
Expand Up @@ -9,14 +9,15 @@ Here you can see the full list of changes between each Authlib release.
Version 1.2.0
-------------

**Release date not decided**
**Released on Dec 6, 2022**

- Not passing ``request.body`` to ``ResourceProtector``, via :gh:`issue#485`.
- Use ``flask.g`` instead of ``_app_ctx_stack``, via :gh:`issue#482`.
- Add ``headers`` parameter back to ``ClientSecretJWT``, via :gh:`issue#457`.
- Always passing ``realm`` parameter in OAuth 1 clients, via :gh:`issue#339`.
- Implemented RFC7592 Dynamic Client Registration Management Protocol, via :gh:`PR#505`.

- Add ``default_timeout`` for requests ``OAuth2Session`` and ``AssertionSession``.
- Deprecate ``jwk.loads`` and ``jwk.dumps``

Version 1.1.0
-------------
Expand Down
2 changes: 1 addition & 1 deletion tests/clients/test_django/test_oauth_client.py
Expand Up @@ -222,7 +222,7 @@ def test_openid_authorize(self):

token = get_bearer_token()
token['id_token'] = generate_id_token(
token, {'sub': '123'}, key,
token, {'sub': '123'}, secret_key,
alg='HS256', iss='https://i.b',
aud='dev', exp=3600, nonce=query_data['nonce'],
)
Expand Down

0 comments on commit 7575ea3

Please sign in to comment.