@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
88## unreleased
9+
10+ # [ 0.11.14] - 2023-09-28
11+
12+ - Add logic to retry network calls if the core returns status 429
13+
14+
915# [ 0.11.13] - 2023-01-06
1016
1117- Add missing ` original ` attribute to flask response and remove logic for cases where ` response ` is ` None `
@@ -205,7 +211,7 @@ init(
205211def verify_email_for_passwordless_users ():
206212 pagination_token = None
207213 done = False
208-
214+
209215 while not done:
210216 res = get_users_newest_first(
211217 limit = 100 ,
@@ -218,7 +224,7 @@ def verify_email_for_passwordless_users():
218224 token_res = create_email_verification_token(user.user_id, user.email)
219225 if isinstance (token_res, CreateEmailVerificationTokenOkResult):
220226 verify_email_using_token(token_res.token)
221-
227+
222228 done = res.next_pagination_token is None
223229 if not done:
224230 pagination_token = res.next_pagination_token
@@ -248,7 +254,7 @@ The `UserRoles` recipe now adds role and permission information into the access
248254
249255## [ 0.10.2] - 2022-07-14
250256### Bug fix
251- - Make ` user_context ` optional in userroles recipe syncio functions.
257+ - Make ` user_context ` optional in userroles recipe syncio functions.
252258
253259## [ 0.10.1] - 2022-07-11
254260
@@ -783,4 +789,4 @@ init(
783789- Middleware, error handlers and verify session for each framework.
784790- Created a wrapper for async to sync for supporting older version of python web frameworks.
785791- Base tests for each framework.
786- - New requirements in the setup file.
792+ - New requirements in the setup file.
0 commit comments