summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2015-06-08 10:50:54 -0400
committerNick Mathewson <nickm@torproject.org>2015-06-08 10:50:54 -0400
commit41db4bffd69f7de99c2381d56de8c3b6e348fd79 (patch)
tree5e269168f78948cce68fc7978d0820f956884550
parent602e328dc33fec8eec976e497e04db810382b8b9 (diff)
downloadtor-41db4bffd69f7de99c2381d56de8c3b6e348fd79.tar.gz
tor-41db4bffd69f7de99c2381d56de8c3b6e348fd79.zip
Start changelog for 0.2.6.9 (lintchanges, sortchanges, formatchangelog).
-rw-r--r--ChangeLog36
-rw-r--r--changes/bug160303
-rw-r--r--changes/bug161644
-rw-r--r--changes/bug162125
-rw-r--r--changes/bug162447
-rw-r--r--changes/bug162475
-rw-r--r--changes/ticket82437
7 files changed, 36 insertions, 31 deletions
diff --git a/ChangeLog b/ChangeLog
index 8135c78f32..0670977c51 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,39 @@
+Changes in version 0.2.6.9 - 2015-06-??
+ Blurb goes here.
+
+ o Major bugfixes (client-side privacy):
+ - Properly separate out each SOCKSPort when applying stream
+ isolation. The error occured because each port's session group was
+ being overwritten by a default value. Fixes bug 16247; bugfix on
+ 0.2.6.3-alpha. Patch by "jojelino".
+
+ o Minor feature (directory aurhorities, security):
+ - The HSDir flag given by authorities now requires the Stable flag.
+ For the current network, this results in going from 2887 to 2806
+ HSDirs. Also, it makes it harder for an attacker to launch a sybil
+ attack by raising the effort for a relay to become Stable which
+ takes at the very least 7 days to do so and by keeping the 96
+ hours uptime requirement for HSDir. Implements ticket 8243.
+
+ o Minor bugfixes (compilation):
+ - Build with --enable-systemd correctly when libsystemd is
+ installed, but systemd is not. Fixes bug 16164; bugfix on
+ 0.2.6.3-alpha. Patch from Peter Palfrader.
+
+ o Minor bugfixes (Linux seccomp2 sandbox):
+ - Fix sandboxing to work when running as a relay again. This
+ includes correctly allowing renaming secret_id_key and allowing
+ the eventfd2 and futex syscalls. Fixes bug 16244; bugfix on
+ 0.2.6.1-alpha. Patch by Peter Palfrader.
+ - Allow systemd connections to work with the Linux seccomp2 sandbox
+ code. Fixes bug 16212; bugfix on 0.2.6.2-alpha. Patch by
+ Peter Palfrader.
+
+ o Minor bugfixes (tests):
+ - Fix a crash in the unit tests on MSVC2013. Fixes bug 16030; bugfix
+ on 0.2.6.2-alpha. Patch from "NewEraCracker".
+
+
Changes in version 0.2.6.8 - 2015-05-21
Tor 0.2.6.8 fixes a bit of dodgy code in parsing INTRODUCE2 cells, and
fixes an authority-side bug in assigning the HSDir flag. All directory
diff --git a/changes/bug16030 b/changes/bug16030
deleted file mode 100644
index c14fd62303..0000000000
--- a/changes/bug16030
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor bugfixes (tests):
- - Fix a crash in the unit tests on MSVC2013. Fixes bug 16030; bugfix on
- 0.2.6.2-alpha. Patch from "NewEraCracker". \ No newline at end of file
diff --git a/changes/bug16164 b/changes/bug16164
deleted file mode 100644
index fbb383c26d..0000000000
--- a/changes/bug16164
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor bugfixes (compilation):
- - Build with --enable-systemd correctly when libsystemd is installed,
- but systemd is not. Fixes bug 16164, bugfix on 0.2.6.3-alpha. Patch
- from Peter Palfrader.
diff --git a/changes/bug16212 b/changes/bug16212
deleted file mode 100644
index bc1246376d..0000000000
--- a/changes/bug16212
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfixes (sandbox, systemd):
- - Allow systemd connections to work with the Linux seccomp2 sandbox
- code. Fixes bug 16212; bugfix on 0.2.6.2-alpha.
- Patch by Peter Palfrader.
-
diff --git a/changes/bug16244 b/changes/bug16244
deleted file mode 100644
index 00bc557983..0000000000
--- a/changes/bug16244
+++ /dev/null
@@ -1,7 +0,0 @@
- o Minor bugfixes (sandbox, relay):
- - Fix sandboxing to work when running as a relay again. This
- includes correctly allowing renaming secret_id_key and
- allowing the eventfd2 and futex syscalls.
- Fixes bug 16244; bugfix on 0.2.6.1-alpha.
- Patch by Peter Palfrader.
-
diff --git a/changes/bug16247 b/changes/bug16247
deleted file mode 100644
index 9464b1cb24..0000000000
--- a/changes/bug16247
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfixes (client-side privacy):
- - Properly separate out each SOCKSPort when applying stream isolation.
- The error occured because each port's session group was being
- overwritten by a default value. Fixes bug 16247; bugfix on
- 0.2.6.3-alpha. Patch by "jojelino".
diff --git a/changes/ticket8243 b/changes/ticket8243
deleted file mode 100644
index 8946a21a59..0000000000
--- a/changes/ticket8243
+++ /dev/null
@@ -1,7 +0,0 @@
- o Minor feature:
- - The HSDir flag given by authorities now requires the Stable flag. For
- the current network, this results in going from 2887 to 2806 HSDirs.
- Also, it makes it harder for an attacker to launch a sybil attack by
- raising the effort for a relay to become Stable which takes at the
- very least 7 days to do so and by keeping the 96 hours uptime
- requirement for HSDir. Implements ticket #8243.