From 8e5d0164796dfaaacd4c5954fffb13d6ad16ebcb Mon Sep 17 00:00:00 2001 From: Jacob Hayes Date: Sat, 28 Nov 2020 22:04:41 -0500 Subject: [PATCH] Add changelog --- changes/2147-JacobHayes.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 changes/2147-JacobHayes.md diff --git a/changes/2147-JacobHayes.md b/changes/2147-JacobHayes.md new file mode 100644 index 00000000000..322da5ffbce --- /dev/null +++ b/changes/2147-JacobHayes.md @@ -0,0 +1 @@ +Support `typing.Annotated` hints on model fields. A `Field` may now be set in the type hint with `Annotated[..., Field(...)`; all other annotations are ignored but still visible with `get_type_hints(..., include_extras=True)`.