✨ Add `strict`, `examples`, `deprecated`, `exclude_if` and `field_title_generator` parameters to `Field` by YuriiMotov · Pull Request #1725 · fastapi/sqlmodel
These parameters are not currently supported by sqlmodel.Field and people have to use workaround passing them via schema_extra.
This PR will still support that workaround, but will emit a warning encouraging to pass such parameters directly to Field.
exclude_if is only supported by Pydantic version 2.12+.
I parameterized tests to skip if version is less than 2.12. Do we need to handle this in Field and emit warning?