Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-03-28 | Add max_frame_size option for websocket handlers | Kirill Kinduk | |
Option allows to limit a frame by size before decoding its payload. LH: I have added a test for when the limit is reached on a nofin fragmented frame (the last commit addressed that case but it had no test). I have fixed formatting and other, and changed the default value to infinity since it might otherwise be incompatible with existing code. I also added documentation and a bunch of other minor changes. | |||
2018-03-27 | Remove duplicate keys from map in inform docs | Gary Rennie | |
This is the equivalent way of doing the same thing using a single header. | |||
2018-03-23 | Add RFC 8336 to the list | Loïc Hoguin | |
2018-02-15 | Add a new relevant RFC | Loïc Hoguin | |
2018-02-09 | Add link to the PROXY protocol to the specs | Loïc Hoguin | |
It's very relevant even though I will probably not implement it. | |||
2018-01-29 | Add an example with a Websocket close frame | Loïc Hoguin | |
Thanks benbro! | |||
2018-01-29 | Fix a small issue in the cowboy_req:parse_cookies manual | Loïc Hoguin | |
Thanks benbro! | |||
2018-01-24 | Update Cowboy to 2.2.22.2.2 | Loïc Hoguin | |
2018-01-23 | Update Cowboy to 2.2.12.2.1 | Loïc Hoguin | |
2018-01-02 | Add RFC 8297 to the list | Loïc Hoguin | |
2017-12-13 | Document the missing inform stream handler command2.2.0 | Loïc Hoguin | |
2017-12-11 | Update Cowboy to 2.2.0 | Loïc Hoguin | |
2017-12-11 | Document trailers in the guide | Loïc Hoguin | |
2017-12-11 | Small documentation tweaks | Loïc Hoguin | |
2017-12-11 | Document 2.2 changes and the new stream_trailers function | Loïc Hoguin | |
2017-12-08 | Add the few remaining tests to the rfc7231 test suite | Loïc Hoguin | |
2017-12-07 | Add more rfc7231 tests and a new max_skip_body_length option | Loïc Hoguin | |
The option controls how much body we accept to skip for HTTP/1.1 connections when the user code did not consume the body fully. It defaults to 1MB. | |||
2017-11-09 | Add a changelog for cowboy_rest | Loïc Hoguin | |
2017-11-09 | Fix the introduction version for the new 2.1 functions | Loïc Hoguin | |
2017-11-09 | Add missing changes for 2.1 release2.1.0 | Loïc Hoguin | |
2017-11-08 | Update Cowboy to 2.1.0 | Loïc Hoguin | |
Also add OTP-20.1.4 to CI. | |||
2017-11-01 | Add {switch_handler, Module} return value to cowboy_rest | Loïc Hoguin | |
Also {switch_handler, Module, Opts}. Allows switching to a different handler type. This is particularly useful for processing most of the request with cowboy_rest and then streaming the response body using cowboy_loop. | |||
2017-10-29 | Add cowboy_req:inform/2,3 | Loïc Hoguin | |
User code can now send as many 1xx responses as necessary. | |||
2017-10-25 | Introduce cowboy_req:sock/1 and cowboy_req:cert/1 | Loïc Hoguin | |
To obtain the local socket ip/port and the client TLS certificate, respectively. | |||
2017-10-23 | Add migration note concerning multiple headers | Luke Bakken | |
2017-10-22 | Ensure stream terminate is called when switching protocols | Loïc Hoguin | |
2017-10-20 | Make the getting started use 2.0.0 | Loïc Hoguin | |
2017-10-13 | Small guide fixes | Loïc Hoguin | |
2017-10-03 | Make a few link use https2.0.0 | Loïc Hoguin | |
2017-10-02 | Document cow_ws:frame in Cowboy for now | Loïc Hoguin | |
2017-10-02 | Fix the documentation for the command flow | Loïc Hoguin | |
2017-09-27 | Clarify a multipart example | Loïc Hoguin | |
2017-09-15 | Add two new RFCs, remove one obsolete | Loïc Hoguin | |
2017-09-05 | Update naming in REST flowcharts | Loïc Hoguin | |
2017-09-05 | Add tests for direct Req access | Loïc Hoguin | |
2017-09-05 | Remove transfer-encoding parsing from cowboy_req | Loïc Hoguin | |
The header never reaches this point. | |||
2017-09-04 | Accept sendfile tuple with 0 length in cowboy_req | Loïc Hoguin | |
This will result in no data being sent. It's simply easier to do this than to have to handle 0 size cases in user code. | |||
2017-09-04 | Fix more documentation todos | Loïc Hoguin | |
I have decided not to include a manual page for cowboy_stream_h at this point because it clashes with the cowboy_stream manual page. This decision will be revisited in the future. | |||
2017-07-24 | Small tweak to the guide | Loïc Hoguin | |
2017-07-23 | Write an initial draft of the streams chapter | Loïc Hoguin | |
2017-07-23 | Remove yet another outdated todo | Loïc Hoguin | |
2017-07-23 | Update the constraints chapter | Loïc Hoguin | |
2017-07-23 | Update the flowchart chapter | Loïc Hoguin | |
2017-07-20 | Add a related RFC for Websocket | Loïc Hoguin | |
This is important because it clarifies that sec-websocket-protocol is case sensitive when matching. Only the registry is case insensitive. | |||
2017-07-20 | Remove cowboy_sub_protocol from the documentation | Loïc Hoguin | |
This will be reintroduced in a future release once the interface stabilizes. For the time being it will be an internal module only. | |||
2017-07-19 | Remove the old architecture chapter | Loïc Hoguin | |
2017-07-19 | Remove the guide chapter about broken clients | Loïc Hoguin | |
None of these workarounds currently exist in Cowboy 2.0. We can resurrect the chapter later if it's still necessary, once we've added the workarounds back in some other form. | |||
2017-07-19 | Fix the name of an option in the migration guide | Loïc Hoguin | |
2017-07-19 | Remove hooks from the user guide | Loïc Hoguin | |
They're gone! | |||
2017-07-19 | Tweak the migration guide | Loïc Hoguin | |