mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2025-01-30 23:09:44 +00:00
Prep for release: CHANGELOG and CONTRIBUTORS
This commit is contained in:
parent
6a31d32712
commit
789700ade2
22
CHANGELOG
22
CHANGELOG
@ -1,3 +1,25 @@
|
|||||||
|
25 August 2013: mitmproxy 0.9.2:
|
||||||
|
|
||||||
|
* Improvements to the mitmproxywrapper.py helper script for OSX.
|
||||||
|
|
||||||
|
* Don't take minor version into account when checking for serialized file
|
||||||
|
compatibility.
|
||||||
|
|
||||||
|
* Fix a bug causing resource exhaustion under some circumstances for SSL
|
||||||
|
connections.
|
||||||
|
|
||||||
|
* Revamp the way we store interception certificates. We used to store these
|
||||||
|
on disk, they're now in-memory. This fixes a race condition related to
|
||||||
|
cert handling, and improves compatibility with Windows, where the rules
|
||||||
|
governing permitted file names are weird, resulting in errors for some
|
||||||
|
valid IDNA-encoded names.
|
||||||
|
|
||||||
|
* Display transfer rates for responses in the flow list.
|
||||||
|
|
||||||
|
* Many other small bugfixes and improvements.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
16 June 2013: mitmproxy 0.9.1:
|
16 June 2013: mitmproxy 0.9.1:
|
||||||
|
|
||||||
|
43
CONTRIBUTORS
43
CONTRIBUTORS
@ -1,39 +1,42 @@
|
|||||||
777 Aldo Cortesi
|
801 Aldo Cortesi
|
||||||
18 Henrik Nordstrom
|
18 Henrik Nordstrom
|
||||||
13 Thomas Roth
|
13 Thomas Roth
|
||||||
|
13 Maximilian Hils
|
||||||
11 Stephen Altamirano
|
11 Stephen Altamirano
|
||||||
10 András Veres-Szentkirályi
|
10 András Veres-Szentkirályi
|
||||||
8 Rouli
|
|
||||||
8 Jason A. Novak
|
8 Jason A. Novak
|
||||||
|
8 Rouli
|
||||||
7 Alexis Hildebrandt
|
7 Alexis Hildebrandt
|
||||||
6 Maximilian Hils
|
4 Marc Liyanage
|
||||||
4 Valtteri Virtanen
|
4 Valtteri Virtanen
|
||||||
4 Bryan Bishop
|
4 Bryan Bishop
|
||||||
3 Chris Neasbitt
|
3 Chris Neasbitt
|
||||||
2 Heikki Hannikainen
|
3 Kyle Manna
|
||||||
2 Jim Lloyd
|
2 Jim Lloyd
|
||||||
2 Mark E. Haase
|
2 Matthias Urlichs
|
||||||
2 Michael Frister
|
2 Michael Frister
|
||||||
2 Rob Wills
|
|
||||||
2 alts
|
2 alts
|
||||||
|
2 Rob Wills
|
||||||
2 israel
|
2 israel
|
||||||
1 Mathieu Mitchell
|
2 Mark E. Haase
|
||||||
1 Michael Bisbjerg
|
2 Heikki Hannikainen
|
||||||
1 capt8bit
|
1 Oleksandr Sheremet
|
||||||
1 Nicolas Esteves
|
|
||||||
1 Paul
|
1 Paul
|
||||||
1 phil plante
|
|
||||||
1 Rory McCann
|
1 Rory McCann
|
||||||
1 Jakub Nawalaniec
|
|
||||||
1 Rune Halvorsen
|
1 Rune Halvorsen
|
||||||
1 Sahn Lam
|
1 Sahn Lam
|
||||||
1 Ivaylo Popov
|
|
||||||
1 Andy Smith
|
|
||||||
1 Ulrich Petri
|
|
||||||
1 Henrik Nordström
|
|
||||||
1 Felix Wolfsteller
|
1 Felix Wolfsteller
|
||||||
1 Yuangxuan Wang
|
|
||||||
1 Kit Randel
|
|
||||||
1 Marc Liyanage
|
|
||||||
1 meeee
|
|
||||||
1 Eric Entzel
|
1 Eric Entzel
|
||||||
|
1 Ulrich Petri
|
||||||
|
1 Andy Smith
|
||||||
|
1 Yuangxuan Wang
|
||||||
|
1 capt8bit
|
||||||
|
1 meeee
|
||||||
|
1 Jakub Nawalaniec
|
||||||
|
1 Kit Randel
|
||||||
|
1 phil plante
|
||||||
|
1 Ivaylo Popov
|
||||||
|
1 Mathieu Mitchell
|
||||||
|
1 Henrik Nordström
|
||||||
|
1 Michael Bisbjerg
|
||||||
|
1 Nicolas Esteves
|
||||||
|
@ -2,8 +2,15 @@
|
|||||||
|
|
||||||
# Quick and dangerous script for building OSX binaries.
|
# Quick and dangerous script for building OSX binaries.
|
||||||
|
|
||||||
# First, have a recent checkout of the dev version of pyinstaller. Change into
|
# A few quirks to note, which should be re-checked every release:
|
||||||
# the pyinstaller directory, and then run this script.
|
# - We require the latest development version of PyInstaller.
|
||||||
|
|
||||||
|
# - PyInstaller has trouble detecting the zope.interfaces package. This is
|
||||||
|
# required by Twisted, which for mysterious reasons is required by Urwid. The
|
||||||
|
# answer is to touch the __init__.py file in the zope directory. On my system:
|
||||||
|
# touch /Library/Python/2.7/site-packages/zope/__init__.py
|
||||||
|
|
||||||
|
# To run, change into the pyinstaller directory, and then run this script.
|
||||||
|
|
||||||
DST=/tmp/osx-mitmproxy
|
DST=/tmp/osx-mitmproxy
|
||||||
MITMPROXY=~/mitmproxy/mitmproxy
|
MITMPROXY=~/mitmproxy/mitmproxy
|
||||||
|
@ -1,15 +0,0 @@
|
|||||||
Flask==0.9
|
|
||||||
Jinja2==2.7
|
|
||||||
MarkupSafe==0.18
|
|
||||||
PIL==1.1.7
|
|
||||||
Werkzeug==0.8.3
|
|
||||||
lxml==3.2.1
|
|
||||||
netlib==0.9
|
|
||||||
nose==1.3.0
|
|
||||||
pathod==0.9
|
|
||||||
pyOpenSSL==0.13
|
|
||||||
pyasn1==0.1.7
|
|
||||||
requests==1.2.2
|
|
||||||
urwid==1.1.1
|
|
||||||
wsgiref==0.1.2
|
|
||||||
jsbeautifier==1.4.0
|
|
Loading…
Reference in New Issue
Block a user