We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We currently use an outdated API from FastAPI/Pydantic to configure (or custom configuration) in our API data models.
Here is an example:
repository-service-tuf-api/repository_service_tuf_api/config.py
Lines 22 to 36 in d4fde13
We use a class Config, which is a the old https://docs.pydantic.dev/1.10/usage/model_config/#options
class Config
We should migrate all to the new config API https://docs.pydantic.dev/latest/api/config/#options
See the PR where we discuss it:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What do you want to share with us?
We currently use an outdated API from FastAPI/Pydantic to configure (or custom configuration) in our API data models.
Here is an example:
repository-service-tuf-api/repository_service_tuf_api/config.py
Lines 22 to 36 in d4fde13
We use a
class Config
, which is a the old https://docs.pydantic.dev/1.10/usage/model_config/#optionsWe should migrate all to the new config API https://docs.pydantic.dev/latest/api/config/#options
References
See the PR where we discuss it:
Code of Conduct
The text was updated successfully, but these errors were encountered: