aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2023-07-26 10:20:35 -0400
committerDavid Goulet <dgoulet@torproject.org>2023-07-26 10:20:35 -0400
commit45f9b17475f25a8bda4befb0830687742b3c2c1f (patch)
tree782bca65737899960d7fc166c25a4f961d900881
parent4ff8f0ffa01f9b9bea1aa31e1fa1eff2a54141ba (diff)
downloadtor-45f9b17475f25a8bda4befb0830687742b3c2c1f.tar.gz
tor-45f9b17475f25a8bda4befb0830687742b3c2c1f.zip
release: ChangeLog and ReleaseNotes for 0.4.7.14
Signed-off-by: David Goulet <dgoulet@torproject.org>
-rw-r--r--ChangeLog49
-rw-r--r--ReleaseNotes49
-rw-r--r--changes/bug407513
-rw-r--r--changes/bug408057
-rw-r--r--changes/fallbackdirs-2023-07-262
-rw-r--r--changes/geoip-2023-07-263
-rw-r--r--changes/ticket407412
-rw-r--r--changes/ticket407453
-rw-r--r--changes/ticket407535
-rw-r--r--changes/ticket407996
-rw-r--r--changes/ticket408244
11 files changed, 98 insertions, 35 deletions
diff --git a/ChangeLog b/ChangeLog
index e07939071d..7ccf00d7b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,52 @@
+Changes in version 0.4.7.14 - 2023-07-26
+ This version contains several minor fixes and one major bugfix affecting
+ vanguards (onion service). As usual, we recommend upgrading to this version
+ as soon as possible.
+
+ o Major bugfixes (vanguards):
+ - Rotate to a new L2 vanguard whenever an existing one loses the
+ Stable or Fast flag. Previously, we would leave these relays in
+ the L2 vanguard list but never use them, and if all of our
+ vanguards end up like this we wouldn't have any middle nodes left
+ to choose from so we would fail to make onion-related circuits.
+ Fixes bug 40805; bugfix on 0.4.7.1-alpha.
+
+ o Minor feature (CI):
+ - Update CI to use Debian Bullseye for runners.
+
+ o Minor feature (lzma):
+ - Fix compiler warnings for liblzma >= 5.3.1. Closes ticket 40741.
+
+ o Minor features (directory authorities):
+ - Directory authorities now include their AuthDirMaxServersPerAddr
+ config option in the consensus parameter section of their vote.
+ Now external tools can better predict how they will behave.
+ Implements ticket 40753.
+
+ o Minor features (fallbackdir):
+ - Regenerate fallback directories generated on July 26, 2023.
+
+ o Minor features (geoip data):
+ - Update the geoip files to match the IPFire Location Database, as
+ retrieved on 2023/07/26.
+
+ o Minor bugfix (relay, logging):
+ - The wrong max queue cell size was used in a protocol warning
+ logging statement. Fixes bug 40745; bugfix on 0.4.7.1-alpha.
+
+ o Minor bugfixes (compilation):
+ - Fix all -Werror=enum-int-mismatch warnings. No behavior change.
+ Fixes bug 40824; bugfix on 0.3.5.1-alpha.
+
+ o Minor bugfixes (metrics):
+ - Decrement hs_intro_established_count on introduction circuit
+ close. Fixes bug 40751; bugfix on 0.4.7.12.
+
+ o Minor bugfixes (sandbox):
+ - Allow membarrier for the sandbox. And allow rt_sigprocmask when
+ compiled with LTTng. Fixes bug 40799; bugfix on 0.3.5.1-alpha.
+
+
Changes in version 0.4.7.13 - 2023-01-12
This version contains three major bugfixes, two for relays and one for
client being a security fix, TROVE-2022-002. We have added, for Linux, the
diff --git a/ReleaseNotes b/ReleaseNotes
index 54e7374719..41f5b552e6 100644
--- a/ReleaseNotes
+++ b/ReleaseNotes
@@ -2,6 +2,55 @@ 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 each development snapshot, see the ChangeLog file.
+Changes in version 0.4.7.14 - 2023-07-26
+ This version contains several minor fixes and one major bugfix affecting
+ vanguards (onion service). As usual, we recommend upgrading to this version
+ as soon as possible.
+
+ o Major bugfixes (vanguards):
+ - Rotate to a new L2 vanguard whenever an existing one loses the
+ Stable or Fast flag. Previously, we would leave these relays in
+ the L2 vanguard list but never use them, and if all of our
+ vanguards end up like this we wouldn't have any middle nodes left
+ to choose from so we would fail to make onion-related circuits.
+ Fixes bug 40805; bugfix on 0.4.7.1-alpha.
+
+ o Minor feature (CI):
+ - Update CI to use Debian Bullseye for runners.
+
+ o Minor feature (lzma):
+ - Fix compiler warnings for liblzma >= 5.3.1. Closes ticket 40741.
+
+ o Minor features (directory authorities):
+ - Directory authorities now include their AuthDirMaxServersPerAddr
+ config option in the consensus parameter section of their vote.
+ Now external tools can better predict how they will behave.
+ Implements ticket 40753.
+
+ o Minor features (fallbackdir):
+ - Regenerate fallback directories generated on July 26, 2023.
+
+ o Minor features (geoip data):
+ - Update the geoip files to match the IPFire Location Database, as
+ retrieved on 2023/07/26.
+
+ o Minor bugfix (relay, logging):
+ - The wrong max queue cell size was used in a protocol warning
+ logging statement. Fixes bug 40745; bugfix on 0.4.7.1-alpha.
+
+ o Minor bugfixes (compilation):
+ - Fix all -Werror=enum-int-mismatch warnings. No behavior change.
+ Fixes bug 40824; bugfix on 0.3.5.1-alpha.
+
+ o Minor bugfixes (metrics):
+ - Decrement hs_intro_established_count on introduction circuit
+ close. Fixes bug 40751; bugfix on 0.4.7.12.
+
+ o Minor bugfixes (sandbox):
+ - Allow membarrier for the sandbox. And allow rt_sigprocmask when
+ compiled with LTTng. Fixes bug 40799; bugfix on 0.3.5.1-alpha.
+
+
Changes in version 0.4.7.13 - 2023-01-12
This version contains three major bugfixes, two for relays and one for
client being a security fix, TROVE-2022-002. We have added, for Linux, the
diff --git a/changes/bug40751 b/changes/bug40751
deleted file mode 100644
index baa5e90397..0000000000
--- a/changes/bug40751
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor bugfixes (metrics):
- - Decrement hs_intro_established_count on introduction circuit close. Fixes
- bug 40751; bugfix on 0.4.7.12.
diff --git a/changes/bug40805 b/changes/bug40805
deleted file mode 100644
index bed27c5e43..0000000000
--- a/changes/bug40805
+++ /dev/null
@@ -1,7 +0,0 @@
- o Major bugfixes (vanguards):
- - Rotate to a new L2 vanguard whenever an existing one loses the
- Stable or Fast flag. Previously, we would leave these relays in the
- L2 vanguard list but never use them, and if all of our vanguards
- end up like this we wouldn't have any middle nodes left to choose
- from so we would fail to make onion-related circuits. Fixes bug
- 40805; bugfix on 0.4.7.1-alpha.
diff --git a/changes/fallbackdirs-2023-07-26 b/changes/fallbackdirs-2023-07-26
deleted file mode 100644
index 131d76339a..0000000000
--- a/changes/fallbackdirs-2023-07-26
+++ /dev/null
@@ -1,2 +0,0 @@
- o Minor features (fallbackdir):
- - Regenerate fallback directories generated on July 26, 2023.
diff --git a/changes/geoip-2023-07-26 b/changes/geoip-2023-07-26
deleted file mode 100644
index f8e4feb573..0000000000
--- a/changes/geoip-2023-07-26
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor features (geoip data):
- - Update the geoip files to match the IPFire Location Database,
- as retrieved on 2023/07/26.
diff --git a/changes/ticket40741 b/changes/ticket40741
deleted file mode 100644
index 2a9f72489d..0000000000
--- a/changes/ticket40741
+++ /dev/null
@@ -1,2 +0,0 @@
- o Minor feature (lzma):
- - Fix compiler warnings for liblzma >= 5.3.1. Closes ticket 40741.
diff --git a/changes/ticket40745 b/changes/ticket40745
deleted file mode 100644
index 988dbc5f33..0000000000
--- a/changes/ticket40745
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor bugfix (relay, logging):
- - The wrong max queue cell size was used in a protocol warning logging
- statement. Fixes bug 40745; bugfix on 0.4.7.1-alpha.
diff --git a/changes/ticket40753 b/changes/ticket40753
deleted file mode 100644
index c5dc76b006..0000000000
--- a/changes/ticket40753
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor features (directory authorities):
- - Directory authorities now include their AuthDirMaxServersPerAddr
- config option in the consensus parameter section of their vote. Now
- external tools can better predict how they will behave. Implements
- ticket 40753.
diff --git a/changes/ticket40799 b/changes/ticket40799
deleted file mode 100644
index 4e2afe6e4b..0000000000
--- a/changes/ticket40799
+++ /dev/null
@@ -1,6 +0,0 @@
- o Minor bugfixes (sandbox):
- - Allow membarrier for the sandbox. And allow rt_sigprocmask when compiled
- with LTTng. Fixes bug 40799; bugfix on 0.3.5.1-alpha.
-
- o Minor feature (CI):
- - Update CI to use Debian Bullseye for runners.
diff --git a/changes/ticket40824 b/changes/ticket40824
deleted file mode 100644
index a4d389ddc2..0000000000
--- a/changes/ticket40824
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor bugfixes (compilation):
- - Fix all -Werror=enum-int-mismatch warnings. No behavior change. Fixes bug
- 40824; bugfix on 0.3.5.1-alpha.
-