Skip to content

Commit 0727bab

Browse files
committed
Bump version after adding 429 retry logic
1 parent c1d7086 commit 0727bab

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## unreleased
99

10+
## [0.12.10] - 2023-09-28
11+
12+
- Add logic to retry network calls if the core returns status 429
1013

1114
## [0.12.9] - 2023-04-28
1215

@@ -267,7 +270,7 @@ init(
267270
def verify_email_for_passwordless_users():
268271
pagination_token = None
269272
done = False
270-
273+
271274
while not done:
272275
res = get_users_newest_first(
273276
limit=100,
@@ -280,7 +283,7 @@ def verify_email_for_passwordless_users():
280283
token_res = create_email_verification_token(user.user_id, user.email)
281284
if isinstance(token_res, CreateEmailVerificationTokenOkResult):
282285
verify_email_using_token(token_res.token)
283-
286+
284287
done = res.next_pagination_token is None
285288
if not done:
286289
pagination_token = res.next_pagination_token
@@ -310,7 +313,7 @@ The `UserRoles` recipe now adds role and permission information into the access
310313

311314
## [0.10.2] - 2022-07-14
312315
### Bug fix
313-
- Make `user_context` optional in userroles recipe syncio functions.
316+
- Make `user_context` optional in userroles recipe syncio functions.
314317

315318
## [0.10.1] - 2022-07-11
316319

@@ -845,4 +848,4 @@ init(
845848
- Middleware, error handlers and verify session for each framework.
846849
- Created a wrapper for async to sync for supporting older version of python web frameworks.
847850
- Base tests for each framework.
848-
- New requirements in the setup file.
851+
- New requirements in the setup file.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070

7171
setup(
7272
name="supertokens_python",
73-
version="0.12.9",
73+
version="0.12.10",
7474
author="SuperTokens",
7575
license="Apache 2.0",
7676
author_email="[email protected]",

supertokens_python/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"2.19",
2626
"2.20",
2727
]
28-
VERSION = "0.12.9"
28+
VERSION = "0.12.10"
2929
TELEMETRY = "/telemetry"
3030
USER_COUNT = "/users/count"
3131
USER_DELETE = "/user/remove"

0 commit comments

Comments
 (0)