]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
move a changelog entry and try writing a blurb
authorNick Mathewson <nickm@torproject.org>
Wed, 16 May 2018 13:05:47 +0000 (09:05 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 16 May 2018 13:05:47 +0000 (09:05 -0400)
ChangeLog

index d3fcff4e0914f7e119ddefda86f8bdd347361ab5..3cdba8bddd25a6c70f24028d6e624c7d6e50dedf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 Changes in version 0.3.4.1-alpha - 2018-05-1?
-  XXX BLURB
+  Tor 0.3.4.1-alpha is the first release in the 0.3.4.x series.  It
+  includes refactoring to begin reducing Tor's
+  binary size and idle CPU usage on mobile, along with prep work for new
+  bandwidth scanners, improvements
+  to the experimental "vanguards" feature, and numerous other small
+  features and bugfixes.
 
   o New system requirements:
     - Tor no longer tries to support old operating systems without
@@ -32,6 +37,18 @@ Changes in version 0.3.4.1-alpha - 2018-05-1?
       the granularity of our bandwidth calculations, and limit the
       number of times that the Tor process needs to wake up when it is
       idle. Closes ticket 25373.
+    - Move responsibility for many operations from a once-per-second
+      callback to a callback that is only scheduled as needed. Moving
+      this functionality has allowed us to disable the callback when
+      Tor's network is disabled. Once enough items are removed from our
+      once-per-second callback, we can eliminate it entirely to conserve
+      CPU when idle. The functionality removed includes: closing
+      connections, circuits, and channels (ticket 25932); consensus
+      voting (25937); flushing log callbacks (25951); honoring delayed
+      SIGNEWNYM requests (25949); rescanning the consensus cache
+      (25931); saving the state file to disk (25948); warning relay
+      operators about unreachable ports (25952); and keeping track of
+      Tor's uptime (26009).
 
   o Major bugfixes (directory authorities, security):
     - When directory authorities read a zero-byte bandwidth file, they
@@ -142,20 +159,6 @@ Changes in version 0.3.4.1-alpha - 2018-05-1?
     - Update geoip and geoip6 to the May 1 2018 Maxmind GeoLite2 Country
       database. Closes ticket 26104.
 
-  o Minor features (mainloop):
-    - Move responsibility for many operations from a once-per-second
-      callback to a callback that is only scheduled as needed. Moving
-      this functionality has allowed us to disable the callback when
-      Tor's network is disabled. Once enough items are removed from our
-      once-per-second callback, we can eliminate it entirely to conserve
-      CPU when idle. The functionality removed includes: closing
-      connections, circuits, and channels (ticket 25932); consensus
-      voting (25937); flushing log callbacks (25951); honoring delayed
-      SIGNEWNYM requests (25949); rescanning the consensus cache
-      (25931); saving the state file to disk (25948); warning relay
-      operators about unreachable ports (25952); and keeping track of
-      Tor's uptime (26009).
-
   o Minor features (performance):
     - Avoid a needless call to malloc() when processing an incoming
       relay cell. Closes ticket 24914.