Start 0.2.6.6 changelog; fold in the one entry.

This commit is contained in:
Nick Mathewson 2015-03-24 09:37:36 -04:00
parent 3eff8f38a5
commit 6ce1a82132
3 changed files with 28 additions and 12 deletions

View File

@ -1,3 +1,21 @@
Changes in version 0.2.6.6 - 2015-0?-??
Tor 0.2.6.6 is the first stable release in the 0.2.6 series.
It adds numerous safety, security, correctness, and performance
improvements. Client programs can be configured to use more kinds of
sockets, AutomapHosts works better, the multithreading backend is
improved, cell transmission is refactored, test coverage is much
higher, more denial-of-service attacks are handled, guard selection is
improved to handle long-term guards better, pluggable transports
should work a bit better, and some annoying hidden service performance
bugs should be addressed.
o Minor bugfixes (portability):
- Use the correct datatype in the SipHash-2-4 function to prevent
compilers from assuming any sort of alignment. Fixes bug 15436;
bugfix on 0.2.5.3-alpha.
Changes in version 0.2.6.5-rc - 2015-03-18 Changes in version 0.2.6.5-rc - 2015-03-18
Tor 0.2.6.5-rc is the second and (hopefully) last release candidate in Tor 0.2.6.5-rc is the second and (hopefully) last release candidate in
the 0.2.6. It fixes a small number of bugs found in 0.2.6.4-rc. the 0.2.6. It fixes a small number of bugs found in 0.2.6.4-rc.

View File

@ -5,17 +5,16 @@ each development snapshot, see the ChangeLog file.
Changes in version 0.2.6.6 - 2015-0?-?? Changes in version 0.2.6.6 - 2015-0?-??
Tor 0.2.6.6 is the first stable release in the 0.2.6 series. Tor 0.2.6.6 is the first stable release in the 0.2.6 series.
It adds numerous safety, security, correctness, and performance It adds numerous safety, security, correctness, and performance
improvements. Client programs can be configured to use more kinds improvements. Client programs can be configured to use more kinds of
of sockets, AutomapHosts works better, the multithreading backend sockets, AutomapHosts works better, the multithreading backend is
is improved, cell transmission is refactored, test coverage is improved, cell transmission is refactored, test coverage is much
much higher, more denial-of-service attacks are handled, guard higher, more denial-of-service attacks are handled, guard selection is
selection is improved to handle long-term guards better, pluggable improved to handle long-term guards better, pluggable transports
transports should work a bit better, and some annoying hidden should work a bit better, and some annoying hidden service performance
service performance bugs should be addressed. bugs should be addressed.
o New compiler and system requirements: o New compiler and system requirements:
- Tor 0.2.6.x requires that your compiler support more of the C99 - Tor 0.2.6.x requires that your compiler support more of the C99
@ -676,6 +675,9 @@ Changes in version 0.2.6.6 - 2015-0?-??
- Fix the ioctl()-based network interface lookup code so that it - Fix the ioctl()-based network interface lookup code so that it
will work on systems that have variable-length struct ifreq, for will work on systems that have variable-length struct ifreq, for
example Mac OS X. example Mac OS X.
- Use the correct datatype in the SipHash-2-4 function to prevent
compilers from assuming any sort of alignment. Fixes bug 15436;
bugfix on 0.2.5.3-alpha.
o Minor bugfixes (preventative security, C safety): o Minor bugfixes (preventative security, C safety):
- When reading a hexadecimal, base-32, or base-64 encoded value from - When reading a hexadecimal, base-32, or base-64 encoded value from

View File

@ -1,4 +0,0 @@
o Minor bugfixes (portability):
- Use the correct datatype in the SipHash-2-4 function to prevent compilers
from assuming any sort of alignment. Fixes bug 15436; bugfix on
0.2.5.3-alpha.