summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-07-09 10:29:04 -0400
committerNick Mathewson <nickm@torproject.org>2018-07-09 10:29:04 -0400
commitfb2f7cc27b526629c0e13b823e1290ff6e8c9156 (patch)
tree92743c57a68aa58ffdad44a0a2d15a33c6fb2453
parent4e6d59a2ccc84c72aca3c3204fe72f670f78de51 (diff)
downloadtor-fb2f7cc27b526629c0e13b823e1290ff6e8c9156.tar.gz
tor-fb2f7cc27b526629c0e13b823e1290ff6e8c9156.zip
Edit the changelog slightly.
-rw-r--r--ChangeLog18
1 files changed, 8 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 13a75b2603..de3c088a30 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,9 +4,6 @@ Changes in version 0.3.4.4-rc - 2018-07-??
release candidate: if no serious bugs are found, we expect that the
stable 0.3.4 release will be (almost) the same as this release.
- o Minor feature (Rust, portability):
- - Rust cross-compilation is now supported. Closes ticket 25895.
-
o Minor features (compilation):
- When building Tor, prefer to use Python 3 over Python 2, and more
recent (contemplated) versions over older ones. Closes
@@ -16,25 +13,26 @@ Changes in version 0.3.4.4-rc - 2018-07-??
- Update geoip and geoip6 to the July 3 2018 Maxmind GeoLite2
Country database. Closes ticket 26674.
+ o Minor features (Rust, portability):
+ - Rust cross-compilation is now supported. Closes ticket 25895.
+
o Minor bugfixes (compilation):
- Fix a compilation warning on some versions of GCC when building
code that calls routerinfo_get_my_routerinfo() twice, assuming
that the second call will succeed if the first one did. Fixes bug
26269; bugfix on 0.2.8.2-alpha.
- o Minor bugfixes (controller):
+ o Minor bugfixes (control port):
- Report the port correctly when a port is configured to bind to
"auto". Fixes bug 26568; bugfix on 0.3.4.1-alpha.
+ - Handle the HSADDRESS= argument to the HSPOST command properly.
+ (Previously, this argument was misparsed and thus ignored.) Fixes
+ bug 26523; bugfix on 0.3.3.1-alpha. Patch by "akwizgran".
o Minor bugfixes (correctness, flow control):
- Upon receiving a stream-level SENDME cell, verify that our window
has not grown too large. Fixes bug 26214; bugfix on svn
- r54 (pre-0.0.1)
-
- o Minor bugfixes (hidden service, control port):
- - The HSPOST command wasn't parsing properly the HSADDRESS=
- parameter and thus not using it. It now handles it correctly.
- Fixes bug 26523; bugfix on 0.3.3.1-alpha. Patch by "akwizgran".
+ r54 (pre-0.0.1).
o Minor bugfixes (memory, correctness):
- Fix a number of small memory leaks identified by coverity. Fixes