T10.1: Okta OIDC client dependency and config (wave 10)

This commit is contained in:
2026-09-03 09:57:55 -07:00
parent 044862acba
commit 0ee35ae4ed
2 changed files with 100 additions and 1 deletions

View File

@@ -17,6 +17,9 @@ pymssql==2.3.13 # read-only lookups against the Micron asset DB (SQL
# MICRON_DB_URL to mssql+pyodbc://…?driver=ODBC+Driver+18+for+SQL+Server
pydantic==2.13.4
python-dotenv==1.2.2
bcrypt==5.0.0 # password hashing
bcrypt==5.0.0 # password hashing — still used until T10.4 removes the local
# password path; do not drop this before that task lands.
PyJWT==2.13.0 # signed session tokens
starlette==1.3.1 # pinned transitive (cookie / CORS handling — security-relevant)
Authlib==1.7.2 # Okta OIDC authorization-code flow (T10.1, wave 10 / D15)
httpx==0.28.1 # Authlib's OIDC client needs an HTTP client; explicit, not transitive