- bug fix in `default_create_and_send_custom_email` for emailverification recipe where we were not sending the email if env var was not set. - Fix telemetry issues related to asyncio when using FastAPI. Related issue: https://github.com/supertokens/supertokens-core/issues/421 - adds git action for running tests
0.6.3
- Setup logging for easier debugging - Adds github action for checking all things checked by pre commit hook
0.6.2
- Fix Passwordless OTP recipe phone number field to fix https://github.com/supertokens/supertokens-core/issues/416
0.6.1
- Expands allowed version range for httpx library to fix https://github.com/supertokens/supertokens-python/issues/98
0.6.0
Changes - Removes dependency on framework specific dependencies (`werkzeug` and `starlette`)
Breaking change: - Import for fastapi middleware: - Old
from supertokens_python.framework.fastapi import Middleware
app = FastAPI() app.add_middleware(Middleware)
- New
from supertokens_python.framework.fastapi import get_middleware