aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-05-26 13:50:08 +0000
committerlloyd <[email protected]>2012-05-26 13:50:08 +0000
commit9031c9098d0bf5416251fbba9e84246cce8be1f5 (patch)
treee2b5fff52e778a80ff5cbfb26f9f16d128224dca
parentebabdc72b5aa7f3c06cd32c6fdd2835af75aa17e (diff)
Mention the vector changes as people will likely notice those
-rw-r--r--doc/log.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/log.txt b/doc/log.txt
index b59cfe5c4..9db96396b 100644
--- a/doc/log.txt
+++ b/doc/log.txt
@@ -13,6 +13,14 @@ Version 1.11.0, Not Yet Released
* The codebase has converted to C++11. Currently GCC 4.7 and Clang 3.1
are known to work.
+* The MemoryVector and SecureVector container types have been removed.
+ An alias of std::vector using an allocator that clears memory named
+ secure_vector is used for key material, and std::vector is used for
+ everything else.
+
+* The method of mlocking memory is much improved, and if the process
+ can mlock memory then it will be used automatically.
+
* The TLS interface is now non-blocking and does not directly interact
with sockets. An example TLS server using asio is included which
scales to at least 64 processors.