diff options
author | Roger Dingledine <arma@torproject.org> | 2010-08-18 16:42:15 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2010-08-18 16:42:15 -0400 |
commit | f6734103e17a5b0d11422388df516e46f2e83821 (patch) | |
tree | 6327e972287d3167bbe349015c5d0d43cdc9cfe0 | |
parent | c1260cb6ec7e7fb85bc7c3f318199bae12f1716e (diff) | |
download | tor-f6734103e17a5b0d11422388df516e46f2e83821.tar.gz tor-f6734103e17a5b0d11422388df516e46f2e83821.zip |
fold in even more changelog entries
-rw-r--r-- | ChangeLog | 19 | ||||
-rw-r--r-- | changes/bridge-geoip-delay | 6 | ||||
-rw-r--r-- | changes/bug1141 | 5 | ||||
-rw-r--r-- | changes/bugfoundin1790 | 4 | ||||
-rw-r--r-- | changes/enhancement1790 | 5 | ||||
-rw-r--r-- | changes/headercleanup | 3 |
6 files changed, 18 insertions, 24 deletions
@@ -1,4 +1,4 @@ -Changes in version 0.2.2.15-alpha - 2010-08-1? +Changes in version 0.2.2.15-alpha - 2010-08-18 o Major bugfixes: - Stop assigning the HSDir flag to relays that disable their DirPort (and thus will refuse to answer directory requests). This @@ -47,6 +47,9 @@ Changes in version 0.2.2.15-alpha - 2010-08-1? structures and defines in or.h for now. - New unit tests for exit-port history statistics; refactored exit statistics code to be more easily tested. + - Relays report the number of bytes spent on answering directory + requests in extra-info descriptors similar to {read,write}-history. + Implements enhancement 1790. o Minor bugfixes (on 0.2.1.x and earlier): - Complain if PublishServerDescriptor is given multiple arguments that @@ -78,9 +81,17 @@ Changes in version 0.2.2.15-alpha - 2010-08-1? Servers can start sending this code when enough clients recognize it. Also update the spec to reflect this new reason. Bugfix on 0.1.0.1-rc; fixes bug 1793. + - Delay geoip stats collection by bridges for 6 hours, not 2 hours, + when we switch from being a public relay to a bridge. Otherwise + there will still be clients that see the relay in their consensus, + and the stats will end up wrong. Bugfix on 0.2.1.15-rc; fixes bug + 932 even more. - Instead of giving an assertion failure on an internal mismatch on estimated freelist size, just log a BUG warning and try later. Mitigates but does not fix bug 1125. + - Fix an assertion failure that could occur in caches or bridge users + when using a very short voting interval on a testing network. + Diagnosed by Robert Hogan. Fixes bug 1141; bugfix on 0.2.0.8-alpha. o Minor bugfixes (on 0.2.2.x): - Alter directory authorities to always consider Exit-flagged nodes @@ -105,11 +116,17 @@ Changes in version 0.2.2.15-alpha - 2010-08-1? bug 1741. - Fix compilation with --with-dmalloc set. Bugfix on 0.2.2.6-alpha; fixes bug 1832. + - Correctly report written bytes on linked connections. Found while + implementing 1790. Bugfix on 0.2.2.4-alpha. - Fix three memory leaks: one in circuit_build_times_parse_state(), one in dirvote_add_signatures_to_pending_consensus(), and one every time we parse a v3 network consensus. Bugfixes on 0.2.2.14-alpha, 0.2.2.6-alpha, and 0.2.2.10-alpha respectively; fixes bug 1831. + o Code simplifications and refactoring: + - Remove a bunch of unused function declarations as well as a block of + #if 0'd code from the unit tests. Closes bug 1824. + Changes in version 0.2.2.14-alpha - 2010-07-12 Tor 0.2.2.14-alpha greatly improves client-side handling of diff --git a/changes/bridge-geoip-delay b/changes/bridge-geoip-delay deleted file mode 100644 index 1f8e751bc0..0000000000 --- a/changes/bridge-geoip-delay +++ /dev/null @@ -1,6 +0,0 @@ - o Minor bugfixes: - - Delay geoip stats collection by bridges for 6 hours, not 2 hours, - when we switch from being a public relay to a bridge. Otherwise - there will still be clients that see the relay in their consensus, - and the stats will end up wrong. Bugfix on 0.2.1.15-rc; fixes bug - 932 even more. diff --git a/changes/bug1141 b/changes/bug1141 deleted file mode 100644 index 9975e418d6..0000000000 --- a/changes/bug1141 +++ /dev/null @@ -1,5 +0,0 @@ - o Minor bugfixes: - - Fix an assertion failure that could occur in caches or bridge users - when using a very short voting interval on a testing network. - Diagnosed by Robert Hogan. Fixes bug 1141; bugfix on 0.2.0.8-alpha. - diff --git a/changes/bugfoundin1790 b/changes/bugfoundin1790 deleted file mode 100644 index 0a18fe181d..0000000000 --- a/changes/bugfoundin1790 +++ /dev/null @@ -1,4 +0,0 @@ - o Minor bugfixes: - - Correctly report written bytes on linked connections. Found while - implementing 1790. Bugfix on 0.2.2.4-alpha. - diff --git a/changes/enhancement1790 b/changes/enhancement1790 deleted file mode 100644 index d92292a774..0000000000 --- a/changes/enhancement1790 +++ /dev/null @@ -1,5 +0,0 @@ - o Minor features: - - Relays report the number of bytes spent on answering directory - requests in extra-info descriptors similar to {read,write}-history. - Implements enhancement 1790. - diff --git a/changes/headercleanup b/changes/headercleanup deleted file mode 100644 index 25a58fcda8..0000000000 --- a/changes/headercleanup +++ /dev/null @@ -1,3 +0,0 @@ - o Code simplifications and refactoring: - - Remove a bunch of unused function declarations as well as a block of - #if 0'd code from the unit tests. Closes bug 1824. |