summaryrefslogtreecommitdiff
path: root/www/py-uvicorn
AgeCommit message (Collapse)AuthorFilesLines
2020-10-02py-uvicorn: updated to 0.12.1adam2-7/+7
0.12.1 Changed Pinning h11 and python-dotenv to min versions Get docs/index.md in sync with README.md Fixed Improve changelog by pointing out breaking changes
2020-09-30py-uvicorn: Fix bulk builds yet again.jperkin1-3/+3
2020-09-30py-uvicorn: updated to 0.12.0adam3-9/+17
0.12.0: Added Make reload delay configurable Upgrade maximum h11 dependency version to 0.10 Allow .json or .yaml --log-config files Add ASGI dict to the lifespan scope Upgrade wsproto to 0.15.0 Use optional package installs Changed Dont set log level for root logger Fixed Revert "Improve shutdown robustness when using --reload or multiprocessing Fix terminate error in windows Fix bug where --log-config disables uvicorn loggers
2020-08-03py-uvicorn: updated 0.11.8adam2-7/+7
0.11.8: Fix a regression that caused Uvicorn to crash when using --interface=wsgi. Fix a regression that caused Uvicorn to crash when using unix domain sockets.
2020-07-29py-uvicorn: updated to 0.11.7adam2-7/+7
0.11.7 SECURITY FIX: Prevent sending invalid HTTP header names and values. SECURITY FIX: Ensure path value is escaped before logging to the console.
2020-07-21py-uvicorn: updated to 0.11.6adam2-7/+7
0.11.6 Fix overriding the root logger.
2020-04-30py-uvicorn: updated to 0.11.5adam2-7/+7
0.11.5 Revert "Watch all files, not just .py" due to unexpected side effects. Revert "Pass through gunicorn timeout config." due to unexpected side effects.
2020-04-29py-uvicorn: remove unused patchadam1-14/+0
2020-04-29py-uvicorn: updated to 0.11.4adam3-9/+14
0.11.4 Use watchgod, if installed, for watching code changes. Reload application when any files in watched directories change, not just .py files.
2020-02-18py-uvicorn: updated to 0.11.3adam2-8/+8
0.11.3: Update dependencies.
2020-01-22py-uvicorn: updated to 0.11.2adam2-7/+7
0.11.2 Don't open socket until after application startup. Support --backlog.
2020-01-08py-uvicorn: added version 0.11.1adam6-0/+167
Uvicorn is a lightning-fast ASGI server implementation, using uvloop and httptools. Until recently Python has lacked a minimal low-level server/application interface for asyncio frameworks. The ASGI specification fills this gap, and means we're now able to start building a common set of tooling usable across all asyncio frameworks.