update changelog, bump pyinstaller
This commit is contained in:
parent
da6b04a47b
commit
3fe3d4f47a
|
@ -2,7 +2,10 @@
|
||||||
|
|
||||||
## Unreleased: mitmproxy next
|
## Unreleased: mitmproxy next
|
||||||
|
|
||||||
* Temporarily downgrade PyInstaller to fix standalone Linux binaries.
|
* The precompiled binaries now ship with OpenSSL 3.0.7, which resolves CVE-2022-3602 and CVE-2022-3786.
|
||||||
|
* Performance and stability improvements for WireGuard mode.
|
||||||
|
([#5694](https://github.com/mitmproxy/mitmproxy/issues/5694), @mhils, @decathorpe)
|
||||||
|
* Fix a bug where the standalone Linux binaries would require libffi to be installed.
|
||||||
([#5699](https://github.com/mitmproxy/mitmproxy/issues/5699), @mhils)
|
([#5699](https://github.com/mitmproxy/mitmproxy/issues/5699), @mhils)
|
||||||
* Hard exit when mitmproxy cannot write logs, fixes endless loop when parent process exits.
|
* Hard exit when mitmproxy cannot write logs, fixes endless loop when parent process exits.
|
||||||
([#4669](https://github.com/mitmproxy/mitmproxy/issues/4669), @Prinzhorn)
|
([#4669](https://github.com/mitmproxy/mitmproxy/issues/4669), @Prinzhorn)
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -108,7 +108,7 @@ setup(
|
||||||
"hypothesis>=5.8,<7",
|
"hypothesis>=5.8,<7",
|
||||||
"parver>=0.1,<2.0",
|
"parver>=0.1,<2.0",
|
||||||
"pdoc>=4.0.0",
|
"pdoc>=4.0.0",
|
||||||
"pyinstaller==5.5",
|
"pyinstaller==5.6.2",
|
||||||
"pytest-asyncio>=0.17,<0.21",
|
"pytest-asyncio>=0.17,<0.21",
|
||||||
"pytest-cov>=2.7.1,<4.1",
|
"pytest-cov>=2.7.1,<4.1",
|
||||||
"pytest-timeout>=1.3.3,<2.2",
|
"pytest-timeout>=1.3.3,<2.2",
|
||||||
|
|
Loading…
Reference in New Issue