diff options
author | Loïc Hoguin <[email protected]> | 2017-12-13 17:28:18 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2017-12-13 17:28:18 +0100 |
commit | 10e70ed2d18e174b57778cc354978dbe742a5320 (patch) | |
tree | f93694db0ab5c664b4511ffaaf9507b8139bf83b /_build | |
parent | 73f7713f7138b8e3a80122e6b7d446e8ef3bbb39 (diff) | |
download | ninenines.eu-10e70ed2d18e174b57778cc354978dbe742a5320.tar.gz ninenines.eu-10e70ed2d18e174b57778cc354978dbe742a5320.tar.bz2 ninenines.eu-10e70ed2d18e174b57778cc354978dbe742a5320.zip |
Cowboy 2.2.0
Diffstat (limited to '_build')
-rw-r--r-- | _build/content/articles/cowboy-2.1.0.asciidoc | 3 | ||||
-rw-r--r-- | _build/content/articles/cowboy-2.2.0.asciidoc | 43 |
2 files changed, 43 insertions, 3 deletions
diff --git a/_build/content/articles/cowboy-2.1.0.asciidoc b/_build/content/articles/cowboy-2.1.0.asciidoc index a9ccd849..e60a9ca7 100644 --- a/_build/content/articles/cowboy-2.1.0.asciidoc +++ b/_build/content/articles/cowboy-2.1.0.asciidoc @@ -30,9 +30,6 @@ https://ninenines.eu/docs/en/cowboy/2.1/guide/migrating_from_2.0/[Migrating from The next release will see the added support for trailers, which are necessary for implementing the gRPC protocol. -Feeling good about this release? Send money one-time -or monthly via - You can donate to this project via https://salt.bountysource.com/teams/ninenines[BountySource] because I need to eat snacks when I write code. diff --git a/_build/content/articles/cowboy-2.2.0.asciidoc b/_build/content/articles/cowboy-2.2.0.asciidoc new file mode 100644 index 00000000..9e0c3b60 --- /dev/null +++ b/_build/content/articles/cowboy-2.2.0.asciidoc @@ -0,0 +1,43 @@ ++++ +date = "2017-12-13T12:00:00+01:00" +title = "Cowboy 2.2" + ++++ + +Cowboy `2.2.0` has been released! + +This release focused on adding features required for writing +gRPC servers and on completing test suites for the core +HTTP RFCs. + +* The `cowboy_req:stream_trailers/2` function has been + added. It terminates the streamed response by adding + some trailer field values. This feature is required + for gRPC. + +* The `max_skip_body_length` option was added. It controls + how much of the request body we are willing to skip + to get to the next request for HTTP/1.1 keep-alive + connections. + +* The CONNECT and TRACE methods have been disabled + entirely. They are currently not implemented and + their behavior is very specific (unlike most other + methods) so it is safer to prevent their use. + +Many bugs have also been fixed. A more complete +list of changes can be found in the migration guide: +https://ninenines.eu/docs/en/cowboy/2.1/guide/migrating_from_2.0/[Migrating from Cowboy 2.0 to 2.1]. + +The next two releases will tentatively focus on improving +the support for cookies and CORS, but I'm open to suggestions. +If there is a pain point in Cowboy 2.2 I would love to hear +about it. + +You can donate to this project via +https://salt.bountysource.com/teams/ninenines[BountySource] +because I need to eat snacks when I write code. +Thanks in advance! + +As usual, any feedback is appreciated, and any issues +should be reported by opening a ticket. Thanks! |