From a05ae6426cc8f224f4f1a995f46a901ab0f5644b Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sat, 9 Mar 2024 09:18:55 +0000 Subject: [PATCH] Version 0.28.0 (#2269) --- CHANGELOG.md | 11 +++++++++++ uvicorn/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e4f74e19..12a0974ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## 0.28.0 - 2024-03-09 + +### Added + +- Raise `ClientDisconnected` on `send()` when client disconnected (#2220) 12/02/24 + +### Fixed + +- Except `AttributeError` on `sys.stdin.fileno()` for Windows IIS10 (#1947) 29/02/24 +- Use `X-Forwarded-Proto` for WebSockets scheme when the proxy provides it (#2258) 01/03/24 + ## 0.27.1 - 2024-02-10 - Fix spurious LocalProtocolError errors when processing pipelined requests (#2243) 10/02/24 diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index 5f83184a6..eed7b5016 100644 --- a/uvicorn/__init__.py +++ b/uvicorn/__init__.py @@ -1,5 +1,5 @@ from uvicorn.config import Config from uvicorn.main import Server, main, run -__version__ = "0.27.1" +__version__ = "0.28.0" __all__ = ["main", "run", "Config", "Server"]