aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2012-09-21 13:14:25 +0200
committerLoïc Hoguin <[email protected]>2012-09-21 13:14:25 +0200
commit981ea359ba23564cb9bc3056a56dfcd1a98aa362 (patch)
tree4c1f25d3d2b97cc41837e29b90e8e652b7d849c0 /CHANGELOG.md
parente27fd5fcb9786bed45976a3e4322bc89d3ffc025 (diff)
downloadcowboy-981ea359ba23564cb9bc3056a56dfcd1a98aa362.tar.gz
cowboy-981ea359ba23564cb9bc3056a56dfcd1a98aa362.tar.bz2
cowboy-981ea359ba23564cb9bc3056a56dfcd1a98aa362.zip
Update CHANGELOG
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c6341bb..68ac789 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -51,6 +51,18 @@ next
{{body, Body}, Req}.
* set_resp_* functions now return Req instead of {ok, Req}.
+* Fix consistency issues caused by erlang:decode_packet/3
+
+ * The method is now always a case sensitive binary string.
+ * Note that standard method names are uppercase (e.g. <<"GET">>).
+ * Header names are now always lowercase binary string.
+
+* The max_line_length cowboy_protocol option was replaced by 3 new options:
+
+ * max_request_line_length, defaults to 4096 bytes
+ * max_header_name_length, defaults to 64 bytes
+ * max_header_value_length, defaults to 4096 bytes
+
* Use -callback in behaviours
* Add cowboy_protocol:onrequest_fun/0 and :onresponse_fun/0 types