Releases: dymmond/lilya
Releases · dymmond/lilya
Version 0.8.2
This was supposed to in the version 0.8.1
Fixed
- LRU caching affecting connections from request.
Version 0.8.1
Changed
- Removed unused middleware.
- Updated AppSettingsMiddleware for lazy loading
- Updated
globalise_settings
.
Fixed
- Performance issues caused by
AppSettingsModule
.
Version 0.8.0
Added
XFrameOptionsMiddleware
to handle with options headers.SecurityMiddleware
adding various security headers to the request/response lifecycle.override_settings
as new decorator that allows to override the Lilya settings in any given test.
Fixed
- Missing status
HTTP_301_MOVED_PERMANENTLY
from the list of available status.
Version 0.7.5
Added
- Allow path parameters to also be defined with
<>
as alternative to{}
.
Example
from lilya.routing import Path
Path("/<age:int>", ...)
Version 0.7.4
Added
- Translations to portuguese.
Fixed
- Missing
settings
in therunserver
directive.
Version 0.7.3
Fixed
- Documentation generation for
typing.Unpack
.
Version 0.7.2
Changed
- Optimised the
encoders
and how it evaluates theENCODER_TYPES
. - Internal fixes in the
TestClient
and internals.
Version 0.7.1
Fixed
- Import cast clashing with local variables.