mirror of
https://github.com/frappe/gunicorn.git
synced 2026-07-03 03:01:31 +08:00
release: bump version to 24.1.1
This commit is contained in:
parent
ad0c12de98
commit
375e79e95b
@ -1,7 +1,7 @@
|
||||
<span id="news-2026"></span>
|
||||
# Changelog - 2026
|
||||
|
||||
## 24.1.1 - unreleased
|
||||
## 24.1.1 - 2026-01-24
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
|
||||
@ -1,6 +1,18 @@
|
||||
<span id="news"></span>
|
||||
# Changelog
|
||||
|
||||
## 24.1.1 - 2026-01-24
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Fix `forwarded_allow_ips` and `proxy_allow_ips` to remain as strings for backward
|
||||
compatibility with external tools like uvicorn. Network validation now uses strict
|
||||
mode to detect invalid CIDR notation (e.g., `192.168.1.1/24` where host bits are set)
|
||||
([#3458](https://github.com/benoitc/gunicorn/issues/3458),
|
||||
[PR #3459](https://github.com/benoitc/gunicorn/pull/3459))
|
||||
|
||||
---
|
||||
|
||||
## 24.1.0 - 2026-01-23
|
||||
|
||||
### New Features
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
# This file is part of gunicorn released under the MIT license.
|
||||
# See the NOTICE for more information.
|
||||
|
||||
version_info = (24, 1, 0)
|
||||
version_info = (24, 1, 1)
|
||||
__version__ = ".".join([str(v) for v in version_info])
|
||||
SERVER = "gunicorn"
|
||||
SERVER_SOFTWARE = "%s/%s" % (SERVER, __version__)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user