aboutsummaryrefslogtreecommitdiff
path: root/changelog
diff options
context:
space:
mode:
authorAndy Green <andy@warmcat.com>2017-10-16 20:09:58 +0800
committerAndy Green <andy@warmcat.com>2017-10-17 13:21:12 +0800
commitfcf5b2c25a580189bbad955815adac8dd398b612 (patch)
tree9fe7f74965016171a76f5bcef37d26f5e8f4747d /changelog
parentdfacbc207127bf9a9e5bc7b9a91149bdd6637f5a (diff)
downloadlibwebsockets-fcf5b2c25a580189bbad955815adac8dd398b612.tar.gz
v2.4.0
Diffstat (limited to 'changelog')
-rw-r--r--changelog31
1 files changed, 31 insertions, 0 deletions
diff --git a/changelog b/changelog
index 74151afe..e98e6c15 100644
--- a/changelog
+++ b/changelog
@@ -1,6 +1,37 @@
Changelog
---------
+v2.4.0
+======
+
+ - HTTP/2 server support is now mature and usable! LWS_WITH_HTTP2=1 enables it.
+ Uses ALPN to serve HTTP/2, HTTP/1 and ws[s] connections all from the same
+ listen port seamlessly. (Requires ALPN-capable OpenSSL 1.1 or mbedTLS).
+
+ - LWS_WITH_MBEDTLS=1 at CMake now builds and works against mbedTLS instead of
+ OpenSSL. Most things work identically, although on common targets where
+ OpenSSL has acceleration, mbedTLS is many times slower in operation. However
+ it is a lot smaller codewise.
+
+ - Generic hash apis introduced that work the same on mbedTLS or OpenSSL backend
+
+ - LWS_WITH_PEER_LIMITS tracks IPs across all vhosts and allows restrictions on
+ both the number of simultaneous connections and wsi in use for any single IP
+
+ - lws_ring apis provide a generic single- or multi-tail ringbuffer... mirror
+ protocol now uses this. Features include ring elements may be sized to fit
+ structs in the ringbuffer, callback when no tail any longer needs an element
+ and it can be deleted, and zerocopy options to write new members directly
+ into the ringbuffer, and use the ringbuffer element by address too.
+
+ - abstract ssh 2 server plugin included, with both plugin and standalone
+ demos provided. You can bind the plugin to a vhost and also serve full-
+ strength ssh from the vhost. IO from the ssh server is controlled by an
+ "ops" struct of callbacks for tx, rx, auth etc.
+
+ - Many fixes, cleanups, source refactors and other improvements.
+
+
v2.3.0
======