diff options
-rw-r--r-- | ChangeLog | 45 | ||||
-rw-r--r-- | changes/bug13796 | 3 | ||||
-rw-r--r-- | changes/bug13993 | 4 | ||||
-rw-r--r-- | changes/bug14184 | 5 | ||||
-rw-r--r-- | changes/bug14759 | 6 | ||||
-rw-r--r-- | changes/bug14764 | 4 | ||||
-rw-r--r-- | changes/bug14802 | 4 | ||||
-rw-r--r-- | changes/bug14819 | 5 | ||||
-rw-r--r-- | changes/feature12844 | 5 | ||||
-rw-r--r-- | changes/feature_13555 | 3 | ||||
-rw-r--r-- | changes/remove_mempools | 5 |
11 files changed, 45 insertions, 44 deletions
@@ -55,6 +55,10 @@ Changes in version 0.2.6.3-alpha - 2015-02-?? circuits. Fixes bug 9819; bugfix on 0.2.1.1-alpha. Reported by "skruffy". + o Deprecated versions: + - Tor relays older than 0.2.4.18-rc are no longer allowed to advertise + themselves on the network. Closes ticket 13555. + o Minor features (authorities, testing): - Create TestingDirAuthVoteHSDir like TestingDirAuthVoteExit/Guard. Ensures that authorities vote the HSDir flag for the listed relays @@ -162,6 +166,12 @@ Changes in version 0.2.6.3-alpha - 2015-02-?? network.sh default time to match. Closes ticket 13401. Patch by "teor". + o Minor features (tor2web mode): + - Introduce the config option Tor2webRendezvousPoints, which + allows clients in Tor2webMode to select a specific Rendezvous + Point to be used in HS circuits. This might allow better + performance for Tor2Web nodes. Implements ticket #12844. + o Minor bugfixes (automapping): - Prevent changes to other options from removing the wildcard value "." from "AutomapHostsSuffixes". Fixes bug 12509; bugfix @@ -170,6 +180,10 @@ Changes in version 0.2.6.3-alpha - 2015-02-?? o Minor bugfixes (build): - Avoid warnings when building with systemd 209 or later. Fixes bug 14072; bugfix on 0.2.6.2-alpha. Patch from "h.venev". + - Remove the --disable-threads configure option again. It was accidentally + partially re-introduced in 29ac883606d6d. + Fixes bug 14819; bugfix on 0.2.6.2-alpha. + o Minor bugfixes (client DNS): - Report the correct cached DNS expiration times. Previously, we @@ -211,12 +225,19 @@ Changes in version 0.2.6.3-alpha - 2015-02-?? 14001; bugfix on 0.2.1.2-alpha. - Compile correctly with (unreleased) OpenSSL 1.1.0 headers. Addresses ticket 14188. + - Remove the --disable-threads configure option again. It was accidentally + partially re-introduced in 29ac883606d6d5ebfdcc2efceb2b4b60ee6a8916. + Fixes bug 14819; bugfix on 0.2.6.2-alpha. o Minor bugfixes (controller): - Add a code for the END_CIRC_REASON_IP_NOW_REDUNDANT circuit close reason. Fixes bug 14207; bugfix on 0.2.6.2-alpha. - Avoid crashing on a malformed EXTENDCIRCUIT command. Fixes bug 14116; bugfix on 0.2.2.9-alpha. + - On the control port, the "entry-guards" command was reporting an "up" + status for a relay that was actually down. This fixes the check if + "unreachable_since" is set and if so reports the "down" status. Fixes + bug 14184; bugfix on 0.1.2.2-alpha. o Minor bugfixes (directory authority): - Allow directory authorities to fetch more data from one another if @@ -257,6 +278,13 @@ Changes in version 0.2.6.3-alpha - 2015-02-?? domain_list. Bugfix on 0.2.3.1-alpha. - Add a string representation for LD_SCHED. Fixes bug 14740; bugfix on 0.2.6.1-alpha. + - Don't log messages to stdout twice when starting up. Fixes bug + 13993; bugfix on 0.2.6.1-alpha. + + o Minor bugfix (oom resistance): + - Make an educated guess about how much memory the system has when our + detection functionality fails on some operating system. Fixes bug 14802; + bugfix on 0.2.5.4-alpha. o Minor bugfixes (parsing): - Stop accepting milliseconds (or other junk) at the end of @@ -269,6 +297,15 @@ Changes in version 0.2.6.3-alpha - 2015-02-?? - Fix the ioctl()-based network interface lookup code so that it will work on systems that have variable-length struct ifreq, for example Mac OS X. + - Fix scheduler compilation on targets where char is unsigned. + Fixes bug 14764; bugfix on 0.2.6.2-alpha. Reported by Christian + Kujau. + + o Minor bugfixes (sandbox): + - Allow Glibc fatal errors to be sent to stderr before Tor exits. + Previously, glibc would try to write them to /dev/tty, and the sandbox + would trap the call and make Tor exit prematurely. Fixes bug 14759; + bugfix on 0.2.5.1-alpha. o Minor bugfixes (shutdown): - When shutting down, always call event_del() on lingering read or @@ -297,6 +334,10 @@ Changes in version 0.2.6.3-alpha - 2015-02-?? support. Fixes bug 14350; bugfix on 0.2.6.2-alpha. Patch from "blueness". + o Minor bugfixes (transparent proxy) + - Use getsockname, not getsockopt, to retrieve the address for + a TPROXY-redirected connection. Fixes bug 13796; bugfix on 0.2.5.2-alpha. + o Minor bugfixes (TLS): - Check more thoroughly throughout the TLS code for possible unlogged TLS errors. Possible diagnostic or fix for bug 13319. @@ -332,6 +373,10 @@ Changes in version 0.2.6.3-alpha - 2015-02-?? o Removed features: - To avoid confusion with the 'ExitRelay' option, 'ExitNode' is no longer silently accepted as an alias for 'ExitNodes'. + - The --enable-mempool and --enable-buf-freelists options, which + were originally created to work around bad malloc implementations, + no longer exist. They were off-by-default in 0.2.5. Closes + ticket 14848. o Testing: - Make the checkdir/perms test complete successfully even if the diff --git a/changes/bug13796 b/changes/bug13796 deleted file mode 100644 index 5c84f99917..0000000000 --- a/changes/bug13796 +++ /dev/null @@ -1,3 +0,0 @@ - o Minor bugfixes: - - Use getsockname, not getsockopt, to retrieve the address for - a TPROXY-redirected connection. Fixes bug 13796; bugfix on 0.2.5.2-alpha. diff --git a/changes/bug13993 b/changes/bug13993 deleted file mode 100644 index bf99559822..0000000000 --- a/changes/bug13993 +++ /dev/null @@ -1,4 +0,0 @@ - o Minor bugfixes (logging): - - Don't log messages to stdout twice when starting up. Fixes bug - 13993; bugfix on 0.2.6.1-alpha. - diff --git a/changes/bug14184 b/changes/bug14184 deleted file mode 100644 index 990d4bfb34..0000000000 --- a/changes/bug14184 +++ /dev/null @@ -1,5 +0,0 @@ - o Minor bugfixes: - - On the control port, the "entry-guards" command was reporting an "up" - status for a relay that was actually down. This fixes the check if - "unreachable_since" is set and if so reports the "down" status. Fixes - bug 14184; bugfix on 0.1.2.2-alpha. diff --git a/changes/bug14759 b/changes/bug14759 deleted file mode 100644 index 82fe97c1c0..0000000000 --- a/changes/bug14759 +++ /dev/null @@ -1,6 +0,0 @@ - o Minor bugfixes (sandbox): - - Allow Glibc fatal errors to be sent to stderr before Tor exits. - Previously, glibc would try to write them to /dev/tty, and the sandbox - would trap the call and make Tor exit prematurely. Fixes bug 14759; - bugfix on 0.2.5.1-alpha. - diff --git a/changes/bug14764 b/changes/bug14764 deleted file mode 100644 index b05ff69f7c..0000000000 --- a/changes/bug14764 +++ /dev/null @@ -1,4 +0,0 @@ - o Minor bugfixes (portability): - - Fix scheduler compilation on targets where char is unsigned. - Fixes bug 14764; bugfix on 0.2.6.2-alpha. Reported by Christian - Kujau. diff --git a/changes/bug14802 b/changes/bug14802 deleted file mode 100644 index fc7cfd1873..0000000000 --- a/changes/bug14802 +++ /dev/null @@ -1,4 +0,0 @@ - o Minor bugfix: - - Make an educated guess about how much memory the system has when our - detection functionality fails on some operating system. Fixes bug 14802; - bugfix on 0.2.5.4-alpha. diff --git a/changes/bug14819 b/changes/bug14819 deleted file mode 100644 index d00a78d19f..0000000000 --- a/changes/bug14819 +++ /dev/null @@ -1,5 +0,0 @@ - o Minor bugfixes - - Remove the --disable-threads configure option again. It was accidentally - partially re-introduced in 29ac883606d6d5ebfdcc2efceb2b4b60ee6a8916. - Fixes bug 14819; bugfix on 0.2.6.2-alpha. - diff --git a/changes/feature12844 b/changes/feature12844 deleted file mode 100644 index 7b7276640a..0000000000 --- a/changes/feature12844 +++ /dev/null @@ -1,5 +0,0 @@ - o Minor features: - - Introduce the config option Tor2webRendezvousPoints, which - allows clients in Tor2webMode to select a specific Rendezvous - Point to be used in HS circuits. This might allow better - performance for Tor2Web nodes. Implements ticket #12844. diff --git a/changes/feature_13555 b/changes/feature_13555 deleted file mode 100644 index bc9ca3799a..0000000000 --- a/changes/feature_13555 +++ /dev/null @@ -1,3 +0,0 @@ - o Deprecated versions: - - Tor relays older than 0.2.4.18-rc are no longer allowed to advertise - themselves on the network. Closes ticket 13555. diff --git a/changes/remove_mempools b/changes/remove_mempools deleted file mode 100644 index 8acaf29cfa..0000000000 --- a/changes/remove_mempools +++ /dev/null @@ -1,5 +0,0 @@ - o Removed features: - - The --enable-mempool and --enable-buf-freelists options, which - were originally created to work around bad malloc implementations, - no longer exist. They were off-by-default in 0.2.5. Closes - ticket 14848. |