Breaking Changes
Drop support for Python 3.8
Python 3.8 is no longer supported. "New" 3.9 syntax, like generics on builtin collections, is used both in the generator
and the generated code.
type
is now a reserved field name
Because type
is used in type annotations now, it is no longer a valid field name. Fields which were previously named
type
will be renamed to type_
.
Features
- Support Ruff 0.8 (#1169)