aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2010-04-15 10:48:33 -0400
committerRoger Dingledine <arma@torproject.org>2010-04-15 10:48:33 -0400
commiteafbc3caa1bdb5003927fcd1c309495902fea1e1 (patch)
treec314ad3358fe88f40d82df52b3c2f7595f1fd596 /changes
parentc38fa93ad180e2d53f759821386d2b1dbff90100 (diff)
downloadtor-eafbc3caa1bdb5003927fcd1c309495902fea1e1.tar.gz
tor-eafbc3caa1bdb5003927fcd1c309495902fea1e1.zip
gather together the 0.2.2.11-alpha changelog
Diffstat (limited to 'changes')
-rw-r--r--changes/1324-fetch-from-v3-not-v25
-rw-r--r--changes/dont_segfault_client_on_hup3
-rw-r--r--changes/read_circpriorityhalflife_correctly7
-rw-r--r--changes/static_zlib4
-rw-r--r--changes/use_ssl_option_everywhere5
-rw-r--r--changes/weasel-testuite-thread-fixes8
6 files changed, 0 insertions, 32 deletions
diff --git a/changes/1324-fetch-from-v3-not-v2 b/changes/1324-fetch-from-v3-not-v2
deleted file mode 100644
index 7026980558..0000000000
--- a/changes/1324-fetch-from-v3-not-v2
+++ /dev/null
@@ -1,5 +0,0 @@
- o Major bugfixes:
- - Directory mirrors were fetching relay descriptors only from v2
- directory authorities, rather than v3 authorities like they should.
- Only 2 v2 authorities remain (compared to 7 v3 authorities), leading
- to a serious bottleneck. Bugfix on 0.2.0.9-alpha. Fixes bug 1324.
diff --git a/changes/dont_segfault_client_on_hup b/changes/dont_segfault_client_on_hup
deleted file mode 100644
index 96ffeb710f..0000000000
--- a/changes/dont_segfault_client_on_hup
+++ /dev/null
@@ -1,3 +0,0 @@
- o Major bugfixes:
- - Fix a segfault that happens whenever a Tor client is hup'd. Bugfix
- on 0.2.2.5-alpha; fixes bug 1341.
diff --git a/changes/read_circpriorityhalflife_correctly b/changes/read_circpriorityhalflife_correctly
deleted file mode 100644
index 651e4db284..0000000000
--- a/changes/read_circpriorityhalflife_correctly
+++ /dev/null
@@ -1,7 +0,0 @@
- o Major bugfixes:
- - Fix a stupid parenthesization error that made every possible value
- of CircPriorityHalflifeMsec get treated as "1 msec". Bugfix on
- 0.2.2.7-alpha.
- - Rename CircPriorityHalflifeMsec to CircuitPriorityHalflifeMsec,
- so authorities can tell newer relays about the option without
- breaking older ones.
diff --git a/changes/static_zlib b/changes/static_zlib
deleted file mode 100644
index 77a6131856..0000000000
--- a/changes/static_zlib
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor features:
- - Support for statically linking openssl/libevent was added earlier, now
- also allow statically linking zlib by specifying --enable-static-zlib.
- Enhancement requested by asdsa on #tor, see bug 1358.
diff --git a/changes/use_ssl_option_everywhere b/changes/use_ssl_option_everywhere
deleted file mode 100644
index 02adb3c8b4..0000000000
--- a/changes/use_ssl_option_everywhere
+++ /dev/null
@@ -1,5 +0,0 @@
- o Major bugfixes:
- - Fix SSL renegotiation behavior on OpenSSL versions that claim to
- be earlier than 0.9.8m, but which have in reality backported huge
- swaths of 0.9.8m or 0.9.8n renegotiation behavior. Possibly fix
- for some cases of bug 1346.
diff --git a/changes/weasel-testuite-thread-fixes b/changes/weasel-testuite-thread-fixes
deleted file mode 100644
index 4c32c3881a..0000000000
--- a/changes/weasel-testuite-thread-fixes
+++ /dev/null
@@ -1,8 +0,0 @@
- o Minor bugfixes:
- - Testsuite: In the util/threads test no longer free the test_mutex
- before all worker threads have finished.
- - Testsuite: The master thread could starve the worker threads quite
- badly on certain systems, causing them to run only partially in
- the allowed window. This resulted in test failures. Now the master
- thread sleeps occasionally for a few microseconds while the two
- worker-threads compete for the mutex.