File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
99## [ unreleased]
1010
11+ ## [ 0.16.5] - 2023-10-23
12+
13+ - Relaxed constraint on ` pyJWT ` dependency.
14+ - This is done because some users face ` InvalidSignatureError ` when decoding the id token with the latest ` pyJWT ` version.
15+
1116## [ 0.16.4] - 2023-10-05
1217
1318- Add ` validate_access_token ` function to providers
Original file line number Diff line number Diff line change 7070
7171setup (
7272 name = "supertokens_python" ,
73- version = "0.16.4 " ,
73+ version = "0.16.5 " ,
7474 author = "SuperTokens" ,
7575 license = "Apache 2.0" ,
7676101101 install_requires = [
102102 # [crypto] ensures that it installs the `cryptography` library as well
103103 # based on constraints specified in https://github.com/jpadilla/pyjwt/blob/master/setup.cfg#L50
104- "PyJWT[crypto]>=2.6 .0,<3.0.0" ,
104+ "PyJWT[crypto]>=2.5 .0,<3.0.0" ,
105105 "httpx>=0.15.0,<0.25.0" ,
106106 "pycryptodome==3.10.*" ,
107107 "tldextract==3.1.0" ,
Original file line number Diff line number Diff line change 1414from __future__ import annotations
1515
1616SUPPORTED_CDI_VERSIONS = ["3.0" ]
17- VERSION = "0.16.4 "
17+ VERSION = "0.16.5 "
1818TELEMETRY = "/telemetry"
1919USER_COUNT = "/users/count"
2020USER_DELETE = "/user/remove"
You can’t perform that action at this time.
0 commit comments