bump project deps

This commit is contained in:
grillazz
2025-08-23 18:34:53 +02:00
parent 58553c6d63
commit 72b1ec6404
4 changed files with 270 additions and 168 deletions

View File

@@ -6,7 +6,7 @@ from sqlalchemy.exc import SQLAlchemyError
logger = AppStructLogger().get_logger()
#TODO: add reasoning for this in readme plus higligh using re-raise in db session
async def sqlalchemy_exception_handler(
request: Request, exc: SQLAlchemyError
) -> JSONResponse:

View File

@@ -44,7 +44,7 @@ async def lifespan(app: FastAPI):
def create_app() -> FastAPI:
app = FastAPI(
title="Stuff And Nonsense API",
version="0.19.0",
version="0.20.0",
lifespan=lifespan,
)
app.include_router(stuff_router)