Skip to content

Commit 8d41bec

Browse files
dependabot[bot]alejsdev
authored andcommitted
⬆ Bump pydantic from 2.9.2 to 2.11.7 in /backend (fastapi#1864)
* ⬆ Bump pydantic from 2.9.2 to 2.11.7 in /backend Bumps [pydantic](https://github.com/pydantic/pydantic) from 2.9.2 to 2.11.7. - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](pydantic/pydantic@v2.9.2...v2.11.7) --- updated-dependencies: - dependency-name: pydantic dependency-version: 2.11.7 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Update --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: User <[email protected]> Co-authored-by: Alejandra <[email protected]>
1 parent ca93fb4 commit 8d41bec

File tree

2 files changed

+84
-64
lines changed

2 files changed

+84
-64
lines changed

backend/app/core/config.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
computed_field,
1212
model_validator,
1313
)
14-
from pydantic_core import MultiHostUrl
1514
from pydantic_settings import BaseSettings, SettingsConfigDict
1615
from typing_extensions import Self
1716

@@ -60,7 +59,7 @@ def all_cors_origins(self) -> list[str]:
6059
@computed_field # type: ignore[prop-decorator]
6160
@property
6261
def SQLALCHEMY_DATABASE_URI(self) -> PostgresDsn:
63-
return MultiHostUrl.build(
62+
return PostgresDsn.build(
6463
scheme="postgresql+psycopg",
6564
username=self.POSTGRES_USER,
6665
password=self.POSTGRES_PASSWORD,

0 commit comments

Comments
 (0)