File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.0.6
2+ current_version = 0.0.7
33commit = True
44tag = True
55
Original file line number Diff line number Diff line change @@ -83,11 +83,10 @@ from fastapi.responses import JSONResponse
8383from fastapi.encoders import jsonable_encoder
8484
8585clerk_config = ClerkConfig(
86- jwks_url = " https://your-clerk-frontend-api.clerk.accounts.dev/.well-known/jwks.json" ,
87- add_state = True
86+ jwks_url = " https://your-clerk-frontend-api.clerk.accounts.dev/.well-known/jwks.json"
8887)
8988
90- clerk_auth_guard = ClerkHTTPBearer(config = clerk_config)
89+ clerk_auth_guard = ClerkHTTPBearer(config = clerk_config, add_state = True )
9190
9291router = APIRouter(prefix = " /todo" , dependencies = [Depends(clerk_auth_guard)])
9392
Original file line number Diff line number Diff line change 11[project ]
22name = " fastapi_clerk_auth"
3- version = " 0.0.6 "
3+ version = " 0.0.7 "
44description = " FastAPI Auth Middleware for Clerk (https://clerk.com)"
55readme = " README.md"
66requires-python = " >=3.9"
You can’t perform that action at this time.
0 commit comments