mitmproxy 10.2.2
This commit is contained in:
parent
09f4719711
commit
d75dc95a1e
|
@ -7,6 +7,10 @@
|
|||
|
||||
## Unreleased: mitmproxy next
|
||||
|
||||
|
||||
|
||||
## 21 January 2024: mitmproxy 10.2.2
|
||||
|
||||
* Fix a regression where clientplayback would break due to eager task execution.
|
||||
([#6605](https://github.com/mitmproxy/mitmproxy/pull/6605), @mhils)
|
||||
* Fix a regression where WebSocket connections would break due to eager task execution.
|
||||
|
|
|
@ -2,7 +2,7 @@ import os
|
|||
import subprocess
|
||||
import sys
|
||||
|
||||
VERSION = "11.0.0.dev"
|
||||
VERSION = "10.2.2"
|
||||
MITMPROXY = "mitmproxy " + VERSION
|
||||
|
||||
# Serialization format version. This is displayed nowhere, it just needs to be incremented by one
|
||||
|
|
Loading…
Reference in New Issue