* Validation for path converters to make sure that impossible HTTP methods cannot be used * Validation for both path and schema converters to make sure that they are used at some point. Otherwise, router generation will raise an error
3.12.1
Fixed
* `fastapi.Response` subclasses with non-null bodies and 500 response causing the response to not get returned * `fastapi.Response` subclasses had invalid content length if migration affected it
3.12.0
Changed
* Rewritten header routing logic and structure to support the full feature set of FastAPI
3.11.1
Fixed
* Modules and enums from head versions not being detected and thus causing errors
3.11.0
Changed
* Header router is no longer reliant on the API version header -- now it simply takes the API version from the `VersionBundle.api_version_var`, thus making it easy for someone to extend header routing and set their own rules for how the default version is chosen
3.10.1
Fixed
* Previous version introduced a minor breaking change: if any old users depended on the pure `generate_versioned_routers` interface, their work would receive a minor yet simple breaking change.