aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
Diffstat (limited to 'changes')
-rw-r--r--changes/bug315717
-rw-r--r--changes/bug316155
-rw-r--r--changes/ticket309246
-rw-r--r--changes/ticket314773
-rw-r--r--changes/ticket315786
-rw-r--r--changes/ticket316733
6 files changed, 30 insertions, 0 deletions
diff --git a/changes/bug31571 b/changes/bug31571
new file mode 100644
index 0000000000..86de3537ba
--- /dev/null
+++ b/changes/bug31571
@@ -0,0 +1,7 @@
+ o Minor bugfixes (error handling):
+ - Report the tor version whenever an assertion fails. Previously, we only
+ reported the Tor version on some crashes, and some non-fatal assertions.
+ Fixes bug 31571; bugfix on 0.3.5.1-alpha.
+ - On abort, try harder to flush the output buffers of log messages. On
+ some platforms (macOS), log messages can be discarded when the process
+ terminates. Fixes bug 31571; bugfix on 0.3.5.1-alpha.
diff --git a/changes/bug31615 b/changes/bug31615
new file mode 100644
index 0000000000..49b13bea95
--- /dev/null
+++ b/changes/bug31615
@@ -0,0 +1,5 @@
+ o Minor bugfixes (subsystems):
+ - Make the subsystem init order match the subsystem module dependencies.
+ Call windows process security APIs as early as possible. Init log before
+ network and time, so that network and time can use logging.
+ Fixes bug 31615; bugfix on 0.4.0.1-alpha.
diff --git a/changes/ticket30924 b/changes/ticket30924
new file mode 100644
index 0000000000..832c377972
--- /dev/null
+++ b/changes/ticket30924
@@ -0,0 +1,6 @@
+ o Major features (onion service v3, denial of service):
+ - Add onion service introduction denial of service defenses. They consist of
+ rate limiting client introduction at the intro point using parameters that
+ can be sent by the service within the ESTABLISH_INTRO cell. If the cell
+ extension for this is not used, the intro point will honor the consensus
+ parameters. Closes ticket 30924.
diff --git a/changes/ticket31477 b/changes/ticket31477
new file mode 100644
index 0000000000..5a0fdd1544
--- /dev/null
+++ b/changes/ticket31477
@@ -0,0 +1,3 @@
+ o Minor features (tests):
+ - Add integration tests to make sure that practracker gives the outputs
+ we expect. Closes ticket 31477.
diff --git a/changes/ticket31578 b/changes/ticket31578
new file mode 100644
index 0000000000..220efffa63
--- /dev/null
+++ b/changes/ticket31578
@@ -0,0 +1,6 @@
+ o Minor bugfixes (practracker):
+ - When running check-best-practices, only consider files in the
+ src subdirectory. Previously we had recursively considered
+ all subdirectories, which made us get confused by the
+ temporary directories made by "make distcheck". Fixes bug
+ 31578; bugfix on 0.4.1.1-alpha.
diff --git a/changes/ticket31673 b/changes/ticket31673
new file mode 100644
index 0000000000..3b2bb4a46e
--- /dev/null
+++ b/changes/ticket31673
@@ -0,0 +1,3 @@
+ o New system requirements (build system):
+ - Do not include the deprecated <sys/sysctl.h> on Linux or Windows system.
+ Closes 31673;