style: no need to say "Tor" before "0.x.y.z" in changelog

This commit is contained in:
Nick Mathewson 2017-04-04 09:49:03 -04:00
parent fe3cb4a337
commit b44bb249a4
2 changed files with 17 additions and 19 deletions

View File

@ -10,7 +10,7 @@ Changes in version 0.3.0.5-rc - 2017-04-0?
o Major bugfixes (crash, directory connections):
- Fix a rare crash when sending a begin cell on a circuit whose
linked directory connection had already been closed. Fixes bug
21576; bugfix on Tor 0.2.9.3-alpha. Reported by Alec Muffett.
21576; bugfix on 0.2.9.3-alpha. Reported by Alec Muffett.
o Major bugfixes (guard selection):
- Fix a guard selection bug where Tor would refuse to bootstrap in
@ -31,12 +31,11 @@ Changes in version 0.3.0.5-rc - 2017-04-0?
o Minor bugfixes (hidden services):
- Make hidden services check for failed intro point connections,
even when they have exceeded their intro point creation limit.
Fixes bug 21596; bugfix on Tor 0.2.7.2-alpha. Reported by
Alec Muffett.
Fixes bug 21596; bugfix on 0.2.7.2-alpha. Reported by Alec Muffett.
- Make hidden services with 8 to 10 introduction points check for
failed circuits immediately after startup. Previously, they would
wait for 5 minutes before performing their first checks. Fixes bug
21594; bugfix on Tor 0.2.3.9-alpha. Reported by Alec Muffett.
21594; bugfix on 0.2.3.9-alpha. Reported by Alec Muffett.
o Minor bugfixes (memory leaks):
- Fix a memory leak when using GETCONF on a port option. Fixes bug

View File

@ -65,7 +65,7 @@ Changes in version 0.3.0.6 - 2017-04-??
o Major bugfixes (crash, directory connections):
- Fix a rare crash when sending a begin cell on a circuit whose
linked directory connection had already been closed. Fixes bug
21576; bugfix on Tor 0.2.9.3-alpha. Reported by Alec Muffett.
21576; bugfix on 0.2.9.3-alpha. Reported by Alec Muffett.
o Major bugfixes (directory authority):
- During voting, when marking a relay as a probable sybil, do not
@ -109,11 +109,11 @@ Changes in version 0.3.0.6 - 2017-04-??
o Major bugfixes (security, also in 0.2.9.9):
- Downgrade the "-ftrapv" option from "always on" to "only on when
--enable-expensive-hardening is provided." This hardening option, like
others, can turn survivable bugs into crashes--and having it on by
default made a (relatively harmless) integer overflow bug into a
denial-of-service bug. Fixes bug 21278 (TROVE-2017-001); bugfix on
0.2.9.1-alpha.
--enable-expensive-hardening is provided." This hardening option,
like others, can turn survivable bugs into crashes--and having it
on by default made a (relatively harmless) integer overflow bug
into a denial-of-service bug. Fixes bug 21278 (TROVE-2017-001);
bugfix on 0.2.9.1-alpha.
o Minor feature (client):
- Enable IPv6 traffic on the SocksPort by default. To disable this,
@ -400,12 +400,11 @@ Changes in version 0.3.0.6 - 2017-04-??
o Minor bugfixes (hidden services):
- Make hidden services check for failed intro point connections,
even when they have exceeded their intro point creation limit.
Fixes bug 21596; bugfix on Tor 0.2.7.2-alpha. Reported by
Alec Muffett.
Fixes bug 21596; bugfix on 0.2.7.2-alpha. Reported by Alec Muffett.
- Make hidden services with 8 to 10 introduction points check for
failed circuits immediately after startup. Previously, they would
wait for 5 minutes before performing their first checks. Fixes bug
21594; bugfix on Tor 0.2.3.9-alpha. Reported by Alec Muffett.
21594; bugfix on 0.2.3.9-alpha. Reported by Alec Muffett.
- Stop ignoring misconfigured hidden services. Instead, refuse to
start tor until the misconfigurations have been corrected. Fixes
bug 20559; bugfix on multiple commits in 0.2.7.1-alpha
@ -454,8 +453,7 @@ Changes in version 0.3.0.6 - 2017-04-??
o Minor bugfixes (testing):
- Fix Raspbian build issues related to missing socket errno in
test_util.c. Fixes bug 21116; bugfix on tor-0.2.8.2. Patch
by "hein".
test_util.c. Fixes bug 21116; bugfix on 0.2.8.2. Patch by "hein".
- Remove undefined behavior from the backtrace generator by removing
its signal handler. Fixes bug 21026; bugfix on 0.2.5.2-alpha.
- Use bash in src/test/test-network.sh. This ensures we reliably
@ -478,7 +476,7 @@ Changes in version 0.3.0.6 - 2017-04-??
- When finishing writing a file to disk, if we were about to replace
the file with the temporary file created before and we fail to
replace it, remove the temporary file so it doesn't stay on disk.
Fixes bug 20646; bugfix on tor-0.2.0.7-alpha. Patch by fk.
Fixes bug 20646; bugfix on 0.2.0.7-alpha. Patch by fk.
o Minor bugfixes (Windows services):
- Be sure to initialize the monotonic time subsystem before using
@ -536,10 +534,9 @@ Changes in version 0.3.0.6 - 2017-04-??
network (of the form *.local) are also rejected. Closes
ticket 17070.
- Correct the value for AuthDirGuardBWGuarantee in the manpage, from
250 KBytes to 2 MBytes. Fixes bug 20435; bugfix
on tor-0.2.5.6-alpha.
250 KBytes to 2 MBytes. Fixes bug 20435; bugfix on 0.2.5.6-alpha.
- Include the "TBits" unit in Tor's man page. Fixes part of bug
20622; bugfix on tor-0.2.5.1-alpha.
20622; bugfix on 0.2.5.1-alpha.
- Small fixes to the fuzzing documentation. Closes ticket 21472.
- Stop the man page from incorrectly stating that HiddenServiceDir
must already exist. Fixes 20486.
@ -565,3 +562,5 @@ Changes in version 0.3.0.6 - 2017-04-??
from "overcaffeinated".
- Perform the coding style checks when running the tests and fail
when coding style violations are found. Closes ticket 5500.