uvicorn v0.10.0 Release Notes
Release Date: 2019-10-29 // almost 6 years ago-
- ๐ Support for Python 3.8
- ๐ Separated out
uvicorn.error
anduvicorn.access
logs. - ๐ฒ Coloured log output when connected to a terminal.
- โฌ๏ธ Dropped
logger=
config setting. - โ Added
--log-config [FILE]
andlog_config=[str|dict]
. May either be a Python logging config dictionary or the file name of a logging configuration. - ๐ Added
--forwarded_allow_ips
andforwarded_allow_ips
. Defaults to the value of the$FORWARDED_ALLOW_IPS
environment variable or "127.0.0.1". The--proxy-headers
flag now defaults toTrue
, but only trusted IPs are used to populate forwarding info. - 0๏ธโฃ The
--workers
setting now defaults to the value of the$WEB_CONCURRENCY
environment variable. - โ Added support for
--env-file
. Requirespython-dotenv
.