File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ <h1 class="title">Module <code>supertokens_python.constants</code></h1>
4242from __future__ import annotations
4343
4444SUPPORTED_CDI_VERSIONS = ["3.0"]
45- VERSION = "0.23.0 "
45+ VERSION = "0.23.1 "
4646TELEMETRY = "/telemetry"
4747USER_COUNT = "/users/count"
4848USER_DELETE = "/user/remove"
Original file line number Diff line number Diff line change @@ -467,7 +467,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.session.session_request
467467
468468 return raise_unauthorised_exception(
469469 "Refresh token not found. Are you sending the refresh token in the request?",
470- clear_tokens=False ,
470+ clear_tokens=True ,
471471 response_mutators=response_mutators,
472472 )
473473
@@ -488,7 +488,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.session.session_request
488488 # see https://github.com/supertokens/supertokens-node/issues/141
489489 raise_unauthorised_exception(
490490 "anti-csrf check failed. Please pass 'rid: \"session\"' header in the request.",
491- clear_tokens=False ,
491+ clear_tokens=True ,
492492 )
493493 disable_anti_csrf = True
494494
@@ -957,7 +957,7 @@ <h2 class="section-title" id="header-functions">Functions</h2>
957957
958958 return raise_unauthorised_exception(
959959 "Refresh token not found. Are you sending the refresh token in the request?",
960- clear_tokens=False ,
960+ clear_tokens=True ,
961961 response_mutators=response_mutators,
962962 )
963963
@@ -978,7 +978,7 @@ <h2 class="section-title" id="header-functions">Functions</h2>
978978 # see https://github.com/supertokens/supertokens-node/issues/141
979979 raise_unauthorised_exception(
980980 "anti-csrf check failed. Please pass 'rid: \"session\"' header in the request.",
981- clear_tokens=False ,
981+ clear_tokens=True ,
982982 )
983983 disable_anti_csrf = True
984984
You can’t perform that action at this time.
0 commit comments