summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2007-08-08 15:27:41 +0000
committerMatt Johnston <matt@ucc.asn.au>2007-08-08 15:27:41 +0000
commit66bfde7c10beddd178ab95514e7751c93e89a0e1 (patch)
treef4ac0f5722495d2f3f5eb8eb375ed9cc33b1bc69
parent09419193e6d88121814cb2ed975cb17becc08563 (diff)
downloaddropbear-66bfde7c10beddd178ab95514e7751c93e89a0e1.tar.gz
Prepare for 0.50 release
-rw-r--r--CHANGES23
-rw-r--r--debian/changelog6
-rw-r--r--options.h2
3 files changed, 30 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 85e50a0..7239fbd 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,26 @@
+0.50 - Wed 8 August 2007
+
+- Add DROPBEAR_PASSWORD environment variable to specify a dbclient password
+
+- Use /dev/urandom by default, since that's what everyone does anyway
+
+- Correct vfork() use for uClinux in scp
+ (thanks to Alex Landau)
+
+- Exit with an exit code of 1 if dropbear can't bind to any ports
+ (thanks to Nicolai Ehemann)
+
+- Improve network performance and add a -W <receive_window> argument for
+ adjusting the tradeoff between network performance and memory consumption.
+
+- Fix a problem where reply packets could be sent during key exchange,
+ in violation of the SSH spec. This could manifest itself with connections
+ being terminated after 8 hours with new TCP-forward connections being
+ established.
+
+- Add -K <keepalive_time> argument, ensuring that data is transmitted
+ over the connection at least every N seconds.
+
0.49 - Fri 23 February 2007
- Security: dbclient previously would prompt to confirm a
diff --git a/debian/changelog b/debian/changelog
index 0ad67ef..e7d4141 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dropbear (0.50-0.1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Matt Johnston <matt@ucc.asn.au> Wed, 8 Aug 2007 11:22:33 +0800
+
dropbear (0.49-0.1) unstable; urgency=low
* New upstream release.
diff --git a/options.h b/options.h
index 722a43a..a05ae35 100644
--- a/options.h
+++ b/options.h
@@ -240,7 +240,7 @@ be overridden at runtime with -K. 0 disables keepalives */
*******************************************************************/
#ifndef DROPBEAR_VERSION
-#define DROPBEAR_VERSION "0.49"
+#define DROPBEAR_VERSION "0.50"
#endif
#define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION