summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2011-02-24 14:19:36 +0000
committerMatt Johnston <matt@ucc.asn.au>2011-02-24 14:19:36 +0000
commite66a23cccd8fbe10d98502b7268bf28b9034e918 (patch)
tree829b4d6badd2600302a9be2b81bd691eaf07b95d
parent8c59bff6e654e9c50532d658aaedeb1bbe03d956 (diff)
downloaddropbear-e66a23cccd8fbe10d98502b7268bf28b9034e918.tar.gz
Changelog for 0.53, bump version
-rw-r--r--CHANGES45
-rw-r--r--sysoptions.h2
2 files changed, 46 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 7e7d73f..5f9c7e0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,48 @@
+0.53 - Thurs 24 February 2011
+
+- Various performance/memory use improvements
+
+- Client agent forwarding now works, using OpenSSH's ssh-agent
+
+- Improve robustness of client multihop mode
+
+- Fix a prime generation bug in bundled libtommath. This is unlikely to have
+ generated any bad keys in the wild.
+ See
+ https://bugzilla.redhat.com/show_bug.cgi?id=615088
+ http://bugs.gentoo.org/show_bug.cgi?id=328383
+ http://bugs.gentoo.org/show_bug.cgi?id=328409
+
+- Attempt to build against system libtomcrypt/libtommath if available. This
+ can be disabled with ./configure --enable-bundled-libtom
+
+- Make -K (keepalive) and -I (idle timeout) work together sensibly in the client.
+ The idle timeout is no longer reset by SSH_MSG_IGNORE packets.
+
+- Compile fix if ENABLE_CLI_PROXYCMD is disabled
+
+- /usr/bin/X11/xauth is now the default path
+
+- Client remote forward (-L/-R) arguments now accept a listen address
+
+- In uClinux avoid trashing the parent process when a session exits
+
+- Blowfish is now disabled by default since it has large memory usage
+
+- Add option to change zlib windowbits/memlevel. Use less memory by default
+
+- DROPBEAR_SMALL_CODE is now disabled by default
+
+- SSH_ORIGINAL_COMMAND environment variable is set by the server when an
+ authorized_keys command is specified.
+
+- Set SSH_TTY and SSH_CONNECTION environment variables in the server
+
+- Client banner is now printed to standard error rather than standard output
+
+- Capitalisation in many log messages has been made consistent. This may affect
+ scripts that parse logfiles.
+
0.52 - Wed 12 November 2008
- Add "netcat-alike" option (-B) to dbclient, allowing Dropbear to tunnel
diff --git a/sysoptions.h b/sysoptions.h
index 6d467ee..9be5aca 100644
--- a/sysoptions.h
+++ b/sysoptions.h
@@ -4,7 +4,7 @@
*******************************************************************/
#ifndef DROPBEAR_VERSION
-#define DROPBEAR_VERSION "0.52"
+#define DROPBEAR_VERSION "0.53"
#endif
#define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION