Skip to content

Commit eeeeca1

Browse files
committed
Bump version after adding 429 retry logic
1 parent 51f341f commit eeeeca1

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and 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(
205211
def 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.

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.11.13",
73+
version="0.11.14",
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
@@ -12,7 +12,7 @@
1212
# License for the specific language governing permissions and limitations
1313
# under the License.
1414
SUPPORTED_CDI_VERSIONS = ["2.9", "2.10", "2.11", "2.12", "2.13", "2.14", "2.15"]
15-
VERSION = "0.11.13"
15+
VERSION = "0.11.14"
1616
TELEMETRY = "/telemetry"
1717
USER_COUNT = "/users/count"
1818
USER_DELETE = "/user/remove"

0 commit comments

Comments
 (0)