From cb708b469867208d1a7fe4010dfa91634433c757 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Tue, 24 Mar 2026 23:18:25 +0100 Subject: [PATCH] Add uwsgi async fix to changelog --- docs/content/news.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/content/news.md b/docs/content/news.md index 9e2720a1..7a9a5873 100644 --- a/docs/content/news.md +++ b/docs/content/news.md @@ -13,6 +13,11 @@ ### Bug Fixes +- **uWSGI Async Workers**: Fix `InvalidUWSGIHeader: incomplete header` error + when using gevent or gthread workers with uwsgi protocol behind nginx. + ([#3552](https://github.com/benoitc/gunicorn/issues/3552), + [PR #3554](https://github.com/benoitc/gunicorn/pull/3554)) + - **FileWrapper Iterator Protocol**: Add `__iter__` and `__next__` methods to `FileWrapper` for full PEP 3333 compliance. Previously only supported old-style `__getitem__` iteration which broke code explicitly using `iter()` or `next()`.