aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
Diffstat (limited to 'changes')
-rw-r--r--changes/bug328254
-rw-r--r--changes/bug328835
-rw-r--r--changes/bug328845
-rw-r--r--changes/bug329424
-rw-r--r--changes/log_328684
-rw-r--r--changes/ticket32705_disable7
-rw-r--r--changes/ticket327724
-rw-r--r--changes/ticket328463
-rw-r--r--changes/ticket328923
9 files changed, 39 insertions, 0 deletions
diff --git a/changes/bug32825 b/changes/bug32825
new file mode 100644
index 0000000000..c51f2f8574
--- /dev/null
+++ b/changes/bug32825
@@ -0,0 +1,4 @@
+ o Minor features (portability, android):
+ - When building for Android, disable some tests that depend on
+ $HOME and/or pwdb, which Android doesn't have. Closes ticket 32825.
+ Patch from Hans-Christoph Steiner.
diff --git a/changes/bug32883 b/changes/bug32883
new file mode 100644
index 0000000000..6a15e0221b
--- /dev/null
+++ b/changes/bug32883
@@ -0,0 +1,5 @@
+ o Code simplification and refactoring (windows services):
+ - The windows service logic now uses the tor_api.h entry points, to
+ avoid needless code duplication, and to prevent bugs related to
+ the different entry points getting out of sync. Closes ticket
+ 32883.
diff --git a/changes/bug32884 b/changes/bug32884
new file mode 100644
index 0000000000..9ab1d24464
--- /dev/null
+++ b/changes/bug32884
@@ -0,0 +1,5 @@
+ o Minor bugfixes (embedded Tor):
+ - When starting Tor any time after the first time in a process, register
+ the thread in which it is running as the main thread. Previously, we
+ only did this on Windows, which could lead to bugs like 23081 on
+ non-Windows platforms. Fixes bug 32884; bugfix on 0.3.3.1-alpha.
diff --git a/changes/bug32942 b/changes/bug32942
new file mode 100644
index 0000000000..0a4ef9b092
--- /dev/null
+++ b/changes/bug32942
@@ -0,0 +1,4 @@
+ o Deprecated features:
+ - Deprecate the ClientAutoIPv6ORPort option. This option was not true
+ Happy Eyeballs, and often failed on connections that weren't reliably
+ dual-stack. Closes ticket 32942. Patch by Neel Chauhan.
diff --git a/changes/log_32868 b/changes/log_32868
new file mode 100644
index 0000000000..34476078b2
--- /dev/null
+++ b/changes/log_32868
@@ -0,0 +1,4 @@
+ o Minor features (debugging, directory system):
+ - Don't crash when we find a non-guard with a guard-fraction value set.
+ Instead, log a bug warning, in an attempt to figure out how this
+ happened. Diagnostic for ticket 32868.
diff --git a/changes/ticket32705_disable b/changes/ticket32705_disable
new file mode 100644
index 0000000000..6d5b0779ab
--- /dev/null
+++ b/changes/ticket32705_disable
@@ -0,0 +1,7 @@
+ o Minor bugfixes (testing):
+ - When TOR_DISABLE_PRACTRACKER is set, do not apply it to the
+ test_practracker.sh script. Doing so caused a test failure.
+ Fixes bug 32705; bugfix on 0.4.2.1-alpha.
+ - When TOR_DISABLE_PRACTRACKER is set, log a notice to stderr
+ when skipping practracker checks.
+ Fixes bug 32705; bugfix on 0.4.2.1-alpha.
diff --git a/changes/ticket32772 b/changes/ticket32772
new file mode 100644
index 0000000000..217ae48438
--- /dev/null
+++ b/changes/ticket32772
@@ -0,0 +1,4 @@
+ o Minor features (developer tooling):
+ - Remove 0.2.9 series branches from git scripts (git-merge-forward.sh,
+ git-pull-all.sh, git-push-all.sh, git-setup-dirs.sh). Closes ticket
+ 32772.
diff --git a/changes/ticket32846 b/changes/ticket32846
new file mode 100644
index 0000000000..5022c61451
--- /dev/null
+++ b/changes/ticket32846
@@ -0,0 +1,3 @@
+ o Documentation (manpage):
+ - Alphabetize the Client Options section of the tor manpage.
+ Closes ticket 32846.
diff --git a/changes/ticket32892 b/changes/ticket32892
new file mode 100644
index 0000000000..f6360d2883
--- /dev/null
+++ b/changes/ticket32892
@@ -0,0 +1,3 @@
+ o Code simplification and refactoring (channel):
+ - Channel layer had a variable length cell handler that was not used and
+ thus removed. Closes ticket 32892.