Skip to content

Commit

Permalink
bumps patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhpoddar committed Sep 3, 2024
1 parent dd17c8b commit f0edfe6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.24.2] - 2024-09-03
- Makes optional input form fields truly optional instead of just being able to accept `""`.

## [0.24.1] - 2024-08-16

- Sets time out for httpx client to 30s everywhere. - https://github.com/supertokens/supertokens-python/issues/516
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@

setup(
name="supertokens_python",
version="0.24.1",
version="0.24.2",
author="SuperTokens",
license="Apache 2.0",
author_email="[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion supertokens_python/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from __future__ import annotations

SUPPORTED_CDI_VERSIONS = ["3.0"]
VERSION = "0.24.1"
VERSION = "0.24.2"
TELEMETRY = "/telemetry"
USER_COUNT = "/users/count"
USER_DELETE = "/user/remove"
Expand Down
2 changes: 2 additions & 0 deletions supertokens_python/recipe/emailpassword/api/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ async def validate_form_or_throw_error(
if is_invalid_value:
continue

assert input_field is not None

error = await field.validate(input_field.value, tenant_id)
if error is not None:
validation_errors.append(ErrorFormField(field.id, error))
Expand Down

0 comments on commit f0edfe6

Please sign in to comment.