summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2012-09-10 17:36:36 -0400
committerRoger Dingledine <arma@torproject.org>2012-09-10 17:36:36 -0400
commitf949f615694368e7083826f56c13e0c3d5bf55f1 (patch)
treecb2382661750a25a19063d7fc9ef2da35db710f7
parentbf71866da006820a2345d8257f208d8147707daf (diff)
downloadtor-f949f615694368e7083826f56c13e0c3d5bf55f1.tar.gz
tor-f949f615694368e7083826f56c13e0c3d5bf55f1.zip
fold in recent changes files
-rw-r--r--ChangeLog53
-rw-r--r--changes/bug31556
-rw-r--r--changes/bug45673
-rw-r--r--changes/bug4567_24
-rw-r--r--changes/bug66057
-rw-r--r--changes/bug67786
-rw-r--r--changes/bug67897
-rw-r--r--changes/bug67975
-rw-r--r--changes/detect_openssl_mismatch4
-rw-r--r--changes/quiet_lib_init3
-rw-r--r--changes/remove_old_ver_checks4
-rw-r--r--changes/ssize_t_warning4
12 files changed, 53 insertions, 53 deletions
diff --git a/ChangeLog b/ChangeLog
index 3556dae868..2982859b52 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,56 @@
+Changes in version 0.2.4.2-alpha - 2012-09-10
+ o Major features:
+ - Automatically forward the TCP ports of pluggable transport
+ proxies using tor-fw-helper if PortForwarding is enabled. Implements
+ ticket 4567.
+
+ o Major bugfixes:
+ - Raise the default BandwidthRate/BandwidthBurst values from 5MB/10MB
+ to 1GB/1GB. The previous defaults were intended to be "basically
+ infinite", but it turns out they're now limiting our 100mbit+
+ relays and bridges. Fixes bug 6605; bugfix on 0.2.0.10-alpha (the
+ last time we raised it).
+
+ o Minor features:
+ - Detect when we're running with a version of OpenSSL other than the
+ one we compiled with. This has occasionally given people hard-to-
+ track-down errors.
+ - Log fewer lines at level "notice" about our OpenSSL and Libevent
+ versions and capabilities when everything is going right. Resolves
+ part of ticket 6736.
+ - Directory authorities no long accept descriptors for any version of
+ Tor before 0.2.2.35, or for any 0.2.3 release before 0.2.3.10-alpha.
+ These versions are insecure, unsupported, or both. Implements
+ ticket 6789.
+
+ o Minor bugfixes:
+ - Rename the (internal-use-only) UsingTestingNetworkDefaults option
+ to start with a triple-underscore so the controller won't touch it.
+ Patch by Meejah. Fixes bug 3155. Bugfix on 0.2.2.23-alpha.
+ - Rename the (testing-use-only) _UseFilteringSSLBufferevents option
+ so it doesn't start with _. Fixes bug 3155. Bugfix on 0.2.3.1-alpha.
+ - Don't follow the NULL pointer if microdescriptor generation fails.
+ (This does not appear to be triggerable, but it's best to be safe.)
+ Found by "f. tp.". Fixes bug 6797; bugfix on 0.2.4.1-alpha.
+ - Fix mis-declared dependencies on src/common/crypto.c and
+ src/or/tor_main.c that could break out-of-tree builds under some
+ circumstances. Fixes bug 6778; bugfix on 0.2.4.1-alpha.
+ - Avoid a warning when building common_sha1.i out of tree. Fixes bug
+ 6778; bugfix on 0.2.4.1-alpha.
+ - Fix a harmless (in this case) build warning for implicitly
+ converting a strlen() to an int. Bugfix on 0.2.4.1-alpha.
+
+ o Removed features:
+ - Now that all versions before 0.2.2.x are disallowed, we no longer
+ need to work around their missing features. Thus we can remove a
+ bunch of compatibility code.
+
+ o Code refactoring:
+ - Tweak tor-fw-helper to accept an arbitrary amount of arbitrary
+ TCP ports to forward. In the past it only accepted two ports:
+ the ORPort and the DirPort.
+
+
Changes in version 0.2.4.1-alpha - 2012-09-05
Tor 0.2.4.1-alpha lets bridges publish their pluggable transports to
bridgedb; lets relays use IPv6 addresses and directory authorities
diff --git a/changes/bug3155 b/changes/bug3155
deleted file mode 100644
index d2e0918d29..0000000000
--- a/changes/bug3155
+++ /dev/null
@@ -1,6 +0,0 @@
- o Minor bugfixes:
- - Rename the (internal-use-only) UsingTestingNetworkDefaults option
- to start with a triple-underscore so the controller won't touch it.
- Patch by Meejah. Fixes bug 3155. Bugfix on 0.2.2.23-alpha.
- - Rename the (testing-use-only) _UseFilteringSSLBufferevents option
- so it doesn't start with _. Fixes bug3155. Bugfix on 0.2.3.1-alpha.
diff --git a/changes/bug4567 b/changes/bug4567
deleted file mode 100644
index d57a33db71..0000000000
--- a/changes/bug4567
+++ /dev/null
@@ -1,3 +0,0 @@
- o Major features:
- - Automatically forward the TCP ports of pluggable transport
- proxies using tor-fw-helper if PortForwarding is enabled.
diff --git a/changes/bug4567_2 b/changes/bug4567_2
deleted file mode 100644
index 53875936c2..0000000000
--- a/changes/bug4567_2
+++ /dev/null
@@ -1,4 +0,0 @@
- o Code refactoring:
- - Tweak tor-fw-helper to accept an arbitrary amount of arbitrary
- TCP ports to forward. In the past it only accepted two ports:
- the ORPort and the DirPort.
diff --git a/changes/bug6605 b/changes/bug6605
deleted file mode 100644
index 92fac1954b..0000000000
--- a/changes/bug6605
+++ /dev/null
@@ -1,7 +0,0 @@
- o Major bugfixes:
- - Raise the default BandwidthRate/BandwidthBurst values from 1MB/5MB
- to 1GB/1GB. The previous defaults were intended to be "basically
- infinite", but it turns out they're now limiting our 100mbit+
- relays and bridges. Fixes bug 6605; bugfix on 0.2.0.10-alpha (the
- last time we raised it).
-
diff --git a/changes/bug6778 b/changes/bug6778
deleted file mode 100644
index 9149f70ea1..0000000000
--- a/changes/bug6778
+++ /dev/null
@@ -1,6 +0,0 @@
- o Minor bugfixes:
- - Avoid a warning when building common_sha1.i out of tree. Fixes bug
- 6778; bugfix on 0.2.4.1-alpha.
- - Fix mis-declared dependencies on src/common/crypto.c and
- src/or/tor_main.c that could break out-of-tree builds under some
- circumstances. Fixes bug 6778; bugfix on 0.2.4.1-alpha.
diff --git a/changes/bug6789 b/changes/bug6789
deleted file mode 100644
index c901e55215..0000000000
--- a/changes/bug6789
+++ /dev/null
@@ -1,7 +0,0 @@
- o Minor features (directory authority):
- - Directory authorities no long accept descriptors for any version of
- Tor before 0.2.2.35, or for any 0.2.3 release before 0.2.3.10-alpha.
- These versions are insecure, unsupported, or both. Implements ticket
- #6789.
-
-
diff --git a/changes/bug6797 b/changes/bug6797
deleted file mode 100644
index 95c889d4cb..0000000000
--- a/changes/bug6797
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfixes:
- - Don't follow the NULL pointer if microdescriptor generation fails.
- (This does not appear to be triggerable, but it's best to be safe.)
- Found by "f. tp.". Fixes bug 6797; bugfix on 0.2.4.1-alpha.
-
diff --git a/changes/detect_openssl_mismatch b/changes/detect_openssl_mismatch
deleted file mode 100644
index 62f0a9dbb7..0000000000
--- a/changes/detect_openssl_mismatch
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor features:
- - Detect when we're running with a version of OpenSSL other than the
- one we compiled with. This has occasionally given people hard-to-
- track-down errors.
diff --git a/changes/quiet_lib_init b/changes/quiet_lib_init
deleted file mode 100644
index c7e81d5cc7..0000000000
--- a/changes/quiet_lib_init
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor features:
- - Log less at level notice about our OpenSSL and Libevent versions
- when everything is going right. Partial fix for 6736.
diff --git a/changes/remove_old_ver_checks b/changes/remove_old_ver_checks
deleted file mode 100644
index 7d476a1901..0000000000
--- a/changes/remove_old_ver_checks
+++ /dev/null
@@ -1,4 +0,0 @@
- o Removed features:
- - Now that all versions before 0.2.2.x are disallowed, we no longer
- need to work around their missing features. This allows us to remove
- a bunch of compatibility code.
diff --git a/changes/ssize_t_warning b/changes/ssize_t_warning
deleted file mode 100644
index 01609ccdfb..0000000000
--- a/changes/ssize_t_warning
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor build fixes:
- - Fix a harmless (in this case) build warning for implicitly
- converting a strlen() to an int. Bugfix on 0.2.4.1-alpha.
-