fix: Bump Pydantic to v2.12.5 (#6622)

This commit is contained in:
Michael Genson
2025-11-29 17:04:13 -06:00
committed by GitHub
parent d500fbf0b4
commit bb196da83b
3 changed files with 26 additions and 26 deletions

View File

@@ -64,7 +64,7 @@ class PostgresProvider(AbstractDBProvider, BaseSettings):
PostgresDsn.build(
scheme="postgresql",
username=self.POSTGRES_USER,
password=self.POSTGRES_PASSWORD,
password=urlparse.quote(self.POSTGRES_PASSWORD),
host=f"{self.POSTGRES_SERVER}:{self.POSTGRES_PORT}",
path=f"{self.POSTGRES_DB or ''}",
)