@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## unreleased
9
9
10
+ ## [ 0.12.10] - 2023-09-28
11
+
12
+ - Add logic to retry network calls if the core returns status 429
10
13
11
14
## [ 0.12.9] - 2023-04-28
12
15
@@ -267,7 +270,7 @@ init(
267
270
def verify_email_for_passwordless_users ():
268
271
pagination_token = None
269
272
done = False
270
-
273
+
271
274
while not done:
272
275
res = get_users_newest_first(
273
276
limit = 100 ,
@@ -280,7 +283,7 @@ def verify_email_for_passwordless_users():
280
283
token_res = create_email_verification_token(user.user_id, user.email)
281
284
if isinstance (token_res, CreateEmailVerificationTokenOkResult):
282
285
verify_email_using_token(token_res.token)
283
-
286
+
284
287
done = res.next_pagination_token is None
285
288
if not done:
286
289
pagination_token = res.next_pagination_token
@@ -310,7 +313,7 @@ The `UserRoles` recipe now adds role and permission information into the access
310
313
311
314
## [ 0.10.2] - 2022-07-14
312
315
### Bug fix
313
- - Make ` user_context ` optional in userroles recipe syncio functions.
316
+ - Make ` user_context ` optional in userroles recipe syncio functions.
314
317
315
318
## [ 0.10.1] - 2022-07-11
316
319
@@ -845,4 +848,4 @@ init(
845
848
- Middleware, error handlers and verify session for each framework.
846
849
- Created a wrapper for async to sync for supporting older version of python web frameworks.
847
850
- Base tests for each framework.
848
- - New requirements in the setup file.
851
+ - New requirements in the setup file.
0 commit comments