This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
Releases: Bogdanp/molten
Releases · Bogdanp/molten
v1.0.2
v1.0.1
v1.0.0
v0.7.2
v0.7.1
v0.7.0
Changed
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.
v0.6.1
v0.6.0
v0.5.1
Fixed
- 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.
v0.5.0
Added
- Support for websockets.
- Support for returning (status, data, headers) from handlers.
handle_parse_error
toApp
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.To upgrade, change code that looks like this:
app = App( middleware=[ResponseRendererMiddleware([JSONRenderer()])], )
to:
app = App( middleware=[ResponseRendererMiddleware()], renderers=[JSONRenderer()], )