File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
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
8
8
9
9
## [ unreleased]
10
10
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 access token with the latest ` pyJWT ` version.
15
+
11
16
## [ 0.16.4] - 2023-10-05
12
17
13
18
- Add ` validate_access_token ` function to providers
Original file line number Diff line number Diff line change 70
70
71
71
setup (
72
72
name = "supertokens_python" ,
73
- version = "0.16.4 " ,
73
+ version = "0.16.5 " ,
74
74
author = "SuperTokens" ,
75
75
license = "Apache 2.0" ,
76
76
Original file line number Diff line number Diff line change 14
14
from __future__ import annotations
15
15
16
16
SUPPORTED_CDI_VERSIONS = ["3.0" ]
17
- VERSION = "0.16.4 "
17
+ VERSION = "0.16.5 "
18
18
TELEMETRY = "/telemetry"
19
19
USER_COUNT = "/users/count"
20
20
USER_DELETE = "/user/remove"
You can’t perform that action at this time.
0 commit comments