aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-04-26 17:11:09 +0200
committerLoïc Hoguin <[email protected]>2013-04-26 17:11:09 +0200
commit46b2ea0aaa7fe891bfdf3f8a0c47357393e72cf6 (patch)
treeb36437121444ca24c123d244f70e61e7fc387b5c
parent9a7d606709ea77ed3b4bd6ff23f2862c8e288753 (diff)
downloadcowboy-0.8.4.tar.gz
cowboy-0.8.4.tar.bz2
cowboy-0.8.4.zip
Update CHANGELOG0.8.4
-rw-r--r--CHANGELOG.md60
1 files changed, 60 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 825d820..8d9b92b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,66 @@
CHANGELOG
=========
+0.8.4
+-----
+
+ * Cookie names are now back to being case sensitive
+
+ This should be more in line with what browsers do and what
+ users would expect.
+
+ * REST is no longer experimental and is documented
+
+ * REST behavior fixed when used with the POST method
+
+ Removes process_post, post_is_create, create_path, created_path
+ callbacks. It is up to the resource accept callback to decide
+ what to do when the POST method is used. Depending on the return
+ value Cowboy will determine if the resource was created or not.
+
+ * Removes the put_path meta value in REST
+
+ * Fix an issue in REST with the PATCH method
+
+ Content-types were not normalized as expected, preventing the
+ use of the binary form for content-types.
+
+ * Add default operations for the OPTIONS method in REST
+
+ The default will be to set the Allow header in the response
+ based on the return value from allowed_methods.
+
+ * Add default content_types_provided "text/html" maps to to_html
+
+ This allows non-HEAD/GET methods to work without defining
+ the callback explicitly.
+
+ * Reject invalid content-types explicitly in REST
+
+ * Don't accept TRACE or CONNECT methods by default in REST
+
+ * Remove cowboy_req:peer_addr/1
+
+ Because each server's proxy situation differs, it is better
+ that this function is implemented by the application directly.
+
+ The X-Forwarded-For header can now be parsed using
+ cowboy_req:parse_header/2.
+
+ * Switch the arguments to cowboy_req:stream_body/2
+
+ They were in the wrong order compared to the rest of the module.
+
+ * Add parser for the Range header
+
+ * Do not crash if connection times out while sending a file using sendfile
+
+ * Ensure we can fetch the body in the info/3 function of loop handlers
+
+ * Update Ranch to 0.8.1
+
+ * Reorganize and optimize the test suites
+
0.8.3
-----