summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2015-07-27 10:53:09 -0400
committerNick Mathewson <nickm@torproject.org>2015-07-27 10:53:09 -0400
commit36c0ae6f7834af16c379ac399edf7af514cafbb5 (patch)
treebc98efb9b5d311418480428ce25f287f6e660150
parentd6fc50a28d3ca6a80da2218272e047404c4d7939 (diff)
downloadtor-0.2.7.2-alpha.tar.gz
tor-0.2.7.2-alpha.zip
Fold final entries into changelogtor-0.2.7.2-alpha
-rw-r--r--ChangeLog33
-rw-r--r--changes/bug161625
-rw-r--r--changes/bug166314
-rw-r--r--changes/bug166745
-rw-r--r--changes/ticket23257
5 files changed, 27 insertions, 27 deletions
diff --git a/ChangeLog b/ChangeLog
index d4c4d71726..8329bf0aff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,10 @@
-Changes in version 0.2.7.2-alpha - 2015-07-27
- This, the second alpha in the Tor 0.2.7 series, has a number of new
- features, including a way to manually pick the number of introduction
- points for hidden services, and the much stronger Ed25519 signing key
- algorithm for regular Tor relays (including support for encrypted
- offline identity keys in the new algorithm).
+None
+ Changes in version 0.2.7.2-alpha - 2015-07-27 This, the second alpha
+ in the Tor 0.2.7 series, has a number of new features, including a way
+ to manually pick the number of introduction points for hidden
+ services, and the much stronger Ed25519 signing key algorithm for
+ regular Tor relays (including support for encrypted offline identity
+ keys in the new algorithm).
Support for Ed25519 on relays is currently limited to signing router
descriptors; later alphas in this series will extend Ed25519 key
@@ -112,6 +113,10 @@ Changes in version 0.2.7.2-alpha - 2015-07-27
character '_' to appear, in order to cope with domains observed in
the wild that are serving non-RFC compliant records. Resolves
ticket 16430.
+ - Relax the validation done to hostnames in SOCKS5 requests, and
+ allow a single trailing '.' to cope with clients that pass FQDNs
+ using that syntax to explicitly indicate that the domain name is
+ fully-qualified. Fixes bug 16674; bugfix on 0.2.6.2-alpha.
- Add GroupWritable and WorldWritable options to unix-socket based
SocksPort and ControlPort options. These options apply to a single
socket, and override {Control,Socks}SocketsGroupWritable. Closes
@@ -187,9 +192,17 @@ Changes in version 0.2.7.2-alpha - 2015-07-27
code. Fixes bug 16212; bugfix on 0.2.6.2-alpha. Patch by
Peter Palfrader.
+ o Minor bugfixes (relay):
+ - Fix a rarely-encountered memory leak when failing to initialize
+ the thread pool. Fixes bug 16631; bugfix on 0.2.6.3-alpha. Patch
+ from "cypherpunks".
+
o Minor bugfixes (systemd):
- Fix an accidental formatting error that broke the systemd
configuration file. Fixes bug 16152; bugfix on 0.2.7.1-alpha.
+ - Tor's systemd unit file no longer contains extraneous spaces.
+ These spaces would sometimes confuse tools like deb-systemd-
+ helper. Fixes bug 16162; bugfix on 0.2.5.5-alpha.
o Minor bugfixes (tests):
- Use the configured Python executable when running test-stem-full.
@@ -219,6 +232,14 @@ Changes in version 0.2.7.2-alpha - 2015-07-27
"trunnel" binary encoding generator, to reduce the risk of bugs
due to programmer error. Done as part of ticket 12498.
+ o Documentation:
+ - Include a specific and (hopefully) accurate documentation of the
+ torrc file's meta-format in doc/torrc_format.txt. This is mainly
+ of interest to people writing programs to parse or generate torrc
+ files. This document is not a commitment to long-term
+ compatibility; some aspects of the current format are a bit
+ ridiculous. Closes ticket 2325.
+
o Removed features:
- Tor no longer supports copies of OpenSSL that are missing support
for Elliptic Curve Cryptography. (We began using ECC when
diff --git a/changes/bug16162 b/changes/bug16162
deleted file mode 100644
index 3732424b78..0000000000
--- a/changes/bug16162
+++ /dev/null
@@ -1,5 +0,0 @@
-
- o Minor bugfixes (systemd):
- - Tor's systemd unit file no longer contains extraneous spaces.
- These spaces would sometimes confuse tools like deb-systemd-helper.
- Fixes bug 16162; bugfix on 0.2.5.5-alpha.
diff --git a/changes/bug16631 b/changes/bug16631
deleted file mode 100644
index 24c5747477..0000000000
--- a/changes/bug16631
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor bugfixes (relay):
- - Fix a rarely-encountered memory leak when failing to initialize
- the thread pool. Fixes bug 16631; bugfix on 0.2.6.3-alpha. Patch
- from "cypherpunks".
diff --git a/changes/bug16674 b/changes/bug16674
deleted file mode 100644
index de55523fc8..0000000000
--- a/changes/bug16674
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor features (client):
- - Relax the validation done to hostnames in SOCKS5 requests, and allow
- a single trailing '.' to cope with clients that pass FQDNs using that
- syntax to explicitly indicate that the domain name is
- fully-qualified. Fixes bug 16674; bugfix on 0.2.6.2-alpha.
diff --git a/changes/ticket2325 b/changes/ticket2325
deleted file mode 100644
index b96e514ae2..0000000000
--- a/changes/ticket2325
+++ /dev/null
@@ -1,7 +0,0 @@
- o Documentation:
- - Include a specific and (hopefully) accurate documentation of the torrc
- file's meta-format in doc/torrc_format.txt. This is mainly of
- interest to people writing programs to parse or generate torrc files.
- This document is not a commitment to long-term compatibility;
- some aspects of the current format are a bit ridiculous.
- Closes ticket 2325.