Skip to content

Commit 375e79e

Browse files
committed
release: bump version to 24.1.1
1 parent ad0c12d commit 375e79e

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

docs/content/2026-news.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<span id="news-2026"></span>
22
# Changelog - 2026
33

4-
## 24.1.1 - unreleased
4+
## 24.1.1 - 2026-01-24
55

66
### Bug Fixes
77

docs/content/news.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
<span id="news"></span>
22
# Changelog
33

4+
## 24.1.1 - 2026-01-24
5+
6+
### Bug Fixes
7+
8+
- Fix `forwarded_allow_ips` and `proxy_allow_ips` to remain as strings for backward
9+
compatibility with external tools like uvicorn. Network validation now uses strict
10+
mode to detect invalid CIDR notation (e.g., `192.168.1.1/24` where host bits are set)
11+
([#3458](https://github.com/benoitc/gunicorn/issues/3458),
12+
[PR #3459](https://github.com/benoitc/gunicorn/pull/3459))
13+
14+
---
15+
416
## 24.1.0 - 2026-01-23
517

618
### New Features

gunicorn/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is part of gunicorn released under the MIT license.
33
# See the NOTICE for more information.
44

5-
version_info = (24, 1, 0)
5+
version_info = (24, 1, 1)
66
__version__ = ".".join([str(v) for v in version_info])
77
SERVER = "gunicorn"
88
SERVER_SOFTWARE = "%s/%s" % (SERVER, __version__)

0 commit comments

Comments
 (0)