0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-15 04:30:25 +00:00

Cowboy 2.11

This commit is contained in:
Loïc Hoguin 2024-01-23 15:29:41 +01:00
parent f060e6c4ff
commit 8f9051519e
No known key found for this signature in database
GPG key ID: 8A9DF795F6FED764
8 changed files with 156 additions and 10 deletions

View file

@ -94,7 +94,10 @@ enable_connect_protocol (false)::
Whether to enable the extended CONNECT method to allow
protocols like Websocket to be used over an HTTP/2 stream.
This option is experimental and disabled by default.
+
For backward compatibility reasons, this option is disabled
by default. It must be enabled to use Websocket over HTTP/2.
It will be enabled by default in a future release.
goaway_initial_timeout (1000)::
@ -277,6 +280,7 @@ too many `WINDOW_UPDATE` frames.
== Changelog
* *2.11*: Websocket over HTTP/2 is now considered stable.
* *2.11*: The `reset_idle_timeout_on_send` option was added.
* *2.11*: Add the option `max_cancel_stream_rate` to protect
against another flood scenario.
@ -307,7 +311,7 @@ too many `WINDOW_UPDATE` frames.
`max_frame_size_received`, `max_frame_size_sent`
and `settings_timeout` to configure HTTP/2 SETTINGS
and related behavior.
* *2.4*: Add the experimental option `enable_connect_protocol`.
* *2.4*: Add the option `enable_connect_protocol`.
* *2.0*: Protocol introduced.
== See also

View file

@ -285,6 +285,7 @@ normal circumstances if necessary.
== Changelog
* *2.11*: Websocket over HTTP/2 is now considered stable.
* *2.11*: HTTP/1.1 Websocket no longer traps exits by default.
* *2.8*: The `active_n` option was added.
* *2.7*: The commands based interface has been documented.