summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-07-26 20:06:21 -0400
committerNick Mathewson <nickm@torproject.org>2016-07-26 20:06:21 -0400
commitbabafdd4fbf1880a03298571094cd38ea2812beb (patch)
tree392b766b6df8ed21fea28c61be58dc45a9cadd6f
parentfe53f9c17d2e4f92db81d9b4e801ae45dbe4db08 (diff)
downloadtor-babafdd4fbf1880a03298571094cd38ea2812beb.tar.gz
tor-babafdd4fbf1880a03298571094cd38ea2812beb.zip
Start changelog for 0.2.8.6
-rw-r--r--ChangeLog15
-rw-r--r--changes/bug183977
-rw-r--r--changes/bug196608
-rw-r--r--changes/bug196823
4 files changed, 15 insertions, 18 deletions
diff --git a/ChangeLog b/ChangeLog
index b92830e552..ace46c37ec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+Changes in version 0.2.8.6 - 2016-07-2?
+ o Minor bugfixes (compilation):
+ - Fix a compilation warning in the unit tests on systems where char
+ is signed. Fixes bug 19682; bugfix on 0.2.8.1-alpha.
+
+ o Minor bugfixes (Linux seccomp2 sandbox):
+ - Allow more syscalls when running with "Sandbox 1" enabled:
+ sysinfo, getsockopt(SO_SNDBUF), and setsockopt(SO_SNDBUFFORCE). On
+ some systems, these are required for Tor to start. Fixes bug
+ 18397; bugfix on 0.2.5.1-alpha. Patch from Daniel Pinto.
+ - Allow IPPROTO_UDP datagram sockets when running with "Sandbox 1",
+ so that get_interface_address6_via_udp_socket_hack() can work.
+ Fixes bug 19660; bugfix on 0.2.5.1-alpha
+
+
Changes in version 0.2.8.5-rc - 2016-07-07
Tor 0.2.8.5-rc is the second release candidate in the Tor 0.2.8
series. If we find no new bugs or regressions here, the first stable
diff --git a/changes/bug18397 b/changes/bug18397
deleted file mode 100644
index 53993da4e6..0000000000
--- a/changes/bug18397
+++ /dev/null
@@ -1,7 +0,0 @@
- o Minor bugfixes (Linux seccomp2 sandbox):
- - Add a few missing syscalls to the seccomp2 sandbox: sysinfo,
- getsockopt(SO_SNDBUF), and setsockopt(SO_SNDBUFFORCE). On
- some systems, these are required for Tor to start with
- "Sandbox 1" enabled.
- Fixes bug 18397; bugfix on 0.2.5.1-alpha. Patch from
- Daniel Pinto.
diff --git a/changes/bug19660 b/changes/bug19660
deleted file mode 100644
index 72d32c8fe2..0000000000
--- a/changes/bug19660
+++ /dev/null
@@ -1,8 +0,0 @@
- o Minor bugfixes (sandboxing):
- - If we did not find a non-private IPaddress by iterating over
- interfaces, we would try to get one via
- get_interface_address6_via_udp_socket_hack(). This opens a
- datagram socket with IPPROTO_UDP. Previously all our datagram
- sockets (via libevent) used IPPROTO_IP, so we did not have that
- in the sandboxing whitelist. Add (SOCK_DGRAM, IPPROTO_UDP)
- sockets to the sandboxing whitelist. Fixes bug 19660.
diff --git a/changes/bug19682 b/changes/bug19682
deleted file mode 100644
index c799c417ac..0000000000
--- a/changes/bug19682
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor bugfixes (compilation):
- - Fix compilation warning in the unit tests on systems where
- char is signed. Fixes bug 19682; bugfix on 0.2.8.1-alpha.