mark #27841 as major

This commit is contained in:
Roger Dingledine
2019-01-07 12:41:02 -05:00
parent fb2af84a3f
commit 9beb085c10
+7 -5
View File
@@ -130,6 +130,13 @@ Changes in version 0.3.5.7 - 2019-01-07
when a client port was set (Socks, Trans, NATD, DNS or HTTPTunnel
port). Fixes bug 27849; bugfix on 0.3.4.1-alpha.
o Major bugfixes (onion service v3):
- On an intro point for a version 3 onion service, stop closing
introduction circuits on a NACK. This lets the client decide
whether to reuse the circuit or discard it. Previously, we closed
intro circuits when sending NACKs. Fixes bug 27841; bugfix on
0.3.2.1-alpha. Patch by Neel Chaunan.
o Major bugfixes (OpenSSL, portability):
- Fix our usage of named groups when running as a TLS 1.3 client in
OpenSSL 1.1.1. Previously, we only initialized EC groups when
@@ -526,11 +533,6 @@ Changes in version 0.3.5.7 - 2019-01-07
- When the onion service directory can't be created or has the wrong
permissions, do not log a stack trace. Fixes bug 27335; bugfix
on 0.3.2.1-alpha.
- On an intro point for a version 3 onion service, stop closing
introduction circuits on an NACK. This lets the client decide
whether to reuse the circuit or discard it. Previously, we closed
intro circuits when sending NACKs. Fixes bug 27841; bugfix on
0.3.2.1-alpha. Patch by Neel Chaunan.
- When replacing a descriptor in the client cache, make sure to
close all client introduction circuits for the old descriptor, so
we don't end up with unusable leftover circuits. Fixes bug 27471;