There was an error while loading. Please reload this page.
1 parent 389b9a7 commit 8a60e56Copy full SHA for 8a60e56
2 files changed
CHANGELOG.txt
@@ -1,3 +1,9 @@
1
+4.2.3 (2026-07-21)
2
+------------------
3
+
4
+* Added ``--websocket-max-message-size`` and ``--websocket-max-frame-size`` CLI
5
+ flags to the ``runserver`` management command for use in development.
6
7
4.2.2 (2026-06-03)
8
------------------
9
@@ -11,7 +17,7 @@
11
17
``--websocket-max-message-size`` and ``--websocket-max-frame-size`` CLI
12
18
flags (or the matching ``Server`` constructor arguments). Pass ``0`` to
13
19
restore the previous unlimited behaviour.
14
-
20
15
21
Thanks to ParkHyunWoo for the report.
16
22
23
* Fixed a header injection vulnerability on the WebSocket upgrade path
daphne/__init__.py
@@ -1,6 +1,6 @@
import sys
-__version__ = "4.2.2"
+__version__ = "4.2.3"
# Windows on Python 3.8+ uses ProactorEventLoop, which is not compatible with
0 commit comments