Skip to content

Commit 553a621

Browse files
updated changelog and versions
1 parent e6f4516 commit 553a621

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [unreleased]
1010

11+
## [0.16.6] - 2023-10-24
12+
13+
- Fixed server error in `sign_in_up` API
14+
- There was a bug in case where the API was called with just oAuth tokens without passing the `redirect_uri_info`.
15+
1116
## [0.16.5] - 2023-10-23
1217

1318
- Relaxed constraint on `pyJWT` dependency.

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.16.5",
73+
version="0.16.6",
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
@@ -14,7 +14,7 @@
1414
from __future__ import annotations
1515

1616
SUPPORTED_CDI_VERSIONS = ["3.0"]
17-
VERSION = "0.16.5"
17+
VERSION = "0.16.6"
1818
TELEMETRY = "/telemetry"
1919
USER_COUNT = "/users/count"
2020
USER_DELETE = "/user/remove"

tests/thirdparty/test_thirdparty.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ async def fastapi_client():
4949
app = FastAPI()
5050
app.add_middleware(get_middleware())
5151

52-
return TestClient(app, raise_server_exceptions=True)
52+
return TestClient(app, raise_server_exceptions=False)
5353

5454

5555
async def test_thirdpary_parsing_works(fastapi_client: TestClient):

0 commit comments

Comments
 (0)