diff options
author | Loïc Hoguin <[email protected]> | 2013-06-20 15:59:15 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-06-20 16:01:58 +0200 |
commit | b7944392529e0284ecc8bca1fb2a9feea23ec2f5 (patch) | |
tree | 4f3416c0c8d727d49fe8266d7eb8aa5f7403fca7 | |
parent | 6b521563e2a8e48678966c41e78feb2aec982b08 (diff) | |
download | cowboy-b7944392529e0284ecc8bca1fb2a9feea23ec2f5.tar.gz cowboy-b7944392529e0284ecc8bca1fb2a9feea23ec2f5.tar.bz2 cowboy-b7944392529e0284ecc8bca1fb2a9feea23ec2f5.zip |
Update CHANGELOG
-rw-r--r-- | CHANGELOG.md | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 478a9a0..d7caabe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,44 @@ CHANGELOG ========= +0.8.6 +----- + + * Make sure Cowboy compiles on R16B01 + + * Update Ranch to 0.8.4 + + * Add experimental support for the x-webkit-deflate-frame Websocket extension + + This allows Cowboy to handle compressed Websocket frames, + lowering the amount of data that needs to be sent over the + socket. + + The extension will only be used if compression was enabled + using the `compress` protocol option. + + * Add experimental SPDY support + + SPDY is a new protocol implemented by most browsers. It is + the basis for what will become HTTP/2.0. + + To use SPDY, you need to call `start_spdy` where you would + have used `start_https` before. + + This protocol is still incomplete. It cannot accept request + bodies yet, making most methods other than GET and HEAD + not too useful at this point. + + * Allow an empty method list in allowed_methods + + * The charset parameter of content-types is now always lowercase + + * Don't overwrite the stacktrace when a REST handler crashes + + * Don't crash when the Cookie header is empty + + * Don't crash on invalid Accept-Encoding header when replying + 0.8.5 ----- |