File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
99## [ unreleased]
1010
11+ ## [ 0.14.9] - 2023-09-28
12+
13+ - Add logic to retry network calls if the core returns status 429
14+
1115## [ 0.14.8] - 2023-07-07
1216## Fixes
1317
@@ -148,7 +152,7 @@ if (accessTokenPayload.sub !== undefined) {
148152``` python
149153from supertokens_python.recipe.session.interfaces import SessionContainer
150154
151- session: SessionContainer = ...
155+ session: SessionContainer = ...
152156access_token_payload = await session.get_access_token_payload()
153157
154158if access_token_payload.get(' sub' ) is not None :
Original file line number Diff line number Diff line change 7070
7171setup (
7272 name = "supertokens_python" ,
73- version = "0.14.8 " ,
73+ version = "0.14.9 " ,
7474 author = "SuperTokens" ,
7575 license = "Apache 2.0" ,
7676
Original file line number Diff line number Diff line change 1414from __future__ import annotations
1515
1616SUPPORTED_CDI_VERSIONS = ["2.21" ]
17- VERSION = "0.14.8 "
17+ VERSION = "0.14.9 "
1818TELEMETRY = "/telemetry"
1919USER_COUNT = "/users/count"
2020USER_DELETE = "/user/remove"
You can’t perform that action at this time.
0 commit comments