You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 29, 2024. It is now read-only.
CookieStore now accepts string signing keys and automatically encodes them to bytes.
Environment variables can now be substituted into TOML settings using the $VARIABLE_NAME syntax. This is a breaking change if your settings files contain $ characters; replace them with $$ to escape them.
An issue where OpenAPI docs containing typed list fields would blow up at render time. (#12)
OpenAPI docs now use {read,write}Only field markers instead of generating one schema per context (request, response). This may be a breaking change if your tests depended on the old way for some reason, but I'm treating it as a bugfix.
Support for returning (status, data, headers) from handlers.
handle_parse_error to App class.
Changed
ResponseRendererMiddleware now looks up renderers directly off of
the app object. This means you no longer have to pass them to the
middleware upon instantiation. This is a breaking change.