mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-30 23:53:32 +01:00
Merge remote branch 'origin/maint-0.2.1'
Conflicts: ChangeLog configure.in contrib/tor-mingw.nsi.in src/win32/orconfig.h
This commit is contained in:
commit
571c94a735
17
ChangeLog
17
ChangeLog
@ -391,11 +391,16 @@ Changes in version 0.2.2.1-alpha - 2009-08-26
|
|||||||
occurred with the upgrade to Vidalia 0.2.3.
|
occurred with the upgrade to Vidalia 0.2.3.
|
||||||
|
|
||||||
|
|
||||||
Changes in Version 0.2.1.21 - 20??-??-??
|
Changes in version 0.2.1.21 - 2009-12-21
|
||||||
|
Tor 0.2.1.21 fixes an incompatibility with the most recent OpenSSL
|
||||||
|
library. If you use Tor on Linux / Unix and you're getting SSL
|
||||||
|
renegotiation errors, upgrading should help. We also recommend an
|
||||||
|
upgrade if you're an exit relay.
|
||||||
|
|
||||||
o Major bugfixes:
|
o Major bugfixes:
|
||||||
- Work around a security feature in OpenSSL 0.9.8l that prevents our
|
- Work around a security feature in OpenSSL 0.9.8l that prevents our
|
||||||
handshake from working unless we explicitly tell OpenSSL that we are
|
handshake from working unless we explicitly tell OpenSSL that we
|
||||||
using SSL renegotiation safely. We are, of course, but OpenSSL
|
are using SSL renegotiation safely. We are, of course, but OpenSSL
|
||||||
0.9.8l won't work unless we say we are.
|
0.9.8l won't work unless we say we are.
|
||||||
- Avoid crashing if the client is trying to upload many bytes and the
|
- Avoid crashing if the client is trying to upload many bytes and the
|
||||||
circuit gets torn down at the same time, or if the flip side
|
circuit gets torn down at the same time, or if the flip side
|
||||||
@ -403,14 +408,14 @@ Changes in Version 0.2.1.21 - 20??-??-??
|
|||||||
|
|
||||||
o Minor bugfixes:
|
o Minor bugfixes:
|
||||||
- Do not refuse to learn about authority certs and v2 networkstatus
|
- Do not refuse to learn about authority certs and v2 networkstatus
|
||||||
documents that are older than the latest consensus. This bug might
|
documents that are older than the latest consensus. This bug might
|
||||||
have degraded client bootstrapping. Bugfix on 0.2.0.10-alpha.
|
have degraded client bootstrapping. Bugfix on 0.2.0.10-alpha.
|
||||||
Spotted and fixed by xmux.
|
Spotted and fixed by xmux.
|
||||||
- Fix a couple of very-hard-to-trigger memory leaks, and one hard-to-
|
- Fix a couple of very-hard-to-trigger memory leaks, and one hard-to-
|
||||||
trigger platform-specific option misparsing case found by Coverity
|
trigger platform-specific option misparsing case found by Coverity
|
||||||
Scan.
|
Scan.
|
||||||
- Fix a compilation warning on Fedora 12 by removing an impossible-to-
|
- Fix a compilation warning on Fedora 12 by removing an impossible-to-
|
||||||
trigger assert. Fixes bug 1173.
|
trigger assert. Fixes bug 1173.
|
||||||
|
|
||||||
|
|
||||||
Changes in version 0.2.1.20 - 2009-10-15
|
Changes in version 0.2.1.20 - 2009-10-15
|
||||||
|
27
ReleaseNotes
27
ReleaseNotes
@ -3,6 +3,33 @@ This document summarizes new features and bugfixes in each stable release
|
|||||||
of Tor. If you want to see more detailed descriptions of the changes in
|
of Tor. If you want to see more detailed descriptions of the changes in
|
||||||
each development snapshot, see the ChangeLog file.
|
each development snapshot, see the ChangeLog file.
|
||||||
|
|
||||||
|
Changes in version 0.2.1.21 - 2009-12-21
|
||||||
|
Tor 0.2.0.21 fixes an incompatibility with the most recent OpenSSL
|
||||||
|
library. If you use Tor on Linux / Unix and you're getting SSL
|
||||||
|
renegotiation errors, upgrading should help. We also recommend an
|
||||||
|
upgrade if you're an exit relay.
|
||||||
|
|
||||||
|
o Major bugfixes:
|
||||||
|
- Work around a security feature in OpenSSL 0.9.8l that prevents our
|
||||||
|
handshake from working unless we explicitly tell OpenSSL that we
|
||||||
|
are using SSL renegotiation safely. We are, of course, but OpenSSL
|
||||||
|
0.9.8l won't work unless we say we are.
|
||||||
|
- Avoid crashing if the client is trying to upload many bytes and the
|
||||||
|
circuit gets torn down at the same time, or if the flip side
|
||||||
|
happens on the exit relay. Bugfix on 0.2.0.1-alpha; fixes bug 1150.
|
||||||
|
|
||||||
|
o Minor bugfixes:
|
||||||
|
- Do not refuse to learn about authority certs and v2 networkstatus
|
||||||
|
documents that are older than the latest consensus. This bug might
|
||||||
|
have degraded client bootstrapping. Bugfix on 0.2.0.10-alpha.
|
||||||
|
Spotted and fixed by xmux.
|
||||||
|
- Fix a couple of very-hard-to-trigger memory leaks, and one hard-to-
|
||||||
|
trigger platform-specific option misparsing case found by Coverity
|
||||||
|
Scan.
|
||||||
|
- Fix a compilation warning on Fedora 12 by removing an impossible-to-
|
||||||
|
trigger assert. Fixes bug 1173.
|
||||||
|
|
||||||
|
|
||||||
Changes in version 0.2.1.20 - 2009-10-15
|
Changes in version 0.2.1.20 - 2009-10-15
|
||||||
Tor 0.2.1.20 fixes a crash bug when you're accessing many hidden
|
Tor 0.2.1.20 fixes a crash bug when you're accessing many hidden
|
||||||
services at once, prepares for more performance improvements, and
|
services at once, prepares for more performance improvements, and
|
||||||
|
@ -228,5 +228,3 @@
|
|||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "0.2.2.6-alpha-dev"
|
#define VERSION "0.2.2.6-alpha-dev"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user